body {
    font-family: 'Inter', sans-serif;
    background-color: #1a0f0a; /* Dark wood base */
    color: #f3f4f6;
    hyphens: auto;
    -webkit-hyphens: auto;
}
h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
}
.bg-wood {
    background-color: #2D1B14;
}
.text-accent-red {
    color: #C53030;
}
.bg-accent-red {
    background-color: #C53030;
}
.border-gold {
    border-color: #D4AF37;
}
.text-gold {
    color: #D4AF37;
}
.hero-overlay {
    background: linear-gradient(rgba(26, 15, 10, 0.45), rgba(26, 15, 10, 0.95));
}
#home img {
    object-fit: cover;
    object-position: center;
}
.card-hover:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    border-color: #D4AF37;
}

/* Intensiver Glow-Effekt für den Haupt-Button */
@keyframes intense-gold-glow {
    0% { 
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 50px rgba(212, 175, 55, 0.3);
        transform: scale(1.03);
    }
    100% { 
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
        transform: scale(1);
    }
}
.animate-glow-intense {
    animation: intense-gold-glow 2.5s infinite ease-in-out;
    background-color: #D4AF37 !important; 
    color: #1a0f0a !important; 
}

/* Menu Tab Styles */
.menu-tab {
    cursor: pointer;
    color: #9ca3af;
    opacity: 0.6;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}
.menu-tab:hover {
    color: #f3f4f6;
    opacity: 1;
}
.menu-tab.active {
    color: #D4AF37;
    opacity: 1;
    border-bottom: 2px solid #D4AF37;
}

/* Premium Menu Item Styles */
.menu-item-row {
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item-row:hover {
    transform: translateY(-4px) scale(1.01);
    background-color: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(212, 175, 55, 0.05);
}

.item-id {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-right: 8px;
}

.item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.item-name-container {
    display: flex;
    align-items: baseline;
    flex: 1;
    min-width: 0;
}

.item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.2);
    margin: 0 8px 5px 8px;
    min-width: 20px;
}

.item-price {
    font-family: 'Playfair Display', serif;
    color: #C53030;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    white-space: nowrap;
    text-align: right;
}

@media (max-width: 480px) {
    .item-dots {
        display: none;
    }
}

.item-desc {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    flex-grow: 1;
}

/* Allergen Footnote Badges & Glow Animation */
@keyframes gold-pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.footnote-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 9px;
    font-weight: 700;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: gold-pulse 2s infinite;
}

/* Globaler Allergen-Container (Toast) */
#allergen-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #2D1B14;
    border: 1px solid #D4AF37;
    border-radius: 16px;
    padding: 16px 24px;
    z-index: 2000;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

#allergen-toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 4px;
}

.toast-list {
    color: #D4AF37;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Search Styles (1:1 aus menu.css) */
.search-container {
    position: relative;
}

.search-input {
    background-color: rgba(45, 27, 20, 0.8) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-radius: 9999px !important;
    padding: 0.5rem 2.5rem !important;
    font-size: 0.875rem !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.search-input:focus {
    outline: none !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 0 1px #D4AF37 !important;
}

.search-input::placeholder {
    color: rgba(156, 163, 175, 0.6) !important;
}

mark {
    background-color: rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    font-weight: 600;
    padding: 0 2px;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .search-input {
        font-size: 16px !important; /* Verhindert Auto-Zoom auf iOS */
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-map-dark {
    filter: grayscale(1) invert(0.9) contrast(1.2); /* For an even darker look if desired */
}

/* Mobile Menu Styles */
#mobile-menu {
    position: fixed;
    top: 80px; /* Height of nav */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(26, 15, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 40;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #D4AF37;
}

