* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --text-muted: #666666;
    --accent: #333333;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   HEADER & NAVIGATION - CENTERED
   ============================================ */
header {
    padding: 0.75rem 2rem;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 100%);
}

.primary-menu {
    width: 100%;
}

.primary-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-menu li {
    display: inline-block;
}

.primary-menu a {
    text-decoration: none;
    color: #000000;
    font-family: 'HelveticaNeueBold', Helvetica, Arial, serif;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-color);
    transition: width 0.3s ease;
}



.primary-menu a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.primary-menu a.active {
    font-weight: bold;
    text-decoration: underline;
}

/* ============================================
   MAIN / HERO SECTION
   ============================================ */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 100vh;
}

/* For pages with bio-content, align to top and remove min-height */
main:has(.bio-content) {
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ============================================
   BIO CONTENT
   ============================================ */
.bio-content {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'HelveticaNeueBold', Helvetica, Arial, serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #000000;
}

.bio-content p {
    margin-bottom: 1.5rem;
}

.bio-content a {
    color: #666666;
    text-decoration: none;
    border-bottom: 1px dotted;
    transition: color 0.3s ease;
}

.bio-content a:hover {
    color: #000000;
    border-bottom: none;
}

.bio-content .streaming-links {
    line-height: 2;
}

.bio-content .social-inline {
    color: #666666;
}

.bio-content strong {
    color: #000000;
}

.bio-content .press-list {
    list-style: none;
    padding: 0;
}

.bio-content .press-list li {
    margin-bottom: 0.75rem;
}

.bio-content header {
    position: static;
    padding: 0;
    background: none;
    width: auto;
}

.bio-content h1 {
    font-family: 'HelveticaNeueBold', Helvetica, Arial, serif;
    font-size: 2.0625rem; /* 33px */
    font-weight: bold;
    margin-bottom: 0.75rem;
    text-align: left;
}

/* ============================================
   FOOTER & SOCIAL LINKS - PINNED TO BOTTOM
   ============================================ */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 2rem;
    text-align: center;
    background: linear-gradient(to top, var(--bg-color) 0%, var(--bg-color) 50%, transparent 100%);
    z-index: 100;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    color: #666666;
    font-family: 'HelveticaNeueBold', Helvetica, Arial, serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-color);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem;
    }
    
    .primary-menu ul {
        gap: 1.5rem;
    }
    
    .primary-menu a {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }
    
    .artist-name {
        font-size: clamp(3rem, 20vw, 6rem);
    }
    
    .tagline {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
    }
    
    .social-links {
        gap: 1.25rem;
    }
    
    .social-links a {
        font-size: 0.65rem;
    }
    
    main {
        padding: 2rem 1rem;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .bio-content {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    /* Make embedded iframes responsive */
    .bio-content iframe {
        max-width: 100%;
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .primary-menu ul {
        gap: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    main {
        padding: 1.5rem 0.75rem;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .bio-content iframe {
        min-height: 352px;
    }
}
