/* ============================================================
   HOPFENSTUBE – "Szene-Kneipe" v2
   Palette: Dunkelholz #130E07 · Amber #C8841A · Hopfengold #E8A825
            Kreide #F2E8D0 · Tafel #0E0A04
   Fonts: Rye · Caveat (handwritten) · Lato
   ============================================================ */

/* ── RESET & VARIABLES ─────────────────────────────────────── */
:root {
    --holz:          #130E07;
    --holz-mid:      #1C1208;
    --holz-hell:     #3D2410;
    --holz-brett:    #5C3D1E;
    --amber:         #C8841A;
    --amber-dark:    #9E6410;
    --amber-light:   #E8A825;
    --amber-glow:    #F5C842;
    --kreide:        #F2E8D0;
    --kreide-mid:    #DDD0B0;
    --kreide-dim:    rgba(242,232,208,0.55);
    --tafel:         #0E0A04;
    --weiss:         #FFFFFF;
    --papier:        #F5EFDF;
    --papier-alt:    #EDE4CC;
    --papier-dunkel: #E0D4B4;
    --border-holz:   rgba(200,132,26,0.2);
}

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

body {
    font-family: 'Lato', sans-serif;
    background: var(--holz);
    color: var(--kreide);
    line-height: 1.65;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

em {
    font-family: 'Caveat', cursive;
    font-style: italic;
    font-weight: 700;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 300;
    background: rgba(14,10,4,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--amber-dark);
    box-shadow: 0 2px 28px rgba(0,0,0,0.7);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo i { font-size: 1.5rem; color: var(--amber); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-name {
    font-family: 'Rye', cursive;
    font-size: 1.3rem;
    color: var(--amber-light);
    letter-spacing: 0.03em;
}

.logo-tagline {
    font-family: 'Caveat', cursive;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--kreide-dim);
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 0;
}

.nav-menu a {
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(242,232,208,0.6);
    text-decoration: none;
    padding: 0.4rem 1rem;
    position: relative;
    transition: color 0.2s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    border-radius: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--amber-light);
}

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

.nav-menu a + a {
    border-left: 1px solid rgba(200,132,26,0.18);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg picture,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: sepia(10%) brightness(0.95);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(200,132,26,0.04) 0%, transparent 60%),
        linear-gradient(
            120deg,
            rgba(14,10,4,0.75) 0%,
            rgba(14,10,4,0.35) 45%,
            rgba(14,10,4,0.05) 100%
        );
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.055'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-sticker {
    position: absolute;
    top: 3.5rem;
    right: 5%;
    z-index: 3;
    font-family: 'Rye', cursive;
    font-size: 1.3rem;
    line-height: 1.15;
    color: var(--holz);
    background: var(--amber-glow);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(12deg);
    box-shadow: 3px 4px 12px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    text-shadow: 0 1px 0 rgba(255,255,255,0.25);
    border: 3px solid rgba(120,60,0,0.25);
}

.hero-prost {
    position: absolute;
    bottom: 8vh;
    right: 4%;
    font-family: 'Caveat', cursive;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    color: rgba(200,132,26,0.12);
    transform: rotate(-8deg);
    pointer-events: none;
    z-index: 2;
    user-select: none;
    letter-spacing: 0.02em;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 24px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
}

.hero h1 {
    font-family: 'Caveat', cursive;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--kreide);
    margin-bottom: 1.5rem;
    max-width: 580px;
    text-shadow: 0 4px 32px rgba(0,0,0,0.7), 2px 2px 0 rgba(0,0,0,0.3);
}

.hero h1 em {
    color: var(--amber-light);
    display: block;
    font-size: 1.1em;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(242,232,208,0.72);
    max-width: 440px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.65rem 1.75rem;
    border-radius: 3px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover { transform: translateY(-2px) rotate(-0.5deg); }

.btn-amber { background: var(--amber); color: var(--holz); border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-light); border-color: var(--amber-light); }

.btn-outline { background: transparent; color: var(--kreide); border-color: rgba(242,232,208,0.45); }
.btn-outline:hover { border-color: var(--kreide); background: rgba(242,232,208,0.07); }

.btn-full { width: 100%; justify-content: center; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(200,132,26,0.5);
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── THEKE STRIP ────────────────────────────────────────────── */
.theke-strip {
    background: var(--holz-brett);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 2px solid var(--amber-dark);
    border-bottom: 2px solid var(--amber-dark);
    position: relative;
    overflow: hidden;
}

.theke-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent, transparent 60px,
        rgba(0,0,0,0.08) 60px, rgba(0,0,0,0.08) 61px
    );
    pointer-events: none;
}

.theke-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.5rem 3rem;
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--kreide);
    text-align: center;
    line-height: 1.3;
    border-right: 1px solid rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.theke-fact:last-child { border-right: none; }
.theke-fact i { font-size: 1.5rem; color: var(--amber-glow); }

/* ── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--holz-brett);
    margin-bottom: 0.75rem;
}

.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 2px; background: currentColor; }
.eyebrow--amber { color: var(--amber); }
.eyebrow--amber::before { background: var(--amber); }

/* ── ÜBER UNS ───────────────────────────────────────────────── */
.ueber-section {
    padding: 7rem 0;
    background: var(--papier);
    position: relative;
}

.ueber-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0; right: 0;
    height: 28px;
    background: var(--holz-brett);
    clip-path: polygon(
        0% 100%, 2% 20%, 5% 80%, 8% 10%, 12% 70%, 15% 0%, 19% 60%, 23% 15%,
        27% 75%, 31% 5%, 35% 65%, 39% 20%, 43% 80%, 47% 10%, 51% 70%, 55% 0%,
        59% 55%, 63% 20%, 67% 75%, 71% 5%, 75% 65%, 79% 15%, 83% 70%, 87% 10%,
        91% 65%, 95% 25%, 98% 75%, 100% 30%, 100% 100%
    );
}

.ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ueber-image { position: relative; }

.ueber-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    filter: sepia(20%) contrast(1.08) brightness(0.95);
    box-shadow: 6px 8px 28px rgba(0,0,0,0.35), -2px -2px 0 var(--amber-dark);
    transform: rotate(-1.5deg);
}

.ueber-stamp {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--amber-dark);
    color: var(--kreide);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 4px solid var(--amber);
    transform: rotate(8deg);
}

.stamp-year { font-family: 'Rye', cursive; font-size: 1.9rem; line-height: 1; color: var(--amber-glow); }
.stamp-label { font-family: 'Caveat', cursive; font-size: 0.9rem; color: rgba(242,232,208,0.8); }

.ueber-text h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--holz);
    margin-bottom: 1.5rem;
}

.ueber-text p { font-size: 0.95rem; color: #4A3520; line-height: 1.8; margin-bottom: 1rem; }

.ueber-merkmale {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 2px dashed rgba(61,36,16,0.2);
}

.merkmal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: var(--holz-brett);
    text-align: center;
    line-height: 1.3;
}

.merkmal i { font-size: 1.5rem; color: var(--amber-dark); }

/* ── BIERE (KREIDETAFEL) ────────────────────────────────────── */
.biere-section {
    background: var(--tafel);
    padding: 5rem 0;
    border-top: 4px solid #2A1A08;
    position: relative;
    overflow: hidden;
}

.biere-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.biere-tafel-header {
    text-align: center;
    padding: 3.5rem 1rem 2rem;
    position: relative;
    z-index: 1;
}

.kreide-sub {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: rgba(242,232,208,0.45);
    letter-spacing: 0.12em;
    margin-bottom: 0.25rem;
}

.kreide-titel {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: rgba(242,232,208,0.92);
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-shadow: 0 0 8px rgba(242,232,208,0.08);
    margin: 0.25rem 0;
}

.kreide-titel::after {
    content: '';
    display: block;
    width: 55%;
    height: 2px;
    background: rgba(242,232,208,0.16);
    margin: 0.5rem auto 0;
    border-radius: 1px;
}

.kreide-under {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: rgba(200,132,26,0.7);
    letter-spacing: 0.14em;
    margin-top: 0.5rem;
}

.biere-tafeln {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 3rem;
    position: relative;
    z-index: 1;
    padding: 0 0 2rem;
}

.biere-tafeln > .bier-tafel:not(:last-child) {
    border-right: 1px solid rgba(242,232,208,0.07);
    padding-right: 2rem;
}

.bier-tafel { padding: 0 1rem; }

.tafel-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(200,132,26,0.3);
}

.tafel-head i { color: var(--amber); font-size: 1.2rem; }

.tafel-head h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--kreide);
    letter-spacing: 0.03em;
}

.bier-liste { list-style: none; display: flex; flex-direction: column; gap: 0; }

.bier-liste li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.55rem 0;
    border-bottom: 1px dashed rgba(242,232,208,0.1);
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
}

.bier-liste li:last-child { border-bottom: none; }
.bier-name { color: rgba(242,232,208,0.88); font-weight: 400; }
.bier-preis { color: var(--amber-light); font-weight: 700; font-size: 1rem; white-space: nowrap; flex-shrink: 0; }

.biere-hinweis {
    text-align: center;
    margin-top: 1.5rem;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: rgba(242,232,208,0.32);
    position: relative;
    z-index: 1;
}

.biere-section-deco {
    text-align: center;
    font-size: 0.55rem;
    color: rgba(242,232,208,0.12);
    letter-spacing: 0.6rem;
    padding: 1rem 0 0.5rem;
    position: relative;
    z-index: 1;
}

/* ── KÜCHE ──────────────────────────────────────────────────── */
.kueche-section {
    padding: 7rem 0;
    background: var(--papier-alt);
    position: relative;
}

.kueche-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0; right: 0;
    height: 28px;
    background: var(--tafel);
    clip-path: polygon(
        0% 100%, 1% 30%, 4% 85%, 7% 15%, 10% 70%, 14% 5%, 17% 60%, 21% 20%,
        25% 80%, 29% 10%, 33% 65%, 37% 25%, 41% 78%, 45% 8%, 49% 68%, 53% 22%,
        57% 72%, 61% 12%, 65% 68%, 69% 28%, 73% 78%, 77% 18%, 81% 72%, 85% 12%,
        89% 62%, 93% 22%, 97% 72%, 100% 35%, 100% 100%
    );
}

.section-head { text-align: center; margin-bottom: 2.5rem; }

.section-head h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--holz);
    margin-bottom: 0.75rem;
}

.section-head--light h2 { color: var(--kreide); }
.section-head--light .section-sub { color: rgba(242,232,208,0.55); }

.section-sub { font-size: 0.95rem; color: #6A5040; max-width: 480px; margin: 0 auto; }

.kueche-handschrift {
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    color: var(--holz-brett);
    margin-top: 0.85rem;
    opacity: 0.75;
}

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

.kueche-card {
    background: var(--papier);
    border-radius: 1px;
    overflow: visible;
    box-shadow: 3px 4px 16px rgba(0,0,0,0.18), -1px -1px 0 var(--papier-dunkel);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.kueche-card:nth-child(odd)  { transform: rotate(-0.7deg); }
.kueche-card:nth-child(even) { transform: rotate(0.5deg); }
.kueche-card:hover { transform: rotate(0deg) scale(1.02) !important; box-shadow: 5px 8px 28px rgba(0,0,0,0.28); z-index: 2; }

.kueche-img { aspect-ratio: 4/3; overflow: hidden; }

.kueche-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
    filter: sepia(8%) contrast(1.04);
}

.kueche-card:hover .kueche-img img { transform: scale(1.04); }

.kueche-body { padding: 1.25rem 1.25rem 1.4rem; }

.kueche-body h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--holz);
    margin-bottom: 0.35rem;
}

.kueche-body p { font-size: 0.84rem; color: #5A4530; line-height: 1.65; margin-bottom: 0.65rem; }
.kueche-preis { font-family: 'Caveat', cursive; font-size: 1.4rem; font-weight: 700; color: var(--amber-dark); display: block; }

.kueche-card--special {
    background: var(--holz-mid);
    display: flex;
    align-items: center;
    transform: rotate(0.4deg);
    border-left: 4px solid var(--amber);
}

.kueche-card--special .kueche-body { padding: 1.75rem; }
.kueche-card--special h3 { color: var(--amber-light); font-size: 1.5rem; }
.kueche-card--special p  { color: rgba(242,232,208,0.65); }

.special-label {
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--amber);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.kueche-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    font-weight: 700;
    color: var(--amber);
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
}
.kueche-link:hover { gap: 0.65rem; color: var(--amber-glow); }

/* ── EVENTS (PINNWAND) ──────────────────────────────────────── */
.events-section {
    padding: 7rem 0 5rem;
    background: var(--holz-mid);
    position: relative;
    border-top: 1px solid rgba(200,132,26,0.12);
}

.events-section .section-head h2 {
    font-family: 'Rye', cursive;
    color: var(--kreide);
    letter-spacing: 0.04em;
}

.events-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem 1.75rem;
    align-items: start;
}

.event-card {
    background: var(--papier);
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
    box-shadow: 2px 4px 14px rgba(0,0,0,0.35), -1px -1px 0 rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 1px;
}

.event-card:hover { z-index: 5; box-shadow: 4px 8px 28px rgba(0,0,0,0.5); }

.event-tape::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(-1.5deg);
    width: 60px;
    height: 22px;
    background: rgba(200,180,120,0.55);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.event-tape--yellow::before { background: rgba(240,220,80,0.4); }

.event-rot-neg  { transform: rotate(-1.8deg); }
.event-rot-pos  { transform: rotate(1.2deg); }
.event-rot-neg2 { transform: rotate(-0.7deg); }
.event-rot-pos2 { transform: rotate(2.1deg); }

.event-rot-neg:hover, .event-rot-pos:hover,
.event-rot-neg2:hover, .event-rot-pos2:hover { transform: rotate(0deg) scale(1.02); }

.event-card--big { grid-row: 1 / 3; }
.event-card--special { background: #FFFDE7; }

.event-datum {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--amber-dark);
    color: var(--kreide);
    padding: 0.4rem 0.9rem;
    margin-bottom: 0.85rem;
    border-radius: 2px;
}

.event-tag {
    font-family: 'Caveat', cursive;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    color: var(--amber-glow);
}

.event-date { font-family: 'Caveat', cursive; font-size: 0.95rem; font-weight: 700; line-height: 1.2; }

.event-genre {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.event-info h3 {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--holz);
    margin-bottom: 0.4rem;
}

.event-card--big .event-info h3 { font-size: 1.65rem; }

.event-info p { font-size: 0.85rem; color: #5A4030; line-height: 1.65; margin-bottom: 0.65rem; }
.event-eintritt { font-family: 'Caveat', cursive; font-size: 1rem; font-weight: 700; color: var(--amber-dark); }

/* ── RESERVIERUNG ───────────────────────────────────────────── */
.reservieren-section {
    padding: 7rem 0;
    background: var(--holz);
    border-top: 3px solid var(--amber-dark);
    position: relative;
}

.reservieren-section::before {
    content: '~ ~ ~';
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: rgba(200,132,26,0.25);
    letter-spacing: 0.5rem;
}

.reservieren-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

.reservieren-info h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--kreide);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.reservieren-info > p { font-size: 0.92rem; color: var(--kreide-dim); line-height: 1.8; margin-bottom: 2.5rem; }
.info-blocks { display: flex; flex-direction: column; gap: 1.25rem; }

.info-block { display: flex; gap: 1rem; align-items: flex-start; }

.info-block i { color: var(--amber); font-size: 0.95rem; width: 18px; flex-shrink: 0; margin-top: 0.2rem; }

.info-block strong {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    font-weight: 700;
    color: var(--amber-light);
    margin-bottom: 0.15rem;
}

.info-block p { font-size: 0.87rem; color: var(--kreide-dim); line-height: 1.6; }

/* ── FORM ───────────────────────────────────────────────────── */
.reservieren-form {
    background: var(--papier);
    box-shadow: 4px 6px 24px rgba(0,0,0,0.4), -2px -2px 0 var(--papier-dunkel);
    padding: 2.5rem;
    transform: rotate(-0.5deg);
    position: relative;
}

.reservieren-form::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    width: 80px;
    height: 24px;
    background: rgba(200,180,120,0.55);
    transform: translateX(-50%) rotate(0.5deg);
}

.reservieren-form h3 {
    font-family: 'Rye', cursive;
    font-size: 1.35rem;
    color: var(--holz);
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(61,36,16,0.2);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--holz-brett);
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: var(--papier-alt);
    border: 1px solid rgba(61,36,16,0.25);
    border-bottom: 2px solid rgba(61,36,16,0.35);
    border-radius: 1px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--holz);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--amber-dark);
    box-shadow: 0 2px 0 var(--amber-dark);
    background: var(--papier);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(200,132,26,0.1);
    border: 1px solid var(--amber-dark);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--amber-dark);
}

.form-success i { font-size: 1.2rem; flex-shrink: 0; }
.form-success[hidden] { display: none !important; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: #080603;
    border-top: 3px solid var(--amber-dark);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; font-family: 'Rye', cursive; font-size: 1.2rem; color: var(--amber-light); }
.footer-logo i { font-size: 1.3rem; }
.footer-brand p { font-size: 0.87rem; color: rgba(242,232,208,0.42); line-height: 1.7; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.75rem; }

.footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(200,132,26,0.3);
    display: flex; align-items: center; justify-content: center;
    color: rgba(200,132,26,0.55);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover { color: var(--amber); border-color: var(--amber); background: rgba(200,132,26,0.08); }

.footer-col h4 {
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col a,
.footer-col ul li a { color: rgba(242,232,208,0.48); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }

.footer-col a:hover,
.footer-col ul li a:hover { color: var(--kreide); }

.footer-col p { color: rgba(242,232,208,0.48); font-size: 0.85rem; line-height: 1.75; margin-bottom: 0.4rem; }

.footer-bottom { padding: 1.25rem 0; }
.footer-bottom p { font-size: 0.78rem; color: rgba(242,232,208,0.25); text-align: center; }
.footer-bottom a { color: rgba(242,232,208,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(242,232,208,0.7); }

/* ── DISCLAIMER ─────────────────────────────────────────────── */
.escape-disclaimer { background: #060402; padding: 1.1rem 0; border-top: 2px solid #2A1A08; }

.escape-disclaimer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.76rem;
    color: rgba(242,232,208,0.32);
    line-height: 1.65;
}

.escape-disclaimer__inner i { color: rgba(200,132,26,0.4); flex-shrink: 0; margin-top: 0.15rem; }
.escape-disclaimer__inner strong { color: rgba(242,232,208,0.55); font-weight: 600; }
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.3); }
.escape-disclaimer__inner a:hover { color: #f59034; }

/* ── FADE-IN ────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .biere-tafeln { grid-template-columns: 1fr 1fr; }
    .biere-tafeln > .bier-tafel:nth-child(2) { border-right: none; padding-right: 0; }
    .kueche-grid  { grid-template-columns: 1fr 1fr; }
    .events-grid  { grid-template-columns: 1fr 1fr; }
    .event-card--big { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .ueber-image { max-width: 380px; }
    .reservieren-inner { grid-template-columns: 1fr; gap: 3rem; }
    .reservieren-form { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .cta-button  { display: none; }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: rgba(14,10,4,0.99);
        border-bottom: 2px solid var(--amber-dark);
        padding: 1rem;
        gap: 0.25rem;
        z-index: 299;
    }

    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 0.75rem 1rem; font-size: 1rem; }

    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.8rem; }
    .hero-sticker { width: 70px; height: 70px; font-size: 1rem; top: 2rem; right: 3%; }
    .hero-prost { display: none; }

    .theke-strip { flex-direction: column; }
    .theke-fact { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); width: 100%; }
    .theke-fact:last-child { border-bottom: none; }

    .biere-tafeln { grid-template-columns: 1fr; }
    .biere-tafeln > .bier-tafel { border-right: none; padding-right: 0; }
    .kueche-grid  { grid-template-columns: 1fr; }
    .events-grid  { grid-template-columns: 1fr; }
    .event-card   { transform: none !important; }
    .form-row     { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr; }

    .ueber-section, .biere-section, .kueche-section,
    .events-section, .reservieren-section { padding: 4rem 0; }

    .kueche-card { transform: none !important; }
    .reservieren-form::before { display: none; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .reservieren-form { padding: 1.5rem; }
    .ueber-merkmale { flex-direction: column; gap: 1rem; }
    .hero-sticker { display: none; }
}
