:root {
    --gold: #D4AF37;
    --gold-light: #F9E27A;
    --gold-dark: #A67C00;
    --black: #0F0F0F;
    --dark-grey: #1A1A1A;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title.center {
    text-align: center;
}

.bg-dark {
    background-color: var(--dark-grey);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--black);
}

.full-width {
    width: 100%;
}

/* Urgency Banner */
.urgency-banner {
    background-color: var(--gold-dark);
    color: var(--black);
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.urgency-banner a {
    color: var(--black);
    text-decoration: underline;
    margin-left: 10px;
}

/* Header */
header {
    background-color: transparent;
    /* Transparent by default */
    padding: 20px 0;
    position: fixed;
    /* Fixed so it stays over the hero */
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(15, 15, 15, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    /* Full screen height for maximum impact */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    /* Fixed background creates a premium parallax effect */
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ccc;
}

.hero-btns .btn {
    margin: 10px;
}

/* About Section */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.features {
    list-style: none;
    margin: 25px 0 40px;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.features i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: auto;
}

.rounded {
    border-radius: 10px;
}

.shadow {
    box-shadow: var(--shadow);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--gold);
}

.service-content {
    padding: 30px;
}

.service-card:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.service-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Offer Banner */
.offer-banner {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('venue-images/v12.jpeg');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.offer-content h3 {
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.offer-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.price-big {
    font-weight: 700;
}

.offer-content p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Contact Info */
.contact-methods {
    margin-top: 40px;
}

.method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.method i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-right: 20px;
    margin-top: 5px;
}

.method h4 {
    margin-bottom: 5px;
}

.method a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.method a:hover {
    color: var(--gold);
}

/* Booking Form */
.booking-form-container {
    background-color: var(--black);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow);
}

.booking-form h3 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: #1A1A1A;
    /* Solid background for better visibility */
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--white);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

/* Fix for mobile dropdown visibility */
.input-group select option {
    background-color: #1A1A1A;
    color: white;
    padding: 10px;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--gold);
    background-color: #222;
}

/* Ensure placeholder and first option look distinct */
.input-group select:invalid,
.input-group select option[value=""] {
    color: #888;
}

/* Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--gold);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delayed {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}