/* --- Gallery Section Styles --- */
.yd_class_gallery_container.yd_class_dimmed .yd_class_item:not(.yd_class_active) {
    opacity: 0.5;
    transition-duration: 0s;
}

.yd_class_item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity, aspect-ratio;
}

.yd_class_item.yd_class_active {
    z-index: 1;
    transform: scale(1.05);
    aspect-ratio: 1 / 1;
}

.yd_class_gallery_container {
    scrollbar-width: none!important;
}

/* --- Hero Section Animations --- */
@keyframes lightSweep {
    0% {
        transform: translateX(-150%) skewX(-25deg);
    }
    50%, 100% {
        transform: translateX(250%) skewX(-25deg);
    }
}

.sweep-line {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 163, 115, 0.15), transparent);
    animation: lightSweep 6s infinite ease-in-out;
}