:root {
            --gold: #c6a769;
            --dark: #1a1a1a;
            --light: #f8f5f0;
            --gray: #8a8a8a;
            --burgundy: #5d2e2e;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: 0.5s;
        }
        
        header.scrolled {
            background-color: rgba(26, 26, 26, 0.95);
            padding: 15px 5%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: var(--light);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: var(--gold);
            transition: 0.3s;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        nav ul li a:hover {
            color: var(--gold);
        }
        .language-toggle {
            color: var(--light);
            font-size: 14px;
            margin-left: 40px;
            cursor: pointer;
        }

        .language-toggle a {
            color: var(--light);
            text-decoration: none;
            font-size: 14px;
        }

        .language-toggle a.active {
            color: var(--light);
            font-size: 14px;
            font-weight: bold;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

        .language-toggle a:hover {
            text-decoration: none;
            transform: scale(1.05);
        }
        .language-toggle a:visited {
            text-decoration: none;
            transform: scale(1.05);
        }

        .separator {
            opacity: 0.7;
        }
        
        .language-toggle span {
            opacity: 0.7;
        }
        
        .language-toggle span.active {
            opacity: 1;
            font-weight: 500;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-content {
            max-width: 900px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 5.5rem;
            margin-bottom: 20px;
            letter-spacing: 3px;
            line-height: 1.1;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--gold);
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid var(--light);
            color: var(--light);
            margin-left: 20px;
        }
        
        .btn-outline:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--dark);
        }
        
        /* Section Styling */
        section {
            padding: 100px 5%;
        }
        .section-title {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .section-title h2 {
            font-size: 3.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 2px;
            background: var(--gold);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 20px auto 0;
            font-size: 18px;
        }
        
        /* About Section */
        .about {
            background-color: var(--light);
            position: relative;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--burgundy);
        }
        
        .about-text p {
            margin-bottom: 25px;
            font-size: 17px;
        }
        
        .signature {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--gold);
            margin-top: 20px;
            font-style: italic;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            box-shadow: 20px 20px 0 var(--gold);
        }
        
        /* Experiences Section */
        .experiences {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1552566626-52f8b828add9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            background-attachment: fixed;
        }
        
        .experiences .section-title h2,
        .experiences .section-title p {
            color: white;
        }
        
        .experience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .experience-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            text-align: center;
            transition: 0.4s;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(198, 167, 105, 0.2);
        }
        
        .experience-card:hover {
            transform: translateY(-10px);
            border-color: rgba(198, 167, 105, 0.5);
        }
        
        .experience-icon {
            font-size: 50px;
            color: var(--gold);
            margin-bottom: 25px;
        }
        
        .experience-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
        }
        
         /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 400px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            transform: translateY(0);
            transition: 0.4s;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            text-align: center;
        }
        
        .gallery-caption h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }
        
        .gallery-caption p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .gallery-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold);
            color: var(--dark);
            padding: 5px 10px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 3px;
        }
        
        .hidden {
            display: none;
        }
        
        
        /* Contact Section */
        .contact {
            background-color: var(--dark);
            color: var(--light);
        }
        
        .contact .section-title h2,
        .contact .section-title p {
            color: var(--light);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 30px;
            color: var(--gold);
        }
        
        .contact-detail {
            display: flex;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            font-size: 24px;
            color: var(--gold);
            margin-right: 15px;
            min-width: 30px;
        }
        
        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .social-links {
            display: flex;
            margin-top: 30px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            margin-right: 10px;
            transition: 0.3s;
        }
        
        .social-links a:hover {
            background: var(--gold);
            color: var(--dark);
        }
        
        .contact-form input {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-family: 'Montserrat', sans-serif;
        }
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-family: 'Montserrat', sans-serif;
        }
        
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
         .time-picker {
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        #date {
            color: rgba(255, 255, 255, 0.6);
        }
        select {
            width: 40%;
            padding: 15px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6); /* Placeholder color */
            appearance: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }
        .contact-form select {
            color: rgba(255, 255, 255, 0.6);
        }
         .contact-form select option {
            color: black; /* Options color when dropdown is open */
            background: white;
            padding: 10px;
        }
        
        .contact-form select:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        /* Custom dropdown arrow */
        .select-wrapper {
            position: relative;
        }
        
        .select-wrapper::after {
            content: "▼";
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.6);
            pointer-events: none;
            font-size: 12px;
        }
        /* Footer */
        footer {
            background: #0f0f0f;
            color: var(--gray);
            text-align: center;
            padding: 30px 5%;
            font-size: 14px;
        }
        .guest-options {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        .guest-option {
            flex: 1;
            min-width: 100px;
            text-align: center;
            padding: 15px 10px;
            background: var(--gold);
            color:var(--dark);
            border: 2px solid #ddd;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .guest-option:hover {
            background: var(--gold);
        }

        .guest-option.selected {
            background: #c52d2f;
            color: white;
            border-color: #c52d2f;
        }

        .guest-option h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 15px;
            margin-top: 10px;
        }

        .time-slot {
            text-align: center;
            padding: 15px 10px;
            background: #f8f8f8;
            border: 2px solid #ddd;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .time-slot:hover {
            background: #f0f0f0;
        }

        .time-slot.selected {
            background: #e67e22;
            color: white;
            border-color: #e67e22;
        }

        .time-slot.unavailable {
            background: #eee;
            color: #aaa;
            cursor: not-allowed;
            text-decoration: line-through;
        }
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .about-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
        }