* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance: Reduce repaints with will-change */
.slider-track,
.lazy-image,
.logo-wrapper::before {
    will-change: transform;
}

/* Image Lightbox/Zoom Feature */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform-origin: center center;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    cursor: zoom-out;
    transition: transform 0.2s ease;
    user-select: none;
}

.lightbox-image.zoomed {
    cursor: grab;
}

.lightbox-image.grabbing {
    cursor: grabbing;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #d4af37;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: #d4af37;
    transform: rotate(90deg);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

/* Zoom controls - fixed position */
.zoom-controls {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #d4af37;
    backdrop-filter: blur(10px);
    z-index: 10002;
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: #d4af37;
    color: black;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: 'Playfair Display', serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    animation: bgAnimation 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes bgAnimation {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-wrapper {
    position: relative;
    height: 30px;
    display: inline-block;
    width: auto;
    overflow: hidden;
}

.logo-text {
    height: 30px;
    width: auto;
    filter: invert(1) brightness(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    display: block;
    position: relative;
    z-index: 1;
}

/* Sweeping shine effect - visible on white logo */
.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 215, 0, 0.9) 48%,
        rgba(255, 255, 100, 1) 50%,
        rgba(255, 215, 0, 0.9) 52%,
        transparent 60%
    );
    transform: skewX(-20deg);
    animation: sweepShine 3s infinite;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
    filter: blur(1px);
}

@keyframes sweepShine {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes shine {
    0% { 
        left: -200px;
    }
    100% { 
        left: calc(100% + 200px);
    }
}

.logo-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Slider Section */
.slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    scroll-snap-align: start;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img,
.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8) contrast(1.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide img.loaded,
.slider-image.loaded {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.slide-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.slide-content h2 {
    font-size: 56px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 22px;
    color: #d4af37;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
}

.slider-nav button {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    line-height: 1;
    padding: 0;
    text-align: center;
    position: relative;
}

.slider-nav button:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.slider-nav button:hover::after {
    border-color: #fff;
}

.slider-nav button.prev::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-left: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    transition: border-color 0.3s ease;
}

.slider-nav button.next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-70%, -50%) rotate(-135deg);
    width: 12px;
    height: 12px;
    border-left: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
    transition: border-color 0.3s ease;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #d4af37;
    animation: bounceDown 2s infinite;
    cursor: pointer;
    z-index: 4;
}

.scroll-indicator svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot.active {
    width: 30px;
    border-radius: 15px;
    background: #d4af37;
    border-color: gold;
}

.dot:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* Gallery Container */
.gallery-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Gallery Sections with Scroll Snap */
.gallery-section {
    height: 100vh;
    width: 100%;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.gallery-section:nth-child(4n+1) {
    background: linear-gradient(135deg, #000, #0a0a0a);
}

.gallery-section:nth-child(4n+2) {
    background: linear-gradient(135deg, #0a0a0a, #111);
}

.gallery-section:nth-child(4n+3) {
    background: linear-gradient(135deg, #111, #0a0a0a);
}

.gallery-section:nth-child(4n) {
    background: linear-gradient(135deg, #0a0a0a, #000);
}

/* Section Indicators */
.section-indicator {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 10;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.8));
    backdrop-filter: blur(20px);
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.section-indicator::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    animation: shimmerIndicator 3s ease-in-out infinite;
}

@keyframes shimmerIndicator {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-1, .float-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.5;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation: float1 15s ease-in-out infinite;
}

.float-2 {
    bottom: 20%;
    right: 10%;
    animation: float2 20s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -20px) scale(1.2); }
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.lazy-image {
    width: auto;
    height: 100vh;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) drop-shadow(0 25px 50px rgba(212, 175, 55, 0.15));
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    z-index: 1;
}

.lazy-image.loaded {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.lazy-image:hover {
    transform: translateX(-50%) scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(212, 175, 55, 0.25));
}

/* Glass Effect Caption */
.glass-effect {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.image-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 10px 25px;
    border-radius: 25px;
    animation: captionFade 1s ease-out;
    z-index: 10;
    white-space: nowrap;
}

@keyframes captionFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.image-caption p {
    font-size: 13px;
    color: #d4af37;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Side Navigation */
.side-navigation {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.side-navigation.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: all;
}

.home-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    padding: 0;
}

.home-button:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.home-button svg {
    width: 18px;
    height: 18px;
}

.nav-dots-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-dot.active {
    background: #d4af37;
    border-color: #d4af37;
    transform: scale(1.4);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.nav-dot:hover:not(.active) {
    background: rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.nav-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
}

/* Footer */
.footer {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, #000, #111, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.footer-symbol {
    width: 150px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: invert(0.9) sepia(1) saturate(2) hue-rotate(30deg) brightness(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    margin-bottom: 15px;
    animation: pulseShine 3s ease-in-out infinite;
    position: relative;
}

@keyframes pulseShine {
    0%, 100% { 
        transform: scale(1);
        filter: invert(0.9) sepia(1) saturate(2) hue-rotate(30deg) brightness(1.2) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    }
    50% { 
        transform: scale(1.05);
        filter: invert(0.9) sepia(1) saturate(2) hue-rotate(30deg) brightness(1.6) drop-shadow(0 0 30px rgba(212, 175, 55, 0.9));
    }
}

/* Shine effect overlay for footer logo */
.footer-symbol::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 215, 0, 0.3) 50%,
        transparent 70%
    );
    animation: shineRotate 4s infinite;
    pointer-events: none;
}

@keyframes shineRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-logo p {
    font-family: 'Inter', sans-serif;
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Scroll Indicator Arrow */
.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-right: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    transform: translateX(-50%) rotate(45deg);
    animation: bounce 2s infinite;
    opacity: 0.5;
}

.gallery-section:last-of-type::after {
    display: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
    40% {
        transform: translateX(-50%) translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateX(-50%) translateY(-5px) rotate(45deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    
    .logo-wrapper {
        height: 24px;
        max-width: 150px;
    }
    
    .logo-text {
        height: 24px;
        width: auto;
        max-width: 100%;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .slider-section {
        height: 100vh;
    }
    
    .slide-content h2 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .slider-nav {
        padding: 0 20px;
    }
    
    .slider-nav button {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav button.prev::after,
    .slider-nav button.next::after {
        width: 10px;
        height: 10px;
    }
    
    .image-container {
        width: 95%;
        height: 70vh;
        gap: 20px;
    }
    
    .lazy-image {
        width: auto;
        height: 100vh;
        min-width: 100%;
    }
    
    .image-caption {
        padding: 8px 20px;
        bottom: 10px;
        white-space: normal;
    }
    
    .image-caption p {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    
    .side-navigation {
        right: 15px;
    }
    
    .home-button {
        width: 35px;
        height: 35px;
    }
    
    .home-button svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .footer-symbol {
        width: 120px;
        height: auto;
        max-height: 60px;
    }
    
    .section-indicator {
        font-size: 12px;
        top: 90px;
        padding: 10px 20px;
        letter-spacing: 2px;
    }
}

/* Loading placeholder with aspect ratio for CLS optimization */
.lazy-image:not(.loaded) {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    min-height: 400px;
    min-width: 300px;
    aspect-ratio: 4/3;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.lazy-image:not(.loaded)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.1) 50%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Smooth scrolling for iOS */
@supports (-webkit-touch-callout: none) {
    .gallery-container {
        -webkit-overflow-scrolling: touch;
    }
}

/* Enhanced Image Captions */
.image-caption {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute !important;
}

/* Cursor Effects */
@media (hover: hover) {
    .gallery-section {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="10" fill="none" stroke="%23d4af37" stroke-width="2" opacity="0.5"/><circle cx="16" cy="16" r="3" fill="%23d4af37"/></svg>') 16 16, auto;
    }
    
    .lazy-image {
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect x="8" y="8" width="16" height="16" fill="none" stroke="%23d4af37" stroke-width="2" opacity="0.7"/></svg>') 16 16, pointer;
    }
}

/* Progress Indicator Animation */
@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.load-progress {
    animation: progressPulse 1s ease-in-out infinite;
}

/* Enhanced Floating Elements */
.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.floating-elements::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float3 25s ease-in-out infinite;
}

.floating-elements::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    bottom: -125px;
    left: -125px;
    animation: float4 30s ease-in-out infinite reverse;
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-30px, 30px) rotate(90deg); }
    50% { transform: translate(20px, -20px) rotate(180deg); }
    75% { transform: translate(-40px, -10px) rotate(270deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.2); }
    66% { transform: translate(-30px, 30px) scale(0.8); }
}

/* Magnetic Button Effect Override */
.slider-nav button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.slider-nav button:hover::before {
    width: 100px;
    height: 100px;
}

/* Section Entrance Animations */
@keyframes sectionEnter {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-section.in-view {
    animation: sectionEnter 1s ease-out;
}

/* Glow Effects */
.logo-text:hover {
    filter: invert(1) brightness(1.5) drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.footer-symbol:hover {
    transform: scale(1.1);
    filter: invert(0.9) sepia(1) saturate(2) hue-rotate(30deg) brightness(1.8) drop-shadow(0 0 40px rgba(212, 175, 55, 1));
}

/* Enhanced Glass Effect */
.glass-effect {
    position: relative;
    overflow: hidden;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    animation: shimmerGlass 3s infinite;
}

@keyframes shimmerGlass {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}