/* ═══════════════════════════════════════════════════════════════
   ROYAL THAI SPORTSBAR — style.css
   Design System: Dark burgundy + warm gold + off-white
   Fonts: Playfair Display (headings) · Inter (body)
═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
    --color-bg: #0D0D0D;
    --color-surface: #161616;
    --color-surface2: #1F1F1F;
    --color-border: rgba(201, 168, 76, 0.15);
    --color-primary: #8B1A1A;
    --color-gold: #C9A84C;
    --color-gold-dim: rgba(201, 168, 76, 0.65);
    --color-text: #F5F0E8;
    --color-muted: rgba(245, 240, 232, 0.55);
    --color-overlay: rgba(10, 5, 0, 0.68);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius: 8px;
    --radius-lg: 14px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 28px rgba(0, 0, 0, 0.55);

    --container: 1140px;
    --nav-height: 72px;
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

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

/* ── SECTION SHARED ────────────────────────────────────────── */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.section-title span {
    color: var(--color-gold);
}

.section-sub {
    margin-top: 16px;
    color: var(--color-muted);
    max-width: 560px;
    margin-inline: auto;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold);
    color: #0D0D0D;
}

.btn-primary:hover {
    background: #e0bb5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #0D0D0D;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Split featured image (biljard + shuffleboard) ────────────── */
.event-img-split {
    flex: 1;
    display: flex;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.event-img-half {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: flex 0.4s ease;
}

.event-img-half:hover {
    flex: 1.2;
}

.event-img-split-divider {
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    opacity: 0.7;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.event-img-half::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%);
}

.event-img-half--biljard {
    background-image: url('images/biljard.jpg');
    background-position: center 40%;
}

.event-img-half--shuffleboard {
    background-image: url('https://static.wixstatic.com/media/e10f32_8682d359f7c54677a05fb19a47278e68~mv2.jpg/v1/fill/w_800,h_600,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/e10f32_8682d359f7c54677a05fb19a47278e68~mv2.jpg');
    background-position: center 30%;
}

/* Label overlays on each half */
.event-img-half--biljard::before,
.event-img-half--shuffleboard::before {
    content: attr(data-label);
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(0,0,0,0.55);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.3);
    white-space: nowrap;
    z-index: 3;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay for mobile */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.nav-overlay.visible {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1562565652-a0d8f0c59eb4?w=1600&auto=format&fit=crop&q=85');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 5, 0, 0.45) 0%,
            rgba(10, 5, 0, 0.72) 60%,
            rgba(10, 5, 0, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-text);
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--color-gold);
    display: block;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(245, 240, 232, 0.82);
    max-width: 500px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}

.foodora-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    font-size: 0.9rem;
    color: var(--color-text);
    transition: var(--transition);
}

.foodora-badge:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--color-gold-dim);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--color-muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: floatDown 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
    width: 18px;
    height: 18px;
}

@keyframes floatDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateX(-50%) translateY(6px);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MENY
═══════════════════════════════════════════════════════════════ */
.meny-section {
    background: var(--color-bg);
}

.meny-section .section-header {
    margin-bottom: 48px;
}

/* Accordion */
.accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.accordion-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.accordion-item.is-open {
    border-color: rgba(201, 168, 76, 0.4);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    text-align: left;
    background: transparent;
    color: var(--color-text);
    transition: background var(--transition);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.accordion-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    flex: 1;
}

.accordion-count {
    font-size: 0.78rem;
    color: var(--color-gold-dim);
    letter-spacing: 0.05em;
    margin-right: 8px;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.accordion-item.is-open .accordion-icon {
    transform: rotate(180deg);
}

/* Accordion body with CSS height animation */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.is-open .accordion-body {
    max-height: 2000px;
}

.menu-list {
    list-style: none;
    padding: 0 24px 20px;
    border-top: 1px solid var(--color-border);
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-num {
    font-size: 0.78rem;
    color: var(--color-gold-dim);
    min-width: 28px;
    flex-shrink: 0;
}

.menu-name {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-text);
}

.menu-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

.meny-disclaimer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-muted);
    margin-top: 36px;
    max-width: 780px;
    margin-inline: auto;
}

.meny-foodora {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    padding: 40px 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    max-width: 480px;
    margin-inline: auto;
}

.meny-foodora p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
}

/* ═══════════════════════════════════════════════════════════════
   OM OSS
═══════════════════════════════════════════════════════════════ */
.om-oss-section {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.om-oss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.om-oss-text .section-eyebrow {
    text-align: left;
}

.om-oss-text .section-title {
    text-align: left;
}

.om-oss-body {
    margin-top: 24px;
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.om-oss-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.om-img-main,
.om-img-small {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.om-img-main {
    height: 260px;
}

.om-img-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.om-img-small {
    height: 140px;
}

.om-img-main img,
.om-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Gemenskap/celebration photo — portrait shot, focus on people's upper bodies */
.om-img-small img[src*="e10f32_869220ff"] {
    object-position: center 25%;
}

.om-img-main:hover img,
.om-img-small:hover img {
    transform: scale(1.04);
}

.img-label {
    font-size: 0.78rem;
    color: var(--color-gold-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   HERO DELIVERY NOTE
═══════════════════════════════════════════════════════════════ */
.hero-delivery-note {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   ERBJUDANDEN (Lunch & Afterwork)
═══════════════════════════════════════════════════════════════ */
.erbjudanden-section {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.erbjudanden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.erbjudande-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.erbjudande-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 168, 76, 0.35);
}

.erbjudande-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.erbjudande-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.erbjudande-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1;
}

.erbjudande-price span {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 600;
}

.erbjudande-time-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-text);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--color-border);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.erbjudande-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-top: 12px;
}

.erbjudande-list {
    list-style: none;
    text-align: left;
    margin: 16px 0 8px;
}

.erbjudande-list li {
    font-size: 0.88rem;
    color: var(--color-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    padding-left: 16px;
}

.erbjudande-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
}

.erbjudande-note {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.35);
    font-style: italic;
    margin-top: 12px;
}

.erbjudande-offers {
    list-style: none;
    margin: 16px 0;
}

.erbjudande-offers li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.erbjudande-offers li:last-child {
    border-bottom: none;
}

.offer-label {
    font-size: 0.95rem;
    color: var(--color-text);
}

.offer-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
    white-space: nowrap;
}

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

/* ═══════════════════════════════════════════════════════════════
   EVENEMANG
═══════════════════════════════════════════════════════════════ */
.evenemang-section {
    background: var(--color-bg);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Featured biljard card — full width on top */
.event-card--featured {
    display: flex;
    flex-direction: row;
    min-height: 320px;
}

.event-card--featured .event-img {
    flex: 1;
    height: auto;
    min-height: 320px;
}

.event-card--featured .event-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0 0 320px;
    padding: 36px;
}

.event-card--featured .event-title {
    font-size: 1.7rem;
    margin-bottom: 16px;
}

.event-card--featured .event-desc {
    font-size: 1rem;
    margin-bottom: 24px;
}

/* Row of two cards below */
.events-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.event-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 168, 76, 0.35);
}

.event-img {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* Real event photos from the Royal Thai SportsBar */
.event-img--biljard {
    background-image: url('images/biljard.jpg');
    background-color: #1a1210;
    background-position: center 35%;
}

.event-img--blackjack {
    background-image: url('images/blackjack.jpg');
    background-color: #0d1010;
    background-position: center 65%;
    background-size: 120%;
}

.event-img--karaoke {
    background-image: url('https://static.wixstatic.com/media/e10f32_fa8fbf1a85e5420cb51e9599e3eabc5cf000.jpg/v1/fill/w_800,h_600,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/e10f32_fa8fbf1a85e5420cb51e9599e3eabc5cf000.jpg');
    background-color: #1a0d1a;
    background-position: center 30%;
}

.event-body {
    padding: 24px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.event-desc {
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.event-time {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    color: var(--color-text);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--color-border);
    padding: 5px 12px;
    border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════════════════════ */
.kontakt-section {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.kontakt-block h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kontakt-block p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.8;
}

.kontakt-block a {
    color: var(--color-muted);
    transition: color var(--transition);
}

.kontakt-block a:hover {
    color: var(--color-gold);
}

/* Hours table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 7px 0;
    font-size: 0.92rem;
    color: var(--color-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-text);
    font-weight: 500;
}

.hours-table tr.closed td {
    color: rgba(245, 240, 232, 0.3);
}

.hours-table tr.closed td:last-child {
    color: rgba(245, 240, 232, 0.3);
}

.kontakt-map {
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.kontakt-map iframe {
    width: 100%;
    height: 100%;
    filter: invert(0.92) hue-rotate(180deg) brightness(0.85) contrast(0.9);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: #0A0A0A;
    border-top: 1px solid var(--color-border);
    padding: 40px 24px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.footer-logo span {
    color: var(--color-gold);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.footer-info a {
    transition: color var(--transition);
}

.footer-info a:hover {
    color: var(--color-gold);
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.25);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS — Fade-in on scroll
═══════════════════════════════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet & Mobile
═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
    .event-card--featured {
        flex-direction: column;
    }

    .event-card--featured .event-body {
        flex: none;
        padding: 24px;
    }

    .events-row {
        grid-template-columns: 1fr 1fr;
    }

    .om-oss-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-map {
        height: 320px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --nav-height: 60px;
    }

    .section {
        padding: 72px 0;
    }

    /* Nav — mobile */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100svh;
        background: #111;
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 80px 32px 40px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
    }

    .nav-links.is-open {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--color-border);
        letter-spacing: 0.08em;
    }

    .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    /* Events */
    .events-row {
        grid-template-columns: 1fr;
    }

    /* Om Oss */
    .om-img-grid {
        grid-template-columns: 1fr;
    }

    /* Accordion */
    .accordion-header {
        padding: 16px 18px;
    }

    .accordion-name {
        font-size: 0.95rem;
    }

    .menu-list {
        padding: 0 18px 16px;
    }

    /* Kontakt */
    .kontakt-grid {
        gap: 36px;
    }
}