body {
            font-family: 'Montserrat', sans-serif;
            background-color: #FAF7F2;
            color: #2B0206;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .font-display {
            font-family: 'Playfair Display', serif;
        }

        .glass-nav {
            background: rgba(250, 247, 242, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(122, 31, 43, 0.1);
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Hide scrollbar for carousel */
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }

        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Cinematic Gradient Overlay */
        .cinematic-overlay {
            background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.2) 50%, rgba(110, 11, 20, 0.85) 100%);
        }

        .gold-text-gradient {
            background: linear-gradient(to right, #C8A96B, #D4B483, #C8A96B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shine 5s linear infinite;
        }

        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }

        /* 3D Scene for Hero */
        .scene {
            perspective: 1500px;
        }

        .card-3d {
            transform-style: preserve-3d;
        }

        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .card-3d:hover .card-inner {
            box-shadow: 0 30px 60px rgba(122, 31, 43, 0.2);
            border: 1px solid rgba(200, 169, 107, 0.3);
        }

        .card-3d:hover img {
            transform: scale(1.05);
        }

        .card-inner img {
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Hero Carousel Positioning */
        .hero-card {
            position: absolute;
            transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: pointer;
        }

        .pos-1 {
            left: 0%;
            top: 20%;
            width: 220px;
            height: 340px;
            z-index: 10;
            transform: translateZ(-200px) rotateY(15deg) translateX(-50px);
        }

        .pos-2 {
            left: 15%;
            top: 10%;
            width: 260px;
            height: 400px;
            z-index: 20;
            transform: translateZ(-100px) rotateY(10deg) translateX(-20px);
        }

        .pos-3 {
            left: 50%;
            top: 5%;
            width: 340px;
            height: 520px;
            z-index: 40;
            transform: translateZ(50px) translateX(-50%);
        }

        .pos-4 {
            left: 70%;
            top: 15%;
            width: 260px;
            height: 400px;
            z-index: 20;
            transform: translateZ(-100px) rotateY(-10deg) translateX(20px);
        }

        .pos-5 {
            left: 85%;
            top: 25%;
            width: 220px;
            height: 340px;
            z-index: 10;
            transform: translateZ(-200px) rotateY(-15deg) translateX(50px);
        }

        /* Card states based on position */
        .hero-card .card-inner {
            filter: blur(3px) brightness(0.85);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-card.pos-2 .card-inner,
        .hero-card.pos-4 .card-inner {
            filter: blur(1.5px) brightness(0.95);
        }

        .hero-card.pos-3 .card-inner {
            filter: blur(0px) brightness(1);
            box-shadow: 0 40px 80px rgba(122, 31, 43, 0.25);
            border: 1px solid rgba(200, 169, 107, 0.3);
        }

        .hero-card .card-text {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
            pointer-events: none;
        }

        .hero-card.pos-3 .card-text {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
            pointer-events: auto;
        }

        .hero-card .cinematic-overlay {
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .hero-card.pos-3 .cinematic-overlay {
            opacity: 1;
        }

        .scene:hover .hero-card .card-inner {
            filter: blur(0px) brightness(1);
        }

        /* Glass reflection */
        .glass-reflection::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
            transform: skewX(-25deg);
            transition: 0.7s;
            z-index: 10;
        }

        .group:hover .glass-reflection::after {
            left: 150%;
        }

        .btn-premium {
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.4s ease;
        }

        .btn-premium:hover::before {
            left: 100%;
        }

        /* Mobile Adjustments for 3D Hero */
        @media (max-width: 1024px) {
            .scene {
                height: 500px !important;
            }

            .pos-1 {
                left: 5%;
                top: 5%;
                width: 140px;
                height: 220px;
                transform: translateZ(-150px) rotateY(15deg) translateX(-20px);
            }

            .pos-2 {
                left: 10%;
                top: 10%;
                width: 180px;
                height: 280px;
                transform: translateZ(-50px) rotateY(10deg) translateX(-10px);
            }

            .pos-3 {
                left: 50%;
                top: 15%;
                width: 240px;
                height: 380px;
                transform: translateZ(50px) translateX(-50%);
            }

            .pos-4 {
                left: 60%;
                top: 10%;
                width: 180px;
                height: 280px;
                transform: translateZ(-50px) rotateY(-10deg) translateX(10px);
            }

            .pos-5 {
                left: 70%;
                top: 5%;
                width: 140px;
                height: 220px;
                transform: translateZ(-150px) rotateY(-15deg) translateX(20px);
            }
        }

        @media (max-width: 640px) {
            .scene {
                height: 350px !important;
                perspective: 800px;
                margin-top: 0;
            }

            .pos-1,
            .pos-5 {
                opacity: 0;
                pointer-events: none;
            }

            .pos-2 {
                left: 0%;
                top: 10%;
                width: 80px;
                height: 120px;
                transform: translateX(0) translateZ(-100px) rotateY(15deg);
            }

            .pos-4 {
                left: auto;
                right: 0%;
                top: 10%;
                width: 80px;
                height: 120px;
                transform: translateX(0) translateZ(-100px) rotateY(-15deg);
            }

            .pos-3 {
                left: calc(50% - 50px);
                top: 20%;
                width: 100px;
                height: 150px;
                transform: translateZ(50px);
            }

            .hero-card .card-inner {
                border-radius: 8px;
            }

            .hero-card .card-text {
                padding: 4px;
            }

            .hero-card .card-text h3 {
                font-size: 1.25rem;
                line-height: 1.2;
                margin-bottom: 2px;
            }

            .hero-card .card-text p {
                font-size: 0.6rem;
            }
        }