/* ===== Shared Interior Styles ===== */

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ================================================
   FESTIVAL PAGE
   ================================================ */

.festival-page {
    background: #121010;
    color: #fff;
}

/* Hero */
.festival-hero {
    position: relative;
    height: 55vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.festival-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    filter: grayscale(100%) brightness(0.3);
}

.festival-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.festival-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 40px;
    color: #fff;
}

.festival-hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 10px;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
}

.festival-hero-content p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    line-height: 2;
}

/* Lineup Wall */
.festival-lineup-wall {
    padding: 20px 0 40px;
}

.poster-year {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.poster-year:last-child {
    border-bottom: none;
}

.poster-year-header {
    margin-bottom: 20px;
}

.poster-year-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    margin-bottom: 2px;
}

.poster-year-meta {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c9a96e;
    font-weight: 500;
}

.poster-note {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Band names container */
.poster-names {
    max-width: 820px;
    margin: 0 auto;
}

/* Headliners — each on own line */
.tier1 {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.3;
    margin-bottom: 2px;
}

/* Mid-tier — inline, separated by dots */
.tier2 {
    display: inline;
    font-size: clamp(0.82rem, 1.6vw, 1.05rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 2;
}

.tier2::after {
    content: " \00b7 ";
    color: rgba(255, 255, 255, 0.2);
}

.tier2:last-of-type::after {
    content: "";
}

/* Spacer between tier2 and tier3 */
.tier2 + .tier3::before {
    content: "";
    display: block;
    height: 20px;
}

/* Smaller acts — inline, separated by dots */
.tier3 {
    display: inline;
    font-size: clamp(0.56rem, 0.9vw, 0.68rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 2.2;
}

.tier3::after {
    content: " \00b7 ";
    color: rgba(255, 255, 255, 0.12);
}

.tier3:last-child::after {
    content: "";
}

/* No separators on headliners */
.tier1::after {
    display: none;
}

/* Festival nav */
.festival-page .nav {
    background: rgba(18, 16, 16, 0.9);
    backdrop-filter: blur(8px);
}

/* ================================================
   TASTE TALKS PAGE
   ================================================ */

.tt-page {
    background: #fff;
    color: #2a2521;
}

.tt-page .nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.tt-page .nav-logo,
.tt-page .nav-menu a {
    color: #3c342f;
}

.tt-page .nav-menu a:hover {
    color: #c9a96e;
}

/* Photo strip */
.tt-photos {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
    background: #3c342f;
}

.tt-photos::-webkit-scrollbar {
    display: none;
}

.tt-photos img {
    height: 200px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

/* Hero */
.tt-hero {
    text-align: center;
    padding: 120px 32px 60px;
    background: #fff;
}

.tt-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #3c342f;
    margin-bottom: 12px;
}

.tt-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #8a7a6e;
    margin-bottom: 8px;
}

.tt-sub {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a96e;
}

/* Intro */
.tt-intro {
    padding: 0 0 64px;
}

.tt-intro p {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    line-height: 2;
    color: #6b5f56;
    font-weight: 300;
}

/* Years */
.tt-years {
    padding: 0 0 80px;
}

.tt-year {
    max-width: 680px;
    margin: 0 auto 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #ece6de;
}

.tt-year:last-child {
    border-bottom: none;
}

.tt-year h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #3c342f;
    margin-bottom: 4px;
}

.tt-location {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 12px;
}

.tt-curator {
    font-size: 0.95rem;
    color: #3c342f;
    margin-bottom: 12px;
}

.tt-curator em {
    color: #8a7a6e;
}

.tt-year > p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #6b5f56;
    margin-bottom: 12px;
}

.tt-event-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3c342f;
    margin: 20px 0 6px;
}

.tt-names {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #5a4d44;
}

.tt-names strong {
    color: #2a2521;
}

.tt-venues {
    font-size: 0.75rem;
    color: #8a7a6e;
    font-style: italic;
    margin-top: 16px;
}

/* Tastys */
.tt-tastys {
    max-width: 680px;
    margin: 0 auto;
    padding-top: 56px;
    border-top: 1px solid #ece6de;
}

.tt-tastys h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #3c342f;
    margin-bottom: 4px;
}

.tt-tastys-sub {
    font-size: 0.8rem;
    color: #8a7a6e;
    margin-bottom: 32px;
}

.tt-tastys h3 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a96e;
    margin: 24px 0 12px;
}

.tt-tastys h3:first-of-type {
    margin-top: 0;
}

.tt-tastys ul {
    list-style: none;
    padding: 0;
}

.tt-tastys li {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #6b5f56;
    padding: 6px 0;
}

.tt-tastys li strong {
    color: #3c342f;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    .festival-hero {
        height: 45vh;
        min-height: 300px;
    }

    .poster-year {
        padding: 48px 24px;
    }

    .poster-year-num {
        font-size: 3rem;
    }

    .tt-hero {
        padding: 100px 24px 40px;
    }

    .tt-photos img {
        height: 150px;
    }
}
