/* Grundlayout */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #89afe5; /* Gelb */
    scroll-behavior: smooth;
}

/* Header */
header {
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    position: sticky;
    top: 0;
}

/* Logo */
.logo h1 {
    margin: 0;
    font-size: 20px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #89afe5;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

/* Preisliste */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.price-card {
    background: white;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Formular */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 10px;
    border-radius: 6px;
    border: none;
}

button {
    background: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: black;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .hamburger {
        display: block;
    }

    nav.active {
        display: block;
    }
}
/* Preisliste aufklappbar */

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-btn {
    width: 100%;
    padding: 15px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-align: left;
    border-radius: 8px;
    font-size: 16px;
}

.items {
    display: none;
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 5px;
}

.items p {
    margin: 5px 0;
}

.items.active {
    display: block;
}
/* =========================
   MODERNE PREISLISTE
========================= */

.price-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

/* Kategorie-Karte */
.category {
    background: white;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.15s;
}

.category:hover {
    transform: translateY(-3px);
}

/* Button */
.category-btn {
    width: 100%;
    padding: 18px 20px;
    background: black;
    color: white;
    border: none;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Pfeil */
.arrow {
    transition: transform 0.3s ease;
}

/* drehen wenn offen */
.category-btn.active .arrow {
    transform: rotate(180deg);
}

/* Getränke-Liste */
.items {
    max-height: 0;
    overflow: hidden;
    background: #f8f8f8;
    transition: all 0.35s ease;
    padding: 0 20px;
}

/* offen */
.items.active {
    padding: 15px 20px;
    max-height: none;
}

/* einzelne Produkte */
.items p {
    background: white;
    padding: 10px 12px;
    border-radius: 8px;
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* Suchfeld */

.search-bar {
    width: 95%;
    padding: 5px;
    margin: 20px 0 30px 0;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
/* Info-Bereich auf der Startseite */
.info-bar {
    background: rgb(74, 4, 73), 4, 100; /* helles Gelb als Kontrast */
    color: #333;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-weight: 500;
}

.info-bar p {
    margin: 5px 0;
}
/* Logo im Header */
.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Abstand zwischen Bild und Text */
}

.logo-img {
    height: 120px; /* Höhe anpassen, Breite skaliert automatisch */
    width: auto;
}

/* Optional: Text kleiner machen, falls Logo groß */
.logo h1 {
    font-size: 20px;
    margin: 0;
    color: white;
}

/* Mobil: Logo und Hamburger nebeneinander */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 18px;
    }
    .logo-img {
        height: 40px;
    }
}
/* =========================
   EVENT KALENDER
========================= */

.calendar {
    background: rgb(247, 243, 246);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.calendar-header button {
    background: black;
    color: #89afe5;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

/* Wochentage */
.day-name {
    font-weight: bold;
    text-align: center;
}

/* Tage */
.day {
    padding: 6px;
    border-radius: 4px;
    background: #f3f3f3;
    text-align: center;
    cursor: pointer;
}

/* Event-Tage */
.day.event {
    background: #89afe5;
    font-weight: bold;
}

/* Heute */
.day.today {
    border: 2px solid black;
}
/* =========================
   INFO BOX + WHATSAPP
========================= */

.info-bar {
    background: #fff8d6;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* WhatsApp Bereich */
.whatsapp-box {
    display: flex;
    align-items: center;
}

/* QR Code (Desktop sichtbar) */
.wa-qr {
    height: 150px;
}

/* Button (mobil versteckt standardmäßig) */
.wa-button {
    display: none;
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

/* =========================
   MOBILE UMSCHALTUNG
========================= */

@media (max-width: 768px) {

    .wa-qr {
        display: none;
    }

    .wa-button {
        display: inline-block;
    }
}
/* =========================
   EVENT POPUP (Modal)
========================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}
nav a.active {
    background: #89afe5;
    color: black;
    padding: 6px 10px;
    border-radius: 6px;
}
.status-box {
    font-weight: bold;
    margin-top: 8px;
    font-size: 18px;
}

.open {
    color: #00b300;
}

.closed {
    color: red;
}
/* ==========================
   Floating Call Button
   ========================== */

.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: #89afe5;
    color: black;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: transform 0.2s;
}

/* Hover Effekt */
.call-button:hover {
    transform: scale(1.1);
}

/* Nur mobil anzeigen */
@media (min-width: 768px) {
    .call-button {
        display: none;
    }
}
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: black;
    color: white;
    padding: 15px;
    display: none;
    z-index: 9999;
}

.cookie-content {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: #89afe5;
    text-decoration: underline;
}

.cookie-content button {
    background: rgb(90, 90, 19);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}
/* Ticker Bereich */
.ticker {
    width: 100%;
    overflow: hidden;
    background: #89afe5;
    color: rgb(6, 6, 6);
    white-space: nowrap;
    position: static;
}

/* Lauftext */
.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: tickerMove 15s linear infinite;
    font-weight: bold;
}

/* Animation */
@keyframes tickerMove {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}
/* Hintergrund */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

/* Fenster */
.popup-content {
    background: white;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    border-radius: 15px;
    text-align: center;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Schließen X */
.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* Button */
.popup-button {
    display: inline-block;
    margin-top: 15px;
    background: black;
    color: yellow;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}
