/* =========================
 Root Variables
========================= */
:root {
    --gold: #d4af37;
    --deep-blue: #1a2332;
    --cream: #f8f5f0;
    --dark-gold: #b8941f;
    --soft-white: #ffffff;
    --charcoal: #2d3142;
    --rose-gold: #e8c4a8;
    --navy: #0f1419;
    --nav-height: 80px;

}

/* =========================
 Global Styles
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Montserrat', sans-serif;
    padding-top: var(--nav-height);
}



/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(26, 35, 50, .95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* ===== DESKTOP LAYOUT (GRID) ===== */
.nav-container {
    max-width: 1400px;
    margin: auto;
    height: 100%;
    padding: 0 1.5rem;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

/* LOGO */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
}

/* ================= MENU ================= */
.nav-menu {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.nav-item {
    position: relative
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    padding: .6rem 1rem;
    border-radius: 6px;
    transition: .3s;
    display: block;
}

.nav-link:hover {
    background: rgba(212, 175, 55, .15);
    color: var(--gold);
}

.nav-link.active {
    background: rgba(212, 175, 55, .22);
    color: var(--gold);
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(26, 35, 50, .98);
    border-radius: 10px;
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .3s;
    z-index: 1000;
}

.dropdown-menu .nav-link {
    padding: .7rem 1.2rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ================= LOGIN ================= */
.login-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    font-weight: 600;
    border-radius: 30px;
    padding: .6rem 1.6rem;
}

/* Desktop login position */
@media (min-width:1025px) {
    .nav-login {
        position: absolute;
        right: 1.5rem;
        list-style: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.logo-icon {
    font-size: 1.4rem;
    line-height: 1;
}

/* ================= HAMBURGER ================= */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

/* ===== TABLET & MOBILE FIX (≤1024px) ===== */
@media (max-width:1024px) {

    /* SWITCH GRID → FLEX (CRITICAL FIX) */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--deep-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        transition: .35s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0
    }

    .nav-link {
        width: 100%;
        padding: 1rem;
    }

    /* Dropdown inside hamburger */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, .06);
        margin-top: .3rem;
        width: 100%;
        border-radius: 8px;
    }

    /* LOGIN AT BOTTOM (LEFT ALIGNED) */
    .nav-login {
        width: 100%;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, .15);
    }

    .nav-login .login-btn {
        width: 100%;
        text-align: left;
        padding: 1rem;
        border-radius: 8px;
    }
}

/* Hero Section */
.home1-hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.home1-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 35, 50, 0.4) 100%);
}

.home1-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.home1-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--gold);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.home1-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-3px);
}


/* =========================
                Home 1
========================= */
/* Section Styling */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-subtitle {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 300;
    margin-top: 1.5rem;
}

#about {
    padding-bottom: 40px;
}

#venues {
    padding-top: 40px;
}

/* Venues Grid */
.home-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.home-venue-card {
    background: var(--soft-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.home-venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.home-venue-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.home-venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-venue-card:hover .home-venue-image img {
    transform: scale(1.1);
}

.home-venue-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--deep-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-venue-content {
    padding: 2rem;
}

.home-venue-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 0.8rem;
}

.home-venue-description {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.home-venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--cream);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--charcoal);
    border: 1px solid var(--rose-gold);
}

.home-venue-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
}

.home-venue-capacity {
    font-weight: 600;
    color: var(--deep-blue);
}

.view-details {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.view-details:hover {
    gap: 1rem;
}


/* Pricing Packages */
.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.home-pricing-card {
    background: var(--soft-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.home-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.home-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.home-pricing-card:hover::before {
    transform: scaleX(1);
}

.home-pricing-card.featured {
    background: linear-gradient(135deg, var(--deep-blue), var(--charcoal));
    color: var(--soft-white);
    transform: scale(1.05);
}

.home-pricing-card.featured .home-pricing-price {
    color: var(--gold);
}

.home-pricing-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.home-pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.home-pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.home-pricing-period {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.home-pricing-card.featured .home-pricing-period {
    color: var(--cream);
}

.home-pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.home-pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--cream);
}

.home-pricing-card.featured .home-pricing-features li {
    border-color: rgba(212, 175, 55, 0.2);
}

.dashboard-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}


/* Testimonials */
.testimonials {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-family: cursive;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--charcoal);
    font-size: 0.9rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.9), transparent);
    padding: 2rem;
    color: var(--soft-white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Contact/CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95), rgba(45, 49, 66, 0.95)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover fixed;
    color: var(--soft-white);
    text-align: center;
    padding: 8rem 2rem;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.cta-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--rose-gold);
}

/* Responsive Design */
@media (max-width: 768px) {

    .home1-hero h1 {
        font-size: 2.5rem;
    }

    .home1-hero p {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .home-venues-grid,
    .home-pricing-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .home-pricing-card.featured {
        transform: scale(1);
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

}

@media (max-width: 480px) {
    .home1-hero h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Testimonials */
.testimonial-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--deep-blue), var(--charcoal));
    color: var(--soft-white);
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 3rem;
    animation: fadeIn 0.5s;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial-content {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 2.5rem;
    color: var(--cream);
}

.testimonial-author-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    object-fit: cover;
}

.author-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.author-details p {
    font-size: 0.95rem;
    color: var(--cream);
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--deep-blue);
}

.slider-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* =========================
             Home 2
========================= */

/* =========================
   HEROS – MODERN LUXURY HERO
========================= */

.heros-modern {
    width: 100%;
    background: linear-gradient(135deg, var(--deep-blue), var(--charcoal));
    padding: 6rem 0 4rem;
}

/* MAIN CONTAINER */
.heros-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

/* LEFT CONTENT */
.heros-text {
    color: var(--soft-white);
}

.heros-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.heros-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.15;
    margin: 1.2rem 0;
}

.heros-text h1 .highlight {
    color: var(--gold);
}

.heros-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--cream);
    max-width: 520px;
}

/* ACTION BUTTONS */
.heros-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.2rem;
}

/* =========================
   HEROS – RIGHT IMAGE GRID
========================= */

.heros-visual {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.heros-image-grid {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.heros-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.heros-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.heros-image-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(26, 35, 50, 0.35),
            transparent);
}

.heros-image-item:hover img {
    transform: scale(1.08);
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 1024px) {

    .heros-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .heros-text h1 {
        font-size: 3.2rem;
    }

    .heros-img-1 {
        width: 62%;
        height: 55%;
    }

    .heros-img-2 {
        width: 48%;
        height: 45%;
    }

    .heros-img-3 {
        width: 38%;
        height: 38%;
        top: 30%;
        left: 40%;
    }
}

@media (max-width: 1024px) {

    .heros-visual {
        height: 360px;
    }

    .heros-image-grid {
        gap: 12px;
    }
}


/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .heros-modern {
        padding: 3rem 0 2.5rem;
    }

    .heros-text {
        text-align: center;
    }

    .heros-text p {
        margin: auto;
    }

    .heros-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .heros-img-1 {
        width: 80%;
        height: 100%;
        left: 10%;
        top: 0;
    }

    .heros-img-2,
    .heros-img-3 {
        display: none;
    }
}

@media (max-width: 768px) {

    .heros-visual {
        height: auto;
        margin-top: 2rem;
    }

    .heros-image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .heros-image-item {
        height: 220px;
    }
}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .heros-text h1 {
        font-size: 2.4rem;
    }

    .heros-text p {
        font-size: 1.15rem;
    }
}

/* Featured Venues - Carousel Style */
.featured-section {
    padding: 6rem 2rem;
    background: var(--soft-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 300;
    margin-top: 1.5rem;
}

.venues-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.venue-card-v2 {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.venue-card-v2:hover {
    transform: translateY(-15px);
}

.venue-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.venue-card-v2:hover .venue-bg {
    transform: scale(1.15);
}

.venue-card-v2 .venue-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.3) 50%, transparent 100%);
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    color: var(--soft-white);
}

.venue-card-v2 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-top: 15rem !important;
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
    margin-bottom: 0.8rem !important;
}

.venue-card-v2 p {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 2.5rem !important;
    margin-bottom: 1.5rem !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    height: auto !important;
}

.venue-card-v2 .venue-capacity-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: auto !important;
    margin-left: 2.5rem !important;
    margin-bottom: 2.5rem !important;
    width: fit-content;
}

/* Services Grid */
.services-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    transform: translateX(10px);
}

.service-img-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
    background: var(--white);
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-box img {
    transform: scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* CTA Banner */
.cta-banner {
    padding: 6rem 2rem;
    background: var(--soft-white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.cta-banner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .venues-carousel {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-banner h2 {
        font-size: 2.5rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

}

/* =========================
             About
========================= */


/* Hero Section */
.about-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 35, 50, 0.4) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--gold);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.about-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.about-hero h1 {
    font-size: 2.5rem;
}

.about-hero p {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
}

/* STORY GRID (FIXED) */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.story-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* IMAGE FIX */
.story-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--soft-white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.about-stats-section {
    background: linear-gradient(135deg, var(--deep-blue), var(--charcoal));
    color: white;
    text-align: center;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-stat-box {
    padding: 2rem;
}

.about-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 1.1rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: var(--soft-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.team-member img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 5px solid var(--gold);
}

.team-member h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* TABLET */
@media(max-width:992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image {
        aspect-ratio: 16 / 9;
    }
}

/* MOBILE */
@media(max-width:768px) {
    .story-content h2 {
        font-size: 2rem;
    }

    .story-content p {
        font-size: .95rem;
    }
}

section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 3rem;
}

/* Feature Images (Replacing Emojis) */
.feature-img-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.why-card:hover .feature-img-box {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.why-card:hover .feature-img-box img {
    transform: scale(1.1);
}

/* Auth Page Styles (Login/Signup) */
.auth-logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.auth-logo:hover {
    transform: scale(1.02);
}

.auth-logo .logo-icon {
    font-size: 1.6rem;
}

.back-home-mobile {
    display: none;
    text-align: center;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.back-home-mobile:hover {
    color: var(--dark-gold);
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.social-btn {
    padding: 0.8rem 1.2rem;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-btn:hover {
    background: #f8f9fa;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Dark mode overrides for social buttons */
body.dark-mode .social-btn {
    background: #232d3d;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .social-btn:hover {
    background: #2a3649;
    border-color: var(--gold);
}

@media (max-width: 480px) {
    .social-login {
        grid-template-columns: 1fr;
    }
}


/* Login Section */
.login-section {
    margin-top: calc(-1 * var(--nav-height));
}


.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 2rem 4rem;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.05), rgba(212, 175, 55, 0.05));
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    width: 100%;
    background: var(--soft-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.login-image {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('https://images.unsplash.com/photo-1519167758481-83f29da8861c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--soft-white);
}

.login-image h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.login-image p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cream);
}

.login-features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-home-title {
    display: inline-block;
    /* prevents flex stretch issues */
}

.login-home-title .home-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    /* keeps gold / dark colors */
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.login-home-title .home-link:hover {
    color: var(--gold);
    transform: translateX(2px);
}

.login-theme-toggle {
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 1000;
}

.login-theme-toggle button {
    background: transparent;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--gold);
    padding: 6px;
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.login-theme-toggle button:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* ===============================
   AUTH PAGES – DARK MODE TOGGLE
================================ */

.auth-theme-toggle {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1100;
}

.auth-theme-toggle button {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.auth-theme-toggle button:hover {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.15);
}

/* DARK MODE */
body.dark-mode .auth-theme-toggle button {
    background: rgba(255, 255, 255, 0.08);
}

/* ===============================
   MOBILE & TABLET ADJUSTMENTS
================================ */

@media (max-width: 768px) {
    .auth-theme-toggle {
        top: 14px;
        right: 14px;
    }

    .auth-theme-toggle button {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .auth-theme-toggle {
        top: 10px;
        right: 10px;
    }

    .auth-theme-toggle button {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}



.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.login-form-container {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.login-form-container .subtitle {
    color: var(--charcoal);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--soft-white);
}

.password-toggle {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--charcoal);
    cursor: pointer;
    font-size: 1.2rem;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--dark-gold);
}

.btn-login {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: var(--charcoal);
    opacity: 0.6;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--cream);
}

.divider span {
    padding: 0 1rem;
    font-size: 0.9rem;
}


/* Redundant social styles removed. Consolidated in Auth Page Styles section. */

.signup-link {
    text-align: center;
    color: var(--charcoal);
}

.signup-link a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: auto;
    }

    .login-image {
        display: none;
    }

    .back-home-mobile {
        display: block;
    }

    .login-form-container {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .login-form-container {
        padding: 3rem 2rem;
    }

    .social-login {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 1rem;
    }

    .login-container {
        border-radius: 15px;
    }

    .login-form-container h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .login-form-container {
        padding: 2.5rem 1.5rem;
    }

    .login-form-container h1 {
        font-size: 1.8rem;
    }
}

/* =========================
	Signup
========================= */

/* signup section */

.signup-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 2rem 4rem;
}

.signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 100%;
    background: var(--soft-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.signup-image {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--soft-white);
}

.signup-image h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.signup-form-container {
    padding: 4rem;
}

.signup-form-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

.signup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.signup-form-group {
    margin-bottom: 1.5rem;
}

.signup-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.signup-form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--cream);
    transition: all 0.3s ease;
}

.signup-form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--soft-white);
}

.btn-signup {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-signup:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.signup-home-title a {
    text-decoration: none;
    color: inherit;
    /* keeps h2 color */
    transition: color 0.3s ease, transform 0.2s ease;
}

.signup-home-title a:hover {
    color: var(--gold);
    transform: translateX(2px);
}


/* Responsive */

@media (max-width: 1024px) {
    .signup-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: auto;
    }

    .signup-image {
        display: none;
    }

    .back-home-mobile {
        display: block;
    }

    .signup-form-container {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .signup-form-container {
        padding: 3rem 2rem;
    }

    .signup-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .signup-form-container {
        padding: 2.5rem 1.5rem;
    }

    .signup-form-container h1 {
        font-size: 2rem;
    }
}


/* =========================
 	   venues
========================= */

/* Hero Section */
.venue-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.venue-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 35, 50, 0.4) 100%);
}

.venue-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.venue-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--gold);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.venue-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.venue-hero h1 {
    font-size: 2.5rem;
}

.venue-hero p {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .venue-hero h1 {
        font-size: 2rem;
    }
}

/* Sections */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    font-weight: 300;
    margin-top: 1.5rem;
}

/* Venues Grid */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.venue-card {
    background: var(--soft-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.venue-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--deep-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.venue-content {
    padding: 2rem;
}

.venue-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 0.8rem;
}

.venue-description {
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--cream);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--charcoal);
    border: 1px solid var(--rose-gold);
}

.venue-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
}

.venue-capacity {
    font-weight: 600;
    color: var(--deep-blue);
}

.view-details {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.view-details:hover {
    gap: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95), rgba(45, 49, 66, 0.95)), url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover fixed;
    color: var(--soft-white);
    text-align: center;
    padding: 8rem 2rem;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.cta-section p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .venues-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .venue-hero h1 {
        font-size: 2rem;
    }

    .venue-card {
        margin-bottom: 0;
    }
}

/* =========================
          pricing
========================= */

/* Hero Section */
.pricing-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 35, 50, 0.4) 100%);
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--gold);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.pricing-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.pricing-hero h1 {
    font-size: 2.5rem;
}

.pricing-hero p {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }
}

/* ================= PRICING ================= */
.pricing-section {
    padding: 4rem 1.5rem 2.5rem;
    /* reduced bottom space */
}

.pricing-container {
    max-width: 1200px;
    margin: auto;
}

.pricing-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-blue);
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    text-align: center;
    transition: .3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: .8rem;
}

.price {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    margin-bottom: .6rem;
}

.pricing-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: .8rem 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    text-decoration: none;

    font-weight: 600;
}

/* ================= GALLERY ================= */
.pricing-gallery-section {
    padding: 2.5rem 1.5rem 4rem;
    /* reduced top space */
    background: #fff;
}

.pricing-gallery-container {
    max-width: 1200px;
    margin: auto;
}

.pricing-gallery-title {
    text-align: center;
    margin-bottom: 2.2rem;
}

.pricing-gallery-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--deep-blue);
}

.pricing-gallery-title p {
    margin-top: .6rem;
    color: #555;
}

.pricing-gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-gallery-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.pricing-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .4s;
}

.pricing-gallery-item:hover img {
    transform: scale(1.08);
}

/* ================= CTA ================= */
.pricing-cta-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--deep-blue), var(--navy));
    text-align: center;
}

.pricing-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.pricing-cta-section p {
    color: var(--cream);
    margin-bottom: 2rem;
}

.pricing-cta-btn {
    padding: .9rem 2.4rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media (max-width:768px) {
    .hero-pricing {
        min-height: 35vh
    }

    .hero-pricing h1 {
        font-size: 2.2rem
    }

    .hero-pricing p {
        font-size: 1.05rem
    }

    .pricing-title h2,
    .gallery-title h2,
    .cta-section h2 {
        font-size: 2rem
    }
}

@media (max-width:480px) {
    .hero-pricing {
        min-height: 32vh
    }

    .hero-pricing h1 {
        font-size: 1.9rem
    }
}


/* =========================
	Contact Us
========================= */

/* Hero Section */
.contact-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 35, 50, 0.4) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--gold);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.contact-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.contact-hero h1 {
    font-size: 2.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* =========================
   CONTACT US PAGE STYLES
========================= */


/* ===============================
   CONTACT US – MODERN DESIGN
=============================== */

.contactus-section {
    background: #f8f5f0;
    padding: 100px 16px;
    font-family: 'Montserrat', sans-serif;
}

.contactus-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* CARD */
.contactus-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* TITLES */
.contactus-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a2332;
    margin-bottom: 22px;
}

.contactus-subtext {
    color: #6b7280;
    margin-bottom: 26px;
}

/* INFO LIST */
.contactus-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.contactus-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, .15);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.contactus-info-item h4 {
    font-size: .95rem;
    color: #1a2332;
    margin-bottom: 4px;
}

.contactus-info-item p {
    font-size: .9rem;
    color: #4b5563;
    line-height: 1.5;
}

/* FORM */
.contactus-form input,
.contactus-form select,
.contactus-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: .9rem;
    margin-bottom: 18px;
    background: #f9fafb;
    font-family: 'Playfair Display', serif;
}

.contactus-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contactus-form textarea {
    min-height: 120px;
    resize: none;
    font-family: 'Playfair Display', serif;
}

.contactus-form button {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #1a2332;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    width: 180px;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width:900px) {
    .contactus-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width:480px) {
    .contactus-card {
        padding: 26px;
    }

    .contactus-row {
        grid-template-columns: 1fr;
    }

    .contactus-form button {
        width: 100%;
    }
}

/* Validation */
.contactus-field {
    position: relative;
}

.contactus-error {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
}

.contactus-field input.error,
.contactus-field select.error,
.contactus-field textarea.error {
    border-color: #dc2626;
    background: #fff5f5;
}

/* Success state (optional future use) */
.contactus-field input.success,
.contactus-field select.success,
.contactus-field textarea.success {
    border-color: #22c55e;
}


/* Newsletter Section Styles */
.newsletter-form {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(248, 245, 240, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-btn {
    padding: 1rem 1.8rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.newsletter-btn:active {
    transform: translateY(0);
}

/* Social Media Icons */
.social-media {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* Hover animations */
.social-icon:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-4px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.social-icon:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.social-icon:active {
    transform: translateY(-2px) scale(1);
}

/* Individual social platform colors (optional enhancement) */
.social-icon:nth-child(1):hover {
    /* Facebook */
    background: linear-gradient(135deg, var(--gold), #d4af37);
}

.social-icon:nth-child(2):hover {
    /* Instagram */
    background: linear-gradient(135deg, var(--gold), #d4af37);
}

.social-icon:nth-child(3):hover {
    /* Twitter */
    background: linear-gradient(135deg, var(--gold), #d4af37);
}

.social-icon:nth-child(4):hover {
    /* LinkedIn */
    background: linear-gradient(135deg, var(--gold), #d4af37);
}

.social-icon:nth-child(5):hover {
    /* YouTube */
    background: linear-gradient(135deg, var(--gold), #d4af37);
}

/* Pulse animation effect */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.social-icon:hover {
    animation: pulse 1.5s infinite;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        padding: 1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .newsletter-input {
        padding: 0.9rem;
        font-size: 0.85rem;
    }

    .newsletter-btn {
        padding: 0.9rem;
        font-size: 0.85rem;
    }
}

/* Newsletter Input Focus Effect */
.newsletter-input::placeholder {
    color: rgba(248, 245, 240, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Newsletter Button Hover */
.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.newsletter-btn:active {
    transform: translateY(0);
}

/* Social Icon Animations */
.social-icon:hover {
    background: var(--gold) !important;
    color: var(--deep-blue) !important;
    transform: translateY(-4px) scale(1.05);
    border-color: var(--gold) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    animation: pulse 1.5s infinite;
}

.social-icon:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.social-icon:active {
    transform: translateY(-2px) scale(1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    }

    50% {
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5), 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column !important;
    }

    .newsletter-btn {
        width: 100%;
        padding: 1rem !important;
    }

    .social-icons {
        justify-content: center;
    }
}

/* =========================
	     FAQ
========================= */

/* Hero Section */
.faq-hero {
    height: 60vh;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 35, 50, 0.4) 100%);
}

.faq-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--gold);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.faq-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.faq-hero h1 {
    font-size: 2.5rem;
}

.faq-hero p {
    font-size: 1.2rem;
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 2rem;
    }
}



.faq-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--gold);
}

.faq-item {
    background: var(--soft-white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--soft-white);
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--charcoal);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.cta-box {
    background: linear-gradient(135deg, var(--deep-blue), var(--charcoal));
    color: white;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem auto;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--cream);
}

.btn-cta {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .faq-hero-banner h1 {
        font-size: 2.5rem;
    }

    .faq-section {
        padding: 3rem 1.5rem;
    }
}


/*==============================
                Admin Dashboard 
=================================== */



/* ================= NAVBAR ================= */
.admin-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(26, 35, 50, .95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* ===== DESKTOP LAYOUT (GRID) ===== */
.admin-nav-container {
    max-width: 1400px;
    margin: auto;
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.admin-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
}

/* ================= MENU ================= */
.admin-nav-menu {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.admin-nav-item {
    position: relative
}

.admin-nav-link {
    color: var(--cream);
    text-decoration: none;
    padding: .6rem 1rem;
    border-radius: 6px;
    transition: .3s;
    display: block;
}

.admin-nav-link:hover {
    background: rgba(212, 175, 55, .15);
    color: var(--gold);
}

.admin-nav-link.active {
    background: rgba(212, 175, 55, .22);
    color: var(--gold);
}

/* ================= DROPDOWN ================= */
.admin-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(26, 35, 50, .98);
    border-radius: 10px;
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .3s;
    z-index: 1000;
}

.admin-dropdown-menu .admin-nav-link {
    padding: .7rem 1.2rem;
}

.admin-dropdown:hover .admin-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-right-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


/* ================= DASHBOARD COMPONENTS ================= */
.admin-profile-mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 1rem;
}

.admin-profile-mini:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.admin-profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.admin-profile-name {
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 500;
}

.theme-toggle-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    padding: 0;
    color: var(--gold);
}

.theme-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .admin-profile-name {
        display: none;
    }

    .admin-profile-mini {
        padding: 0.4rem;
        margin: 0 0.5rem;
    }
}

/* ================= LOGIN ================= */
.admin-login-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    font-weight: 600;
    border-radius: 30px;
    padding: .6rem 1.6rem;
}

/* Desktop login position */
@media (min-width:1025px) {
    .admin-nav-login {
        position: absolute;
        right: 1.5rem;
        list-style: none;
    }
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.admin-logo-icon {
    font-size: 1.4rem;
    line-height: 1;
}

/* ================= HAMBURGER ================= */
.admin-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.admin-mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

/* ===== TABLET & MOBILE FIX (≤1024px) ===== */
@media (max-width: 1024px) {

    /* SWITCH GRID → FLEX (CRITICAL FIX) */
    .admin-nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .header-right-group {
        gap: 1rem;
    }

    .admin-profile-name {
        display: none;
    }

    .admin-profile-mini {
        padding: 0.3rem;
        margin: 0;
    }

    .admin-logo {
        font-size: 1.6rem;
    }

    .admin-login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* MOBILE RESPONSIVENESS (360px+) */
@media (max-width: 480px) {
    .admin-nav-container {
        padding: 0 0.8rem;
    }

    .admin-logo {
        font-size: 1.2rem;
    }

    .admin-logo-icon {
        font-size: 1.1rem;
    }

    .header-right-group {
        gap: 0.5rem;
    }

    .admin-login-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .admin-profile-mini {
        padding: 0.2rem;
    }
}

@media (max-width: 360px) {
    .admin-logo {
        font-size: 1rem;
    }

    .header-right-group {
        gap: 0.4rem;
    }
}




/* Admin Container */
.admin-container {
    padding-top: 0px;
    min-height: 100vh;
}

/* Top Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--deep-blue), var(--charcoal));
    color: white;
    padding: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--cream);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-change {
    font-size: 0.75rem;
    color: #4ade80;
    margin-top: 0.3rem;
}

/* Main Content */
.main-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-blue);
}

.actions-group {
    display: flex;
    gap: 1rem;
}

.action-btn {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-blue);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Cards */
.card {
    background: var(--soft-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-blue);
}

.card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.card-link:hover {
    text-decoration: underline;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.data-table thead {
    background: var(--cream);
}

.data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--deep-blue);
    border-bottom: 2px solid var(--gold);
    font-size: 0.9rem;
    white-space: nowrap;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--cream);
    font-size: 0.85rem;
}

.data-table tr:hover {
    background: var(--cream);
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
}

/* Two Column Grid */
.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Chart */
.chart {
    height: 280px;
    background: var(--cream);
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 2rem 1rem 3rem;
    position: relative;
}

.bar {
    width: 45px;
    background: linear-gradient(to top, var(--gold), var(--dark-gold));
    border-radius: 5px 5px 0 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.bar:hover {
    filter: brightness(1.1);
    transform: scaleY(1.05);
}

.bar-label {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--deep-blue);
    white-space: nowrap;
}

/* Activity Feed */
.activity {
    max-height: 380px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.activity-content h4 {
    font-size: 0.9rem;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}

.activity-content p {
    font-size: 0.8rem;
    color: var(--charcoal);
}

.activity-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 0.2rem;
}

/* Venue Cards */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.venue-mini {
    background: var(--cream);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.venue-mini h4 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.venue-stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.venue-stat span:last-child {
    font-weight: 600;
    color: var(--deep-blue);
}


/* TABLET - 1024px */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 0.8rem;
    }

    .stat-item:nth-child(3n) {
        border-right: none;
    }

    .stat-value {
        font-size: 2rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-content {
        padding: 1.5rem;
    }
}

/* MOBILE - 768px */
@media (max-width: 768px) {

    .stats-bar {
        padding: 1.2rem 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .stat-item {
        padding: 0.6rem;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-change {
        font-size: 0.7rem;
    }

    .main-content {
        padding: 1rem;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .actions-group {
        width: 100%;
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .card {
        padding: 1.2rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .data-table {
        font-size: 0.75rem;
        min-width: 600px;
    }

    .data-table th,
    .data-table td {
        padding: 0.6rem 0.4rem;
    }

    .chart {
        height: 240px;
        padding: 1.5rem 0.5rem 3rem;
    }

    .bar {
        width: 30px;
    }

    .bar-value {
        font-size: 0.7rem;
        top: -20px;
    }

    .bar-label {
        font-size: 0.7rem;
    }

    .venue-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* SMALL MOBILE - 480px */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .data-table {
        min-width: 500px;
        font-size: 0.7rem;
    }

    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}





/* ================= TOP BAR ================= */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--deep-blue);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.8rem;
    text-decoration: none;
}

.logout-desktop {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    padding: .6rem 1.6rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--gold);
}

/* ================= LAYOUT ================= */
.dashboard {
    display: grid;
    grid-template-columns: 260px 1fr;
    margin-top: 0px;
    min-height: 100vh;
    background: cream;
}

/* ================= SIDEBAR ================= */
.sidebar {
    background: var(--deep-blue);
    color: #fff;
    padding: 2rem 0;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
}

.profile {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.profile h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

.profile p {
    font-size: .9rem;
    opacity: .8
}

.menu {
    list-style: none;
    margin-top: 1.5rem
}

.menu a {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: #fff;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.menu a:hover,
.menu a.active {
    background: rgba(212, 175, 55, .12);
    border-left-color: var(--gold);
    color: var(--gold);
}

.logout-mobile {
    display: none
}

/* ================= MAIN ================= */
.main {
    padding: 2rem
}

/* ================= HEADER ================= */
.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--deep-blue);
}

/* ================= STATS ================= */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    background: var(--cream);
    padding: 1.6rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
    border-left: 5px solid var(--gold);
}

.stat h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-blue);
}

/* ================= QUICK ACTIONS ================= */
.quick-actions {
    margin-bottom: 3rem;
}

.quick-actions h2 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.action {
    background: var(--cream);
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    transition: .3s;
}

.action:hover {
    transform: translateY(-6px)
}

.action h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: .5rem;
}

.action button {
    margin-top: 1rem;
    padding: .7rem 1.8rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    font-weight: 600;
    cursor: pointer;
}

/* ================= CALENDAR ================= */
.calendar-section {
    margin-bottom: 3rem;
}

.calendar-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.calendar {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}

.calendar-grid div {
    padding: 12px 0;
    border-radius: 10px;
}

.day {
    font-weight: 600;
    background: #f0f0f0
}

.available {
    background: #d1fae5;
    color: #061d16
}

.booked {
    background: #fee2e2;
    color: #d81818
}

.selected {
    background: var(--gold);
    color: #000
}

/* ================= BOOKINGS ================= */
.bookings {
    background: var(--cream);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.booking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.booking:last-child {
    border-bottom: none
}

.badge {
    padding: .4rem 1rem;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
}

.confirmed {
    background: #d1fae5;
    color: #065f46
}

.pending {
    background: #fef3c7;
    color: #92400e
}

.hold {
    background: #dbeafe;
    color: #1e40af
}

/* ================= OVERLAY ================= */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible
}

/* ================= RESPONSIVE ================= */
@media(max-width:1024px) {
    .dashboard {
        grid-template-columns: 1fr
    }

    .sidebar {
        position: fixed;
        left: -100%;
        width: 280px;
        z-index: 999;
        transition: .3s;
    }

    .sidebar.active {
        left: 0
    }

    .menu-btn {
        display: flex
    }

    .logout-desktop {
        display: none
    }

    .logout-mobile {
        display: block
    }

    body.lock {
        overflow: hidden
    }
}

@media(max-width:768px) {
    .main {
        padding: 1.3rem
    }

    .header h1 {
        font-size: 2rem
    }
}

/* ===== CALENDAR ===== */
.calendar-wrapper {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    max-width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--deep-blue);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-grid .day-name {
    font-weight: 600;
    background: #f0f0f0;
    padding: .6rem 0;
    border-radius: 8px;
}

.calendar-grid .date {
    padding: .9rem 0;
    border-radius: 10px;
    cursor: pointer;
    transition: .25s;
}

.available {
    background: var(--green)
}

.booked {
    background: var(--red);
    pointer-events: none;
    opacity: .6
}

.selected {
    background: var(--gold);
    animation: pop .25s ease;
}

@keyframes pop {
    from {
        transform: scale(.9)
    }

    to {
        transform: scale(1)
    }
}

/* ===== MONTH TRANSITION ===== */
.calendar-body {
    animation: fadeSlide .35s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(15px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* =================== 
            404 Page
===================== */


.error-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.error-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 520px;
    width: 100%;
    animation: fadeUp .6s ease;
}

.error-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: .5rem;
}

.error-box h2 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.error-box p {
    color: #666;
    margin-bottom: 2rem;
}

.error-btn {
    display: inline-block;
    padding: .8rem 2.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.error-btn:hover {
    transform: translateY(-3px);
    opacity: .9;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:480px) {
    .error-box h1 {
        font-size: 4rem
    }
}

/* =========================
            Coming Soon
=================================*/

.soon-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.soon-box {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 560px;
    width: 100%;
    animation: fadeUp .6s ease;
}

.soon-box h1 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-blue);
    font-size: 3rem;
    margin-bottom: .5rem;
}

.soon-box span {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.soon-box p {
    color: #666;
    margin-bottom: 2.2rem;
}

.soon-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.soon-btn {
    padding: .8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
}

.secondary {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.soon-btn:hover {
    transform: translateY(-3px);
    opacity: .9;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:480px) {
    .soon-box h1 {
        font-size: 2.4rem
    }
}


/* =========================
   Venues Page - Card Layout
========================= */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.venue-card {
    display: flex;
    flex-direction: column;
    background: var(--soft-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.venue-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--deep-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.venue-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.8rem;
}

.venue-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 0.8rem;
}

.venue-description {
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.venue-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid var(--cream);
    margin-top: auto;
}

.venue-capacity {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
}

.view-details {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.view-details:hover {
    color: var(--dark-gold);
}

/* Venue Hero */
.venue-hero {
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(45, 49, 66, 0.75)),
        url('../image/3.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.venue-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.venue-hero-content p {
    font-size: 1.2rem;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Venues Responsive ---- */
@media (max-width: 1024px) {
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .venue-hero-content h1 {
        font-size: 2.5rem;
    }

    .venue-footer {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .venue-hero-content h1 {
        font-size: 2rem;
    }

    .venue-image {
        height: 200px;
    }

    .venue-content {
        padding: 1.2rem;
    }
}

/* ============================================================
   INDEX2.HTML - OUR SIGNATURE VENUES HEADING ALIGNMENT FIX
   Forcing headings to align perfectly from the top
   ============================================================ */

.venue-card-v2 .venue-overlay {
    justify-content: flex-start !important;
    padding-top: 15rem !important;
    /* Forces all headings to start at the same vertical offset */
}

.venue-card-v2 h3 {
    margin-top: 0 !important;
    margin-bottom: 0.8rem !important;
}

.venue-card-v2 p {
    opacity: 1 !important;
    transform: translateY(0) !important;
    height: auto !important;
    margin-bottom: 1.5rem !important;
}

.venue-card-v2 .venue-capacity-badge {
    margin-top: auto !important;
    /* Pushes the badge to the very bottom regardless of content height */
}