/* Inn Seit'n Big Band — site styles
   Palette sampled from the band's own logo (facebook.com/InnSeitnBigBand):
   dark background, warm white, green + lavender accent. */

:root {
    --bg: #161616;
    --bg-alt: #1e1e1e;
    --bg-card: #232323;
    --text: #f5f3ee;
    --text-muted: #aca8a1;
    --green: #8bc05b;
    --purple: #ac9acc;
    --border: rgba(255, 255, 255, 0.09);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    --radius: 14px;
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: "Oswald", "Segoe UI", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a {
    color: var(--green);
    text-decoration: none;
}

a:hover { color: var(--purple); }

img { max-width: 100%; display: block; }

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

.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.eyebrow {
    display: inline-block;
    color: var(--purple);
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    margin-bottom: 0.6em;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: var(--green);
    color: #14170f;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    padding: 0.75em 1.6em;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover {
    background: var(--purple);
    color: #17141f;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #0f0f0f;
    border-top: 1px solid var(--border);
    padding: 18px 24px;
    display: none;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.cookie-banner.is-visible { display: block; }

.cookie-banner__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 70ch;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__actions button {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    padding: 0.6em 1.3em;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
}

#cookie-accept {
    background: var(--green);
    color: #14170f;
    border-color: var(--green);
}

/* ---------- Header / Nav ---------- */
.topbar {
    background: #0f0f0f;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 8px;
}

.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--green); }

.topbar__social {
    display: flex;
    gap: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(22, 22, 22, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Oswald", sans-serif;
    color: var(--text);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.brand strong { display: block; text-transform: uppercase; }
.brand span { display: block; font-size: 0.7rem; color: var(--text-muted); text-transform: none; letter-spacing: 0.02em; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    padding: 8px 12px;
    font-size: 1.2rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    display: block;
    color: var(--text);
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a.is-active {
    background: var(--bg-card);
    color: var(--green);
}

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; align-items: center; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        border-bottom: 1px solid var(--border);
        display: none;
        padding: 8px;
    }
    .nav-menu.is-open { display: flex; }
    .nav-menu a { padding: 14px 16px; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 22%;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.35) 0%, rgba(15, 15, 15, 0.55) 55%, rgba(15, 15, 15, 0.96) 100%);
    z-index: -1;
}

.hero__content {
    padding: 60px 0 56px;
    max-width: 760px;
}

.hero__content p.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 1.2em;
}

.page-hero {
    padding: 64px 0 40px;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(circle at top left, rgba(139, 192, 91, 0.09), transparent 55%),
                radial-gradient(circle at bottom right, rgba(172, 154, 204, 0.09), transparent 55%);
}

/* ---------- Grids & cards ---------- */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.card__body { padding: 22px 24px; }

.card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #101010;
}

.card--noimg .card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #202020, #171717);
}

/* ---------- Show list (Live) — pattern modeled on jazzrauschbigband.de's
   "Upcoming Shows" list: date+time / title / city + venue, no ticket link. */
.show-list {
    display: flex;
    flex-direction: column;
}

.show-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.show-row:last-child { border-bottom: none; }

.show-row__date {
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

.show-row__time {
    margin-top: 4px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.show-row__title {
    margin: 0 0 8px;
    font-size: 1.3rem;
}

.show-row__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.show-row__tags { margin-top: 10px; }

.show-row__source {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
}

.tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(172, 154, 204, 0.16);
    color: var(--purple);
    margin: 2px 6px 2px 0;
}

.tag--cancelled {
    background: rgba(220, 90, 90, 0.16);
    color: #e08585;
}

@media (max-width: 640px) {
    .show-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- Band / leadership ---------- */
.leader {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: center;
}

.leader img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.leader-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.avatar-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--bg-card), #191919);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    font-size: 2.4rem;
    color: var(--purple);
}

@media (max-width: 640px) {
    .leader { grid-template-columns: 1fr; }
    .leader-gallery { max-width: 320px; margin: 0 auto; }
}

/* ---------- Guests table ---------- */
.guests-list {
    display: grid;
    gap: 12px;
}

.guest-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
}

.guest-row .guest-name {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.guest-row .guest-note {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.guest-row .guest-year {
    font-size: 0.8rem;
    color: var(--purple);
    justify-self: end;
}

@media (max-width: 640px) {
    .guest-row { grid-template-columns: 1fr; }
    .guest-row .guest-year { justify-self: start; }
}

/* ---------- Video ---------- */
.video-embed {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}

.video-embed iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.social-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 16px;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    border-color: var(--green);
}

.social-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.social-card.facebook .icon { background: rgba(139, 192, 91, 0.16); color: var(--green); }
.social-card.instagram .icon { background: rgba(172, 154, 204, 0.16); color: var(--purple); }

.social-card h3 { margin-bottom: 0.1em; color: var(--text); }
.social-card p { margin: 0; color: var(--text-muted); font-size: 0.9rem; }

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 10px;
}

.info-list li span.label {
    color: var(--text-muted);
    min-width: 90px;
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #101010;
    border-top: 1px solid var(--border);
    padding-top: 56px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-grid h4 {
    color: var(--text);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    margin-bottom: 1em;
}

.footer-grid p, .footer-grid li { color: var(--text-muted); font-size: 0.92rem; }

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid a { color: var(--text-muted); }
.footer-grid a:hover { color: var(--green); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: #14170f;
}

.impressum {
    padding: 32px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.impressum h4 {
    color: var(--text);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.8em;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.impressum p { margin: 0 0 0.4em; }

.footer-bottom {
    padding: 20px 0 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--green); }
