/* --- 1. VARIABLEN & RESET --- */
@font-face {
    font-family: 'Caveat';
    src: url('fonts/Caveat/Caveat-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 700;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('fonts/Outfit/Outfit-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

/* Schriftart Caveat einbinden, falls noch nicht geschehen */
@font-face {
    font-family: 'Caveat';
    src: url('fonts/Caveat/static/Caveat-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bh-cream: #F9F5D7;
    --bh-yellow: #F4E37A;
    --bh-green: #3EA647;
    --bh-green-dark: #2C5C32;
    --bh-brown: #5E5A56;
    --bh-red: #B84034;
    
    --font-main: 'Outfit', sans-serif;
    --font-hand: 'Caveat', cursive;
    
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.1);
    --container-width: 1100px;
}

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

body {
    font-family: var(--font-main);
    color: var(--bh-brown);
    background-color: var(--bh-cream);
    background-image: radial-gradient(#D1CDB0 1px, transparent 1px);
    background-size: 24px 24px;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

/* --- 2. NAVIGATION --- */
#navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.98); /* Mehr Deckkraft für cleanen Look */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(94, 90, 86, 0.08);
    z-index: 1000; padding: 0.8rem 0; /* Kompakter & moderner */
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; /* Harmonischerer Abstand */ }
.logo-icon {
    height: 40px; /* Dezentere Größe */
    width: auto;
    display: flex; align-items: center;
    background: transparent;
}
.logo-icon img { height: 100%; width: auto; object-fit: contain; }

.brand-name { 
    font-family: var(--font-hand); 
    font-size: 2.2rem; /* Eleganter */
    font-weight: 700; 
    line-height: 1; 
    color: var(--bh-brown);
    position: relative;
    top: 0; /* Sauber ausgerichtet */
}
.brand-sub { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; font-weight: 700; display: block; }

.nav-links { display: none; align-items: center; gap: 2rem; font-weight: 500; text-transform: uppercase; font-size: 0.95rem; }
.nav-links a { letter-spacing: 1px; transition: color 0.3s; text-align: center; } 
.nav-links a:hover { color: var(--bh-green); } 
.menu-link-highlight { color: var(--bh-green); font-weight: 700; } /* Clean & dezent */

.btn-primary {
    /* Modern Gradient & Shadow */
    background: linear-gradient(135deg, var(--bh-green), var(--bh-green-dark));
    color: white; 
    padding: 0.7rem 1.6rem; /* Kleiner & feiner */
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 0.95rem; 
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 15px rgba(62, 166, 71, 0.25); /* Weicherer Glow */
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 6px 24px rgba(62, 166, 71, 0.45); 
}

.desktop-only { display: none; }

/* Instagram Nav Button */
.instagram-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(94, 90, 86, 0.1);
    color: var(--bh-brown);
    transition: all 0.3s ease;
}
.instagram-nav-btn:hover {
    background: var(--bh-green);
    border-color: var(--bh-green);
    color: white;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .desktop-only { display: inline-block; }
    .mobile-toggle { display: none; }
}

/* HAMBURGER ICON */
.mobile-toggle {
    background: transparent; 
    border: none; 
    padding: 10px; 
    z-index: 1100;
    display: block;
    cursor: pointer;
    position: relative;
}
.hamburger-box { width: 30px; height: 24px; display: inline-block; position: relative; }
.hamburger-inner {
    display: block; top: 50%; margin-top: -2px; width: 30px; height: 3px;
    background-color: var(--bh-brown); border-radius: 4px; position: absolute;
    transition: transform 0.15s ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    width: 30px; height: 3px; background-color: var(--bh-brown); border-radius: 4px;
    position: absolute; content: ""; display: block; transition: transform 0.15s ease;
}
.hamburger-inner::before { top: -10px; }
.hamburger-inner::after { bottom: -10px; }

.mobile-toggle.is-active .hamburger-inner { transform: rotate(45deg); }
.mobile-toggle.is-active .hamburger-inner::before { top: 0; opacity: 0; }
.mobile-toggle.is-active .hamburger-inner::after { bottom: 0; transform: rotate(-90deg); }

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh;
    background: var(--bh-cream); 
    z-index: 999;
    padding: 100px 20px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 2rem;
    transform: translateY(-100%); 
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease, visibility 0s 0.4s;
    overflow-y: auto;
}
.mobile-menu-overlay.is-open { 
    transform: translateY(0); 
    opacity: 1; 
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease, visibility 0s 0s;
}
.mobile-menu-link { font-family: var(--font-hand); font-size: 2rem; color: var(--bh-brown); font-weight: 700; }

/* Body no-scroll when menu is open */
body.no-scroll { overflow: hidden; }

/* --- 3. HERO --- */
.hero-section { padding-top: 140px; padding-bottom: 60px; text-align: center; }
.badge {
    display: inline-flex; align-items: center; gap: 8px; background: white;
    padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; color: var(--bh-green); margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.dot { width: 8px; height: 8px; background: var(--bh-green); border-radius: 50%; }
.hero-title { font-family: var(--font-hand); font-size: 3.5rem; line-height: 0.9; margin-bottom: 1.5rem; }
.highlight { color: var(--bh-green); position: relative; z-index: 1; }
.highlight::after {
    content: ''; position: absolute; left: 0; bottom: 5px; width: 100%; height: 10px;
    background: var(--bh-yellow); z-index: -1; opacity: 0.6; transform: skew(-10deg);
}
.hero-subtitle { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin: 0 auto 2.5rem; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-secondary {
    background: white; color: var(--bh-brown); border: 2px solid rgba(94,90,86,0.1);
    padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--bh-green); color: var(--bh-green); }

.hero-image-wrapper {
    margin-top: 4rem; border: 8px solid white; border-radius: 2rem; overflow: hidden;
    box-shadow: var(--shadow-soft); transform: rotate(-1deg); max-width: 900px; margin: 4rem auto 0;
}
.hero-image-wrapper img { width: 100%; height: auto; display: block; }

/* --- 4. ABOUT --- */
.about-section { padding: 6rem 0; text-align: center; max-width: 800px; margin: 0 auto; }
.section-header h2 { font-family: var(--font-hand); font-size: 3rem; margin-bottom: 0.5rem; }
.sub-header { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; opacity: 0.5; }
.lead-text { font-size: 1.4rem; font-weight: 700; color: var(--bh-green); font-family: var(--font-hand); margin: 2rem 0; }

/* --- 5. EVENT FORM (NEU) --- */
.event-section { background: white; padding: 5rem 0; clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%); }
.grid-event {
    display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}
@media (min-width: 900px) { .grid-event { grid-template-columns: 1fr 1fr; } }

.event-info ul { margin-top: 2rem; }
.event-info li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; font-weight: 600; }

/* Form Card Style */
.event-form-card {
    background: #fff; padding: 2.5rem; border-radius: 1.5rem;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.15); border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
.event-form-card::before {
    content: "Anfrage"; position: absolute; top: -15px; right: 30px;
    background: var(--bh-yellow); color: var(--bh-brown);
    padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem;
    transform: rotate(3deg);
}

.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--bh-brown); text-transform: uppercase; letter-spacing: 1px; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 0.8rem 1rem; border: 2px solid #eee; border-radius: 12px;
    font-family: var(--font-main); font-size: 1rem; transition: 0.3s; background: #f9f9f9; color: var(--bh-brown);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; border-color: var(--bh-green); background: white; box-shadow: 0 0 0 4px rgba(62, 166, 71, 0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-footer { margin-top: 1rem; font-size: 0.75rem; color: #999; text-align: center; }

/* --- 6. CARDS --- */
.grid-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem;
}
.card {
    padding: 2rem; border-radius: 2rem; background: white; border: 1px solid #eee;
    transition: 0.3s; display: block; position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: var(--bh-green); }
.card-cream { background: var(--bh-cream); border: none; }
.card-icon {
    width: 60px; height: 60px; background: white; color: var(--bh-green);
    border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.icon-yellow { background: rgba(244, 227, 122, 0.3); color: #9a8616; }
.card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-footer {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1rem; margin-top: 1.5rem;
}
.price { font-family: var(--font-hand); font-size: 1.5rem; font-weight: 700; color: var(--bh-red); }

/* --- 7. FOOTER --- */
.footer { background: var(--bh-brown); color: var(--bh-cream); padding: 4rem 0; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.footer h3 { font-family: var(--font-hand); font-size: 2rem; color: var(--bh-yellow); margin-bottom: 1.5rem; }
.contact-row { display: flex; gap: 15px; margin-bottom: 15px; align-items: flex-start; }
.times-list li { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; margin-bottom: 10px; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* --- 8. KONTAKT SECTION (NEU) --- */
.contact-section { padding: 5rem 0; background: var(--bh-cream); }
.contact-wrapper { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .contact-wrapper { grid-template-columns: 1fr 1fr; } }

.contact-text h2 { margin-bottom: 1rem; }
.contact-details { margin: 2rem 0; font-size: 1.1rem; }
.c-item { margin-bottom: 1rem; display: flex; gap: 15px; align-items: flex-start; }

.btn-large-call {
    font-size: 1.2rem; padding: 1rem 2.5rem; 
    background: var(--bh-green); color: white;
    box-shadow: 0 8px 25px rgba(62, 166, 71, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%; justify-content: center;
}
.btn-large-call:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(62, 166, 71, 0.5); }
@media (min-width: 768px) { .btn-large-call { width: auto; display: inline-flex; } }

.contact-map iframe { width: 100%; height: 350px; border-radius: 1.5rem; box-shadow: var(--shadow-soft); border: none; }

/* Map Placeholder (wenn Cookies nicht akzeptiert) */
.contact-map {
    min-height: 350px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.map-placeholder p {
    margin: 0;
    color: var(--bh-brown);
}

.map-placeholder .btn-secondary {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--bh-green);
    color: var(--bh-green);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.map-placeholder .btn-secondary:hover {
    background: var(--bh-green);
    color: white;
}

.contact-map.map-loaded {
    background: none;
}

/* --- 10. FLOATING CALL BUTTON --- */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--bh-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(62, 166, 71, 0.5);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid white;
}
.floating-call-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(62, 166, 71, 0.6);
}
.floating-call-btn svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- 11. MENU ITEM CALL BUTTON --- */
.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.btn-mini-call {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--bh-cream);
    color: var(--bh-green-dark);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(62, 166, 71, 0.2);
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.btn-mini-call:hover {
    background: var(--bh-green);
    color: white;
    border-color: var(--bh-green);
}

.menu-header {
    padding-top: 160px;
    padding-bottom: 40px;
    text-align: center;
    background: var(--bh-cream);
}
.menu-header h1 {
    font-family: var(--font-hand);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.menu-header p {
    font-size: 1.1rem;
    opacity: 0.7;
}

.sticky-cats {
    position: sticky;
    top: 85px; /* Below navbar */
    z-index: 900;
    background: rgba(249, 245, 215, 0.95);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0;
    margin-bottom: 2rem;
}
.cat-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none; /* Firefox */
}
.cat-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    font-weight: 600;
    font-size: 0.9rem;
}
.cat-pill:hover {
    background: var(--bh-green);
    color: white;
    border-color: var(--bh-green);
}

.menu-section {
    margin-bottom: 4rem;
    scroll-margin-top: 140px;
}
.section-title {
    font-family: var(--font-hand);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 3px solid;
}
.underline-yellow { border-color: var(--bh-yellow); }
.underline-green { border-color: var(--bh-green); }
.underline-red { border-color: var(--bh-red); }
.underline-brown { border-color: var(--bh-brown); }

.menu-grid {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .menu-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #eee;
    padding-bottom: 1rem;
    background: transparent;
    padding: 0 0 1rem 0;
    border-radius: 0;
    box-shadow: none;
    align-items: flex-start;
    gap: 15px;
}
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }

.item-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.item-info p {
    font-size: 0.8rem;
    opacity: 0.6;
}
.item-price {
    font-weight: 700;
    color: var(--bh-green);
    white-space: nowrap;
    margin-left: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.menu-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    text-align: left;
    transition: 0.3s;
}
.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--bh-green);
}
.menu-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.menu-card p { opacity: 0.7; margin-bottom: 1rem; font-size: 0.9rem; }
.card-price { 
    display: block; 
    margin-top: 0.5rem; 
    font-family: var(--font-hand); 
    font-size: 1.5rem; 
    color: var(--bh-red); 
    font-weight: 700; 
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--bh-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s;
}
.floating-call-btn:hover {
    transform: scale(1.1);
    background-color: var(--bh-dark);
}
.floating-call-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Mini Call Button in Menu */
.price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}
.btn-mini-call {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: var(--bh-green);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-mini-call:hover {
    background-color: var(--bh-dark);
}

/* --- MOBILE OPTIMIZATION FOR MENU --- */
@media (max-width: 480px) {
    .menu-item {
        flex-direction: column;
        gap: 5px;
    }
    .price-wrapper {
        align-items: flex-start;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 5px;
    }
    .item-price {
        margin-left: 0;
    }
    
    /* Adjust sticky header position if needed */
    .sticky-cats {
        top: 70px; 
    }
    
    /* Adjust menu header padding */
    .menu-header {
        padding-top: 120px;
        padding-bottom: 20px;
    }
    .menu-header h1 {
        font-size: 2.5rem;
    }
}

/* --- SUCCESS MODAL --- */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: var(--bh-cream);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 450px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid white;
}

.success-modal-overlay.is-visible .success-modal {
    transform: translateY(0);
}

.success-icon-box {
    width: 80px;
    height: 80px;
    background: var(--bh-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(62, 166, 71, 0.3);
}

.success-title {
    font-family: var(--font-hand);
    font-size: 2.5rem;
    color: var(--bh-green);
    margin-bottom: 10px;
    line-height: 1;
}

.success-text {
    font-size: 1.1rem;
    color: var(--bh-brown);
    margin-bottom: 30px;
    opacity: 0.8;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bh-brown);
    opacity: 0.5;
    transition: 0.2s;
}

.close-modal-btn:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Hidden initially */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 10000;
    transition: bottom 0.5s ease;
    border-top: 4px solid var(--bh-green);
}

.cookie-banner.is-visible {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text h3 {
    font-family: var(--font-hand);
    color: var(--bh-green);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: var(--bh-green);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-cookie-accept:hover {
    background: var(--bh-green-dark);
}

.btn-cookie-decline {
    background: transparent;
    border: 1px solid var(--bh-brown);
    color: var(--bh-brown);
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-cookie-decline:hover {
    background: #f0f0f0;
}

/* Klasse für den Slogan */
.location-slogan {
    font-size: 2rem !important;       /* 2rm korrigiert zu 2rem */
    color: darkgreen !important;      /* dunkelgrün */
    font-family: 'Caveat', cursive !important; /* Caveat Schriftart */
    text-decoration: underline !important;     /* unterstrichen */
}

/* --- MOBILE OPTIMIERUNGEN --- */
@media (max-width: 768px) {
    /* Datenschutz/Impressum Seite mobil optimieren */
    .legal-content {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding: 0 10px;
    }
    
    .legal-content h2 {
        font-size: 1.3rem !important;
        margin-top: 1.5rem !important;
    }
    
    .legal-content h3 {
        font-size: 1.1rem !important;
        margin-top: 1rem !important;
    }
    
    .legal-content h4 {
        font-size: 1rem !important;
    }
    
    .legal-content p {
        text-align: left;
        word-break: break-word;
        hyphens: auto;
    }
    
    /* Hero Title mobil kleiner */
    main.container h1 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    
    /* Event-Form mobil optimieren */
    .event-form-card {
        padding: 1.5rem;
        margin: 0 -10px;
        border-radius: 1rem;
    }
    
    .event-form-card h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .form-input, .form-textarea, .form-select {
        padding: 0.9rem 1rem;
        font-size: 16px !important; /* Verhindert Zoom auf iOS */
    }
    
    .form-label {
        font-size: 0.75rem;
    }
    
    .event-info h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .event-info ul {
        margin-top: 1rem;
    }
    
    .event-info li {
        font-size: 0.95rem;
    }
    
    /* Footer Öffnungszeiten mobil besser lesbar */
    .times-list li {
        flex-direction: row;
        font-size: 0.9rem;
    }
    
    .times-list li span {
        min-width: 100px;
    }
    
    /* Footer Grid mobil */
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-col h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Event Section mobil */
    .event-section {
        padding: 3rem 0;
        clip-path: none;
    }
    
    .grid-event {
        gap: 2rem;
    }
}

/* Sehr kleine Bildschirme */
@media (max-width: 480px) {
    main.container h1 {
        font-size: 2rem !important;
    }
    
    .event-form-card {
        padding: 1.2rem;
    }
    
    .legal-content {
        font-size: 0.9rem !important;
    }
    
    .legal-content h2 {
        font-size: 1.2rem !important;
    }
    
    .legal-content h3 {
        font-size: 1rem !important;
    }
    
    /* Footer kompakter */
    .footer {
        padding: 2.5rem 0;
    }
    
    .times-list li {
        font-size: 0.85rem;
        padding-bottom: 6px;
        margin-bottom: 6px;
    }
    
    .times-list li span {
        min-width: 85px;
    }
}

/* --- COOKIE BANNER MODAL (Detailliert) --- */
#cookie-settings-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bh-brown);
    color: var(--bh-cream);
    border: none;
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, background 0.3s;
}

#cookie-settings-trigger:hover {
    transform: scale(1.1);
    background: var(--bh-green);
}

.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.cookie-header h3 {
    font-family: var(--font-hand);
    font-size: 1.8rem;
    color: var(--bh-brown);
    margin: 0;
}

#close-cookie-banner {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

#close-cookie-banner:hover {
    color: var(--bh-brown);
}

.cookie-body {
    padding: 20px 25px;
}

.cookie-body > p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-option-item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #eee;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.option-title {
    font-weight: 700;
    color: var(--bh-brown);
    font-size: 1rem;
}

.option-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
}

input:checked + .slider {
    background-color: var(--bh-green);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 26px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.85rem;
}

.cookie-links a {
    color: var(--bh-green);
    text-decoration: none;
}

.cookie-links a:hover {
    text-decoration: underline;
}

.cookie-footer {
    display: flex;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid #eee;
    background: #fafafa;
    border-radius: 0 0 20px 20px;
}

.cookie-footer .btn-secondary {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--bh-brown);
    background: transparent;
    color: var(--bh-brown);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s;
}

.cookie-footer .btn-secondary:hover {
    background: var(--bh-cream);
}

.cookie-footer .btn-primary {
    flex: 1;
    padding: 12px 20px;
    background: var(--bh-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s;
}

.cookie-footer .btn-primary:hover {
    background: var(--bh-green-dark);
}

/* Mobile Cookie Modal */
@media (max-width: 480px) {
    .cookie-modal {
        max-height: 85vh;
    }
    
    .cookie-header h3 {
        font-size: 1.5rem;
    }
    
    .cookie-footer {
        flex-direction: column;
    }
    
    #cookie-settings-trigger {
        width: 45px;
        height: 45px;
        bottom: 15px;
        left: 15px;
    }
}
