/* 1. Global Setup - Exact Sync with Site Brand */
* { 
    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 */
.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 - Exact Sync with Wedding/Performer Spacing */
.artist-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;
    margin-bottom: 10px;
    display: block;
}

.gold-accent {
    color: #d4af37;
}

/* Matches Wedding Intro Heading Style exactly */
.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 5px 0;
    color: #000;
}

.ep-status {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 15px;
}

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

.artist-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    letter-spacing: 0.01em;
    max-width: 650px; /* Slightly widened to gracefully balance the longer text block */
    margin: 0 auto;
}

/* 4. Mobile Adjustments */
@media (max-width: 900px) {
    .sub-nav { padding: 15px 20px; }
    .social-nav { display: none; }
    .artist-intro { padding: 60px 20px 40px 20px; }
}

.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;
    }
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.content-wrapper {
    flex: 1;
}


/* --- Isolated Layout Adjustments ONLY for the Bio Page --- */

/* Force the main layout containers to expand ONLY on the bio page */
.bio-page-layout .content-wrapper,
.bio-page-layout .artist-intro,
.bio-page-layout .artist-intro .intro-content {
    max-width: 1200px !important; 
    width: 90% !important; 
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ensure the text blocks stretch out across the space ONLY on the bio page */
.bio-page-layout .artist-intro .artist-description {
    max-width: 100% !important; 
    width: 100% !important;
    text-align: left; 
    line-height: 1.65 !important; 
}

/* Keep headers looking sharp over the expanded text ONLY on the bio page */
.bio-page-layout .artist-intro .italic-heading,
.bio-page-layout .artist-intro .subtitle {
    text-align: left;
}

/* Align your visual accent line to the left ONLY on the bio page */
.bio-page-layout .artist-intro .intro-divider {
    margin: 20px 0 !important; 
}