/* ── Akers Vokalensemble · B variant ───────────────────────────────────────
   Dark editorial theme. Cormorant Garamond (display) + Source Sans 3 (body)
   + Courier Prime (programme lists). Dancing Script for logo approximation.
   ────────────────────────────────────────────────────────────────────────── */

:root {
    --bg:           #0f0f11;
    --bg-alt:       #161619;
    --bg-raised:    #1c1c20;
    --text:         #e8e3dc;
    --text-muted:   #7a7570;
    --text-dim:     #3e3c38;
    --primary:      #B02E4B;
    --primary-hi:   #cc3a5a;
    --accent-y:     #F4D644;
    --accent-g:     #A3CB60;
    --accent-b:     #0D87A6;
    --border:       rgba(232, 227, 220, 0.07);
    --border-md:    rgba(232, 227, 220, 0.13);

    --font-disp:    'Cormorant Garamond', Georgia, serif;
    --font-body:    'Source Sans 3', system-ui, sans-serif;
    --font-mono:    'Courier Prime', monospace;
    --font-script:  'Dancing Script', cursive;

    --container:    1200px;
    --section-pad:  6rem;
}

/* ── Reset ── */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.2s, opacity 0.2s; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.hidden { display: none !important; }

/* ── Shared typographic atoms ── */

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--font-disp);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 2.5rem;
}

/* ── Navbar ── */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 15, 17, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 60px;
    gap: 1rem;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-script {
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    user-select: none;
}

.logo-wordmark {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.35;
    color: rgba(232, 227, 220, 0.45);
    text-transform: uppercase;
}

/* Nav centre links */

.nav-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(232, 227, 220, 0.5);
    transition: color 0.2s;
}

.nav-link:hover { color: var(--text); }

/* Nav right: icons + language */

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    color: rgba(232, 227, 220, 0.45);
    transition: color 0.2s;
}

.nav-icon:hover { color: var(--text); }

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-left: 0.25rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(232, 227, 220, 0.35);
    padding: 0;
    transition: color 0.2s;
}

.lang-btn.active { color: var(--text); }

.lang-sep {
    color: rgba(232, 227, 220, 0.2);
    font-size: 0.7rem;
}

/* ── Hero ── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Strong fade from bottom, subtle at top so photos show */
    background: linear-gradient(
        to top,
        rgba(15, 15, 17, 0.97) 0%,
        rgba(15, 15, 17, 0.55) 35%,
        rgba(15, 15, 17, 0.15) 70%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 5rem;
    padding-top: 0;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-disp);
    font-size: clamp(4rem, 11vw, 8.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-family: var(--font-disp);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-style: italic;
    color: rgba(232, 227, 220, 0.55);
    margin-bottom: 2.5rem;
}

.btn-hero {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    border: 1px solid rgba(232, 227, 220, 0.25);
    padding: 0.85rem 2.25rem;
    transition: background 0.2s, border-color 0.2s;
}

.btn-hero:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* ── Featured Concert (raspberry red) ── */

.featured-concert {
    background: var(--primary);
    padding: var(--section-pad) 0;
    color: white;
}

.concert-split {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    align-items: center;
}

.concert-date-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 4rem;
}

.date-day {
    font-family: var(--font-disp);
    font-size: clamp(6rem, 12vw, 10rem);
    font-weight: 300;
    line-height: 0.85;
    color: white;
}

.date-month {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.4rem;
}

.date-year {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.2rem;
}

.concert-details .eyebrow {
    color: rgba(255, 255, 255, 0.55);
}

.concert-name {
    font-family: var(--font-disp);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    color: white;
    margin-bottom: 0.5rem;
}

.concert-venue {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

.concert-desc {
    font-family: var(--font-disp);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.tickets-note {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1.5rem;
    display: inline-block;
}

/* ── About ── */

.about {
    background: var(--bg-alt);
    padding: var(--section-pad) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text p {
    color: rgba(232, 227, 220, 0.72);
    margin-bottom: 1.25rem;
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
}

/* ── Members ── */

.members {
    background: var(--bg);
    padding: var(--section-pad) 0;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.voice-heading {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-md);
    margin-bottom: 1.25rem;
}

.voice-list li {
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--border);
}

/* ── På Gång ── */

.pa-gang {
    background: var(--bg-raised);
    padding: var(--section-pad) 0;
}

.pa-gang-content {
    max-width: 680px;
}

.pa-gang-content p {
    color: rgba(232, 227, 220, 0.72);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.pa-gang-cta {
    font-family: var(--font-disp);
    font-style: italic;
    font-size: 1.25rem !important;
    color: var(--text) !important;
    margin-top: 0.5rem;
}

/* ── Press ── */

.press {
    background: var(--bg);
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border);
}

.press-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.press-source {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.press-headline {
    font-family: var(--font-disp);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

.press-lead {
    font-size: 0.95rem;
    color: rgba(232, 227, 220, 0.62);
    line-height: 1.75;
}

.press-quotes {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.press-quote {
    border-left: 2px solid var(--primary);
    padding-left: 1.5rem;
}

.press-quote p {
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(232, 227, 220, 0.85);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.press-quote cite {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-style: normal;
}

@media (width <= 768px) {
    .press-feature {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── History ── */

.history {
    background: var(--bg-alt);
    padding: var(--section-pad) 0;
}

.history-event {
    margin-top: 1rem;
}

.history-header {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.history-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.2rem;
}

.history-date .date-day {
    font-family: var(--font-disp);
    font-size: 3.25rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary);
}

.history-date .date-month {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.history-date .date-year {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    margin-top: 0.15rem;
}

.history-title {
    font-family: var(--font-disp);
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.history-venue {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    letter-spacing: 0.04em;
}

.history-desc {
    color: rgba(232, 227, 220, 0.62);
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
    line-height: 1.75;
}

/* Programme list — editorial two-column */

.programme-list {
    counter-reset: programme;
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 3rem;
    border-top: 1px solid var(--border-md);
    padding-top: 1.75rem;
}

.programme-list li {
    counter-increment: programme;
    position: relative;
    padding: 0.55rem 0 0.55rem 1.6rem;
    border-bottom: 1px solid var(--border);
    break-inside: avoid;
    display: flex;
    flex-direction: column;
}

.programme-list li::before {
    content: counter(programme);
    position: absolute;
    left: 0;
    top: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.song-title {
    font-family: var(--font-mono);
    font-size: 0.83rem;
    color: var(--text);
    line-height: 1.4;
}

.song-credit {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-dim);
    margin-top: 0.1rem;
    line-height: 1.4;
}

/* Photo gallery */

.history-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 0.4rem;
}

.history-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: opacity 0.3s;
}

.history-gallery img:hover { opacity: 0.8; }

/* ── Footer ── */

.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2.5rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo-script {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-sub {
    font-family: var(--font-disp);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
}

.footer-contact a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-contact a:hover { color: var(--text); }

.footer-socials {
    display: flex;
    gap: 1.75rem;
}

.copyright {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

/* ── Responsive ── */

@media (width <= 768px) {

    .nav-container {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 0.95;
    }

    .concert-split {
        grid-template-columns: 1fr;
    }

    .concert-date-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        flex-direction: row;
        align-items: baseline;
        gap: 1rem;
    }

    .date-day { font-size: 5rem; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-photo { order: -1; }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .history-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .history-date {
        flex-direction: row;
        align-items: baseline;
        gap: 0.6rem;
    }

    .programme-list {
        column-count: 1;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-contact {
        align-items: flex-start;
    }
}
