:root {
            --primary-gold: #d4af37;
            --dark-gold: #b8941f;
            --light-gold: #f4e8c1;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --bg-white: #ffffff;
            --bg-light: #f9f9f9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-light);
            line-height: 1.7;
            font-weight: 300;
            background-color: var(--bg-white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, .brand {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2.5rem;
            position: relative;
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .section-padding {
            padding: 6rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .gold-text {
            color: var(--primary-gold);
        }
        
        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            background-color: var(--bg-white);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .navbar-nav .nav-link {
            color: var(--text-dark);
            font-weight: 400;
            margin: 0 0.8rem;
            padding: 0.5rem 0;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-gold);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-gold);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        /* Hero Slider */
        .hero-slider {
            height: 100vh;
            min-height: 700px;
            position: relative;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-1 {
            background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.8)), url('../img/slide01.jpg');
        }
        
        .slide-2 {
            background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.8)), url('../img/slide04.jpg');
        }
        
        .slide-3 {
            background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.8)), url('../img/slide03.jpg');
        }
        
        .hero-content {
            max-width: 700px;
            padding-left: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: var(--text-light);
        }
        
        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 100;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(212, 175, 55, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--primary-gold);
            transform: scale(1.2);
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: var(--primary-gold);
            font-size: 2rem;
            cursor: pointer;
            z-index: 100;
            transition: color 0.3s ease;
            padding: 1rem;
        }
        
        .slider-arrow:hover {
            color: var(--dark-gold);
        }
        
        .slider-arrow.prev {
            left: 2rem;
        }
        
        .slider-arrow.next {
            right: 2rem;
        }
        
        .btn-gold {
            background-color: var(--primary-gold);
            color: white;
            padding: 0.8rem 2.2rem;
            border-radius: 0;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 1px solid var(--primary-gold);
        }
        
        .btn-gold:hover {
            background-color: transparent;
            color: var(--primary-gold);
        }
        
        .btn-outline-gold {
            background-color: transparent;
            color: var(--primary-gold);
            padding: 0.8rem 2.2rem;
            border-radius: 0;
            font-weight: 500;
            letter-spacing: 1px;
            border: 1px solid var(--primary-gold);
            transition: all 0.3s ease;
        }
        
        .btn-outline-gold:hover {
            background-color: var(--primary-gold);
            color: white;
        }
        
        /* Collections */
        .collection-card {
            background-color: var(--bg-white);
            border: none;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        
        .collection-card:hover {
            transform: translateY(-5px);
        }
        
        .collection-img {
            height: 350px;
            object-fit: cover;
            width: 100%;
        }
        
        .collection-title {
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem 0;
        }
        
        /* About Section */
        .about-img {
            height: 500px;
            object-fit: cover;
            width: 100%;
        }
        
        /* Features */
        .feature-item {
            text-align: center;
            padding: 2rem 1.5rem;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }
        
        /* Testimonials */
        .testimonial-item {
            padding: 2.5rem;
            background-color: var(--bg-light);
            margin-bottom: 2rem;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .client-name {
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }
        
        /* Footer */
        .footer {
            background-color: var(--bg-light);
            padding: 5rem 0 2rem 0;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
        }
        
        /* Contact Info */
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 1rem;
            color: var(--primary-gold);
            width: 20px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .section-padding {
                padding: 4rem 0;
            }
            
            .hero-slider {
                min-height: 600px;
            }
            
            .hero-content {
                text-align: center;
                padding-left: 0;
                margin: 0 auto;
            }
            
            .slider-arrow {
                font-size: 1.5rem;
            }
            
            .slider-arrow.prev {
                left: 1rem;
            }
            
            .slider-arrow.next {
                right: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .section-padding {
                padding: 3rem 0;
            }
            
            .navbar-nav {
                text-align: center;
                padding-top: 1rem;
            }
            
            .slider-controls {
                bottom: 2rem;
            }
        }