:root { 
    /*--pink: #E6007E; /*#ff4fa3; */
    --pink: #CBA135;
    --yellow: #CBA135; 
}
body.fade-in { animation: fadeIn .4s ease-in-out; }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
.sidebar { width:260px; position:sticky; top:20px; }
.header-logo { width:30%; }
.pink-text { color:var(--pink); }
.lead { font-size: 1rem !important; }
.nav-pills .nav-link.active, .nav-pills .show>.nav-link { background-color: #E6007E; }
.yellow-text { color:var(--yellow); }

/* --- Mobile Optimierung --- */
/* Sidebar auf Handy ausblenden */
@media (max-width: 767px) {
    .sidebar {
        display: none;
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    /* Hauptbereich vollbreit */
    .content-area { margin-left: 0 !important; }

    /* Logo kleiner */
    .header-logo { width: 60%; }

    /* Mobile Menübutton */
    .mobile-menu-btn {
        display: block;
        margin: 10px auto;
        background: var(--pink);
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 18px;
    }

    /* Startseite Hero */
    .hero {
        padding: 90px 20px;
        text-align: center;
        background: linear-gradient(135deg, #1a1a1a, #000);
        border-radius: 20px;
        margin-top: 20px;
    }
    .hero h1 {
        font-size: 2rem;
        color: var(--pink);
        font-weight: 700;
    }
    .hero p {
        font-size: 1rem;
        max-width: 450px;
        margin: 20px auto;
    }
}
/* Desktop */
@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }

    /* Startseite Hero */
    .hero {
        padding: 90px 20px;
        text-align: center;
        background: linear-gradient(135deg, #1a1a1a, #000);
        border-radius: 20px;
        margin-top: 20px;
    }
    .hero h1 {
        font-size: 3rem;
        color: var(--pink);
        font-weight: 700;
    }
    .hero p {
        font-size: 1.2rem;
        max-width: 650px;
        margin: 20px auto;
    }
}
@media (min-width: 1200px) {
    .menu-grid {
        max-width: 1100px;
        margin: 0 auto;
    }
}

body {
    background: #141414;
    color: #ddd;
    font-family: "Inter", sans-serif;
}
/* Header */
header { padding: 20px 0; }
.header-logo { max-width: 350px; }
/* Öffnungszeiten */
.section {
    padding: 60px 20px;
    text-align: center;
}
.section h3 {
    color: var(--pink);
    margin-bottom: 20px;
}
/* Footer */
footer {
    border-top: 1px solid #333;
    padding: 25px;
    text-align: center;
    color: #666;
    margin-top: 40px;
}
/* Social Media Buttons im Footer */
.footer-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #222;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--pink);
    color: #fff;
}
.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: fill 0.3s;
}
/* Hover Effekt: Glow + Scale */
.footer-social a:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--pink), 0 0 25px var(--pink) inset;
}
.footer-social a:hover svg { fill: #fff; }
/* Leicht pulsierende Animation */
.footer-social a.pulse { animation: pulseGlow 1.6s infinite; }

/* Scrollbare Menü-Kategorien (Yumzi-Style) */
.menue-scrollbar {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}
.menue-scrollbar::-webkit-scrollbar { display: none; /* Chrome/Safari */ }
.menue-categories {
    display: inline-flex;
    gap: 12px;
    padding: 10px 15px;
    list-style-type: none;
}
.menue-categories .nav-link {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 25px;
    background: #222;
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
}
.menue-categories .nav-link.active {
    background: var(--pink);
    color: #fff !important;
}
/* Fixiert beim Scrollen */
.menue-bar-wrapper {
    position: sticky;
    top: 0px;   /* unter deinem Header + Sidebar */
    z-index: 999;
    background: #141414;
    padding: 5px 0;
    border-bottom: 1px solid #333;
    margin-left: -12px;
    margin-right: -12px;
}
/*  Yumzi Card Style (ohne Bilder)
    ANIMATION: Fade-In der Karten */
.menu-card {
    background: #1a1a1a;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 15px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInCard 0.4s ease forwards;
}
@keyframes fadeInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.menu-card:hover { transform: scale(1.02); }
.menu-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--yellow);
}
.menu-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pink);
    white-space: nowrap;
}
.menu-card-text {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 4px;
    line-height: 1.4;
}
.menu-card-allergene {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 6px;
}
/* Zwei-Spalten Layout auf Desktop */
@media (min-width: 992px) {
    .menu-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
/* Icons */
.menu-icon {
    width: 18px;
    height: 18px;
    margin-left: 6px;
    vertical-align: -3px;
    opacity: 0.8;
}
.menu-card-title img { opacity: 0.85; }
/* Kategorie-Auswahl Animation */
.nav-link.active {
    transform: scale(1.08);
    transition: 0.2s;
    background: var(--pink) !important;
}
.nav-link { transition: 0.2s; }

/* Floating Scroll-To-Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    background: var(--pink);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    display: none; /* hidden by default */
    transition: transform 0.2s ease, opacity 0.2s ease;
}
#scrollTopBtn:hover { transform: scale(1.1); }
/* Loading Overlay */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#loadingOverlay.active {
    opacity: 1;
    pointer-events: all;
}
#loadingOverlay .spinner {
    border: 5px solid #333;
    border-top: 5px solid var(--pink);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Einheitliche Glow-Pulse Buttons */
.btn-glow {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 22px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
}
.btn-glow:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--pink), 0 0 25px var(--pink) inset;
}
/* Leicht pulsierende Animation */
.btn-glow.pulse { animation: pulseGlow 1.6s infinite; }
@keyframes pulseGlow {
    0% { box-shadow: 0 0 8px var(--pink), 0 0 15px var(--pink) inset; }
    50% { box-shadow: 0 0 18px var(--pink), 0 0 25px var(--pink) inset; }
    100% { box-shadow: 0 0 8px var(--pink), 0 0 15px var(--pink) inset; }
}
 /* Reservierung Formular */
.reservation-form-wrapper .form-control {
    border-radius: 12px;
    background: #111;
    color: #fff;
    border: 1px solid #333;
}
.reservation-form-wrapper .form-label { color: #fff; }
.alert-warning {
    background-color: #333;
    color: var(--yellow);
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid var(--yellow);
}
.menue-container {
    overflow-x: hidden;
}
.menue-scrollbar { 
    scroll-behavior: smooth; 
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.menue-categories .nav-link.active {
    font-weight: 600;
    border-bottom: 2px solid #000;
}
.quicklinks-container {
    max-width: 480px;
}

.quicklink-btn {
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 14px;
    text-align: center;
}

/* Social Farben */
.btn-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}
.btn-facebook {
    background-color: #1877f2;
    color: #fff;
}
.btn-youtube {
    background-color: #ff0000;
    color: #fff;
}
.quicklink-btn:hover {
    opacity: 0.9;
    color: #fff;
}
.btn-tiktok {
    background: linear-gradient(45deg, #010101, #ff0050, #00f2ea);
    color: #fff;
}