/* 1. Global Setup (Dark Mode) */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #1a1a1a; /* Dark Charcoal */
    color: #f4f1ea; /* Cream text */
    line-height: 1.6;
    overflow-x: hidden; 
}

/* 2. Navigation & Framed Logo */
.sub-nav {
    padding: 20px 40px;
    display: grid; 
    grid-template-columns: 1fr auto 1fr;
    align-items: center; /* This is the vertical anchor */
    position: sticky;
    top: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

/* Grouped Social Links on the Right */
.social-nav {
    justify-self: end;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Unified Link Styling */
.nav-link, .back-btn {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    /* Forces the text to have no extra vertical 'air' */
    display: flex;
    align-items: center;
    line-height: 1; 
}

.back-btn {
    justify-self: start;
}

.nav-divider {
    color: #444;
    font-size: 12px;
    user-select: none;
    line-height: 1;
}

.nav-link:hover, .back-btn:hover { 
    color: #d4af37; 
}

.nav-brand-box {
    position: relative;
    background-color: transparent; 
    /* The Nuclear 44px Height */
    height: 44px; 
    padding: 0 30px; 
    border: none; 
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.nav-brand-box::after {
    content: "";
    position: absolute;
    /* We use 0 to hug the forced 44px height perfectly */
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid #d4af37; /* Signature Gold Frame */
    border-radius: 5px;
    pointer-events: none;
}

.nav-brand-box h2 {
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 16px;
    font-weight: 600;
    color: #f4f1ea; /* Cream text */
    margin-right: -0.2em; /* The Centering Trick */
    line-height: 1;
}

/* 3. Intro Section */
.jazz-intro {
    /* This controls the gap between NAV and LOGO */
    padding: 25px 20px 0 20px; 
    max-width: 800px;
    margin: 0 auto 60px auto;   
    text-align: center;
}

.intro-logo {
    display: block;
    /* 0 top, auto sides, 25px bottom */
    /* This makes the gap below the logo match the 25px padding above it */
    margin: 0 auto 25px auto; 
    max-width: 240px;         
    height: auto;
    transform: translateX(10px); 
}

.jazz-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    margin: 0 0 20px 0; /* Keep this at 0 top */
    color: #f4f1ea;
}

.intro-divider {
    width: 40px;
    height: 1px;
    background: #d4af37;
    margin: 30px auto;
}

.intro-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Notable Venues Styles */
.noted-venues {
    padding: 0 20px 80px 20px;  /* Kept the generous 80px gap before the video */
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.venue-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.venue-list span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f4f1ea;
    opacity: 0.7;
}

.venue-list .dot {
    color: #d4af37;
    opacity: 1;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .sub-nav { padding: 15px 20px; }
    .insta-nav { display: none; }
}
/* Reviews Section */
.reviews-section {
    padding: 80px 20px 40px 20px; /* Reduced bottom padding from 80px to 40px */
    background-color: #1a1a1a;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.reviews-grid {
    display: grid;
    /* This creates 2 columns on large screens and 1 on small screens */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.review-card {
    padding: 0 20px;
    text-align: center;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: #f4f1ea;
    margin-bottom: 25px;
}

.review-author {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.3em;
    color: #d4af37; /* Honey Gold */
    opacity: 0.9;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .review-text {
        font-size: 18px;
    }
}

/* Video Section - Exact match to Wedding layout */
.jazz-video-section {
    max-width: 900px;
    margin: 0 auto 80px auto; 
    padding: 0 20px;
}

.video-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    /* Moody shadow for Jazz, but same size as Wedding */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    line-height: 0;
}

video { 
    width: 100%; 
    /* Force the box to be 16:9, matching standard widescreen promos */
    aspect-ratio: 16 / 9; 
    /* This is the magic part: it crops the video to fit the 16:9 box 
       without stretching or showing black bars */
    object-fit: cover; 
    display: block; 
}

/* Optional: Subtle hover effect */
.video-container:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
    transition: box-shadow 0.5s ease;
}

@media (max-width: 768px) {
    .jazz-video-section {
        padding: 40px 15px;
    }
}

/* 7. Contact Section - Clean & Centered */
.jazz-contact {
    margin: 60px auto; 
    padding: 60px 20px; 
    border-top: 1px solid rgba(212, 175, 55, 0.1); 
    text-align: center;
    max-width: 1000px; /* Section width */
}

/* Unified Subtitle Style for all Sections */
.noted-venues .subtitle,
.reviews-section .subtitle,
.jazz-contact .subtitle {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    color: #d4af37; /* Honey Gold */
    margin-bottom: 15px;
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.jazz-contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: #f4f1ea;
    margin: 0 0 15px 0;
    letter-spacing: normal;
}

.contact-intro {
    font-size: 14px;
    color: #f4f1ea;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 30px auto; /* This controls the gap to the boxes */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    max-width: 600px; /* This makes the boxes look elegant/narrow */
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* High Contrast Bold Styling */
.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #252525;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600 !important; 
    border-radius: 4px;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

/* Placeholder Brightness */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}

/* Submit Button - Style Matched to Wedding / Colors for Jazz */
.contact-form .submit-btn {
    display: inline-block;
    cursor: pointer;
    align-self: center;
    margin-top: 25px;
    width: 100%;
    max-width: 280px;
    
    /* Initial State: Solid Gold */
    background-color: #d4af37;
    color: #1a1a1a;
    border: 1px solid #d4af37;
    
    padding: 18px 40px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 600;
    
    /* Smooth transition for all properties */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover State: Transparent Background */
.contact-form .submit-btn:hover {
    background-color: transparent; /* Makes it go to the page background color */
    color: #d4af37;               /* Text turns gold */
    transform: translateY(-2px);   /* Subtle lift */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15); /* Subtle gold glow */
}

.site-footer {
    background-color: #1a1a1a; 
    color: #b0b0b0; 
    padding: 20px 15px; 
    font-size: 0.85rem; 
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

/* Styled credit line */
.footer-credits {
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* This subtly accents the label 'Visuals by:' */
.footer-credits::first-line {
    color: #ffffff; 
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.legal-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

.copyright {
    margin: 0;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom {
        flex-direction: row;
        width: auto;
        gap: 20px;
    }
}

/* Keep the perfect 70px spacing gap */
.jazz-contact {
    padding-bottom: 70px !important; 
    margin-bottom: 0 !important;
}

.jazz-contact .contact-form {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Revert footer colors back to the standard, crisp look */
.site-footer {
    padding-top: 20px !important;
    background-color: #1a1a1a !important; /* Original dark charcoal */
    color: #b0b0b0 !important; /* Original soft gray text */
}

/* Reset the credits and link text colors back to default */
.site-footer .footer-credits {
    color: #ffffff !important; /* White text accent for the names line */
}

.site-footer .legal-links a {
    color: #888888 !important;
}

.site-footer .legal-links a:hover {
    color: #ffffff !important;
}