/* 1. Global Setup - Exact Sync with Wedding */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body { 
    font-family: 'Inter', sans-serif; 
    background-color: #fff; 
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden; 
}

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

.back-btn, .nav-link {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

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

.social-nav {
    justify-self: end;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-divider { color: #eee; margin: 0 5px; }

.nav-brand-box {
    position: relative;
    background-color: transparent; 
    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;
    top: 0; left: 0; right: 0; bottom: 0; 
    border: 1px solid #000;
    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: #1a1a1a;
    margin-right: -0.2em;
    line-height: 1; 
}

/* 3. Intro Section - Sync with Wedding-Intro */
.performer-intro {
    padding: 100px 20px 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

/* Gold Accent for specific subtitles */
.gold-accent {
    color: #d4af37 !important;
}

/* Matched to wedding-intro h2 */
.italic-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    margin: 20px 0;
    color: #000;
}

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

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

/* 4. Shows Container - Layout Restored */
.shows-container {
    max-width: 1150px; 
    margin: 40px auto 100px auto; 
    padding: 0 40px;
}

.show-entry {
    display: flex;
    align-items: center; 
    gap: 80px; 
    margin-bottom: 100px; 
}

.show-entry.reverse {
    flex-direction: row-reverse;
}

.show-content, .show-image {
    flex: 1;
}

.show-image img {
    width: 100%;
    aspect-ratio: 3 / 2; 
    object-fit: cover;
    border-radius: 12px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* Matched to Wedding intro-text h3 */
.show-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; 
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
}

.show-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.show-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    border-bottom: 1px solid #d4af37;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.show-link:hover { color: #d4af37; }

/* 5. Mobile Sync */
@media (max-width: 900px) {
    .sub-nav { padding: 15px 20px; }
    .social-nav { display: none; }
    .show-entry, .show-entry.reverse { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px;
    }
    .show-image { width: 100%; }
    .performer-intro { padding: 60px 20px 40px 20px; }
    .italic-heading { font-size: 32px; }
}

.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;
    }
}