/* Speisekarte Page Styles */

/* Body Override */
body.menu-page {
    background: linear-gradient(135deg, #2D1F1A 0%, #3D2B1F 100%);
    color: #F5E6D3;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(58, 44, 35, 0.8) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-tagline {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #2D1F1A;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #F5E6D3;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #F5E6D3;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
    color: var(--light-beige);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Menu Categories - Original Design with Fixed Colors */
.menu-categories {
    padding: 6rem 0 2rem 0;
    background: var(--medium-brown);
    border-bottom: 1px solid var(--warm-brown);
    margin-top: 4rem;
}

.categories-wrapper {
    padding: 2rem 0;
    margin-top: 120px;
    background: rgba(45, 31, 26, 0.9);
    border-radius: 15px;
    margin-bottom: 2rem;
}

.categories-wrapper h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #F5E6D3;
    margin-bottom: 2rem;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.extended-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 1rem auto 0;
    padding: 0 2rem;
}

.category-btn {
    background: #2D1F1A;
    border: 1px solid #FFFFFF;
    color: #F5E6D3;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    min-width: 120px;
}

.category-btn:hover {
    background: #3D2B1F;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: #F5E6D3;
}

.category-btn.active {
    background: #FFFFFF;
    color: #2D1F1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-color: #FFFFFF;
}

.show-more-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.show-more-btn {
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #D4AF37;
    color: #2D1F1A;
    transform: translateY(-2px);
}

/* Menu Layout - Original Side-by-Side Design */
.menu-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .menu-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .menu-detail-panel {
        order: -1;
    }
}

/* Menu List - Original Design */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-category-section {
    margin-bottom: 3rem;
}

.menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    color: var(--warm-beige);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--warm-brown);
    padding-bottom: 1rem;
}

/* Menu Item - Original List Style WITHOUT IMAGES */
.menu-item-original {
    background: rgba(45, 31, 26, 0.85);
    border: 1px solid rgba(245, 230, 211, 0.1);
    border-radius: 0;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.menu-item-original:hover {
    background: rgba(61, 43, 31, 0.95);
    border-color: rgba(245, 230, 211, 0.3);
    transform: translateX(5px);
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.menu-item-original.active {
    background: rgba(61, 43, 31, 0.95);
    border-left: 4px solid var(--warm-beige);
}

.menu-item-header-original {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item-title-original {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--warm-beige);
    font-weight: 600;
    letter-spacing: 0.025em;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-item-price-original {
    color: #2D1F1A;
    font-weight: 700;
    font-size: 1.125rem;
    background: #FFFFFF; /* Weißer Hintergrund für Preise */
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    border: 1px solid #FFFFFF;
}

.menu-item-description-original {
    color: var(--light-beige);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.menu-item-detailed-description {
    color: var(--light-beige);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.9;
}

.menu-item-allergens {
    color: #ff6b6b;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid #ff6b6b;
    border-radius: 0 4px 4px 0;
}

.menu-item-allergens strong {
    color: #ff4757;
}

.menu-item-meta-original {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.menu-item-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 500;
}

.tag-vegetarian {
    background: #16a34a;
    color: white;
}

.tag-origin {
    background: #2D1F1A;
    color: var(--warm-beige);
    border: 1px solid #FFFFFF; /* Weiße Umrandung */
}

.tag-category {
    background: rgba(45, 31, 26, 0.8);
    color: var(--warm-beige);
    border: 1px solid #FFFFFF; /* Weiße Umrandung */
}

/* Menu Detail Panel - NO IMAGES */
.menu-detail-panel {
    background: rgba(45, 31, 26, 0.95);
    border: 2px solid var(--warm-brown);
    border-radius: 8px;
    padding: 2rem;
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.detail-placeholder {
    text-align: center;
    color: var(--light-beige);
    opacity: 0.7;
}

.detail-placeholder .detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.detail-placeholder p {
    line-height: 1.6;
    font-style: italic;
}

.menu-detail-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* NO .detail-image rule - removed images */

.detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--warm-beige);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-price {
    color: #2D1F1A;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: #FFFFFF; /* Weißer Hintergrund */
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #FFFFFF;
}

.detail-description {
    color: var(--light-beige);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.detail-info-section {
    background: var(--medium-brown);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.detail-info-title {
    color: var(--warm-beige);
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-info-grid {
    display: grid;
    gap: 0.75rem;
}

.detail-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.detail-info-label {
    color: var(--light-beige);
    font-weight: 500;
    font-size: 0.875rem;
    flex: 0 0 auto;
    margin-right: 1rem;
}

.detail-info-value {
    color: var(--warm-beige);
    font-size: 0.875rem;
    text-align: right;
    flex: 1;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .categories-wrapper {
        gap: 0.5rem;
    }
    
    .category-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .menu-detail-panel {
        position: static;
        max-height: none;
    }
}

/* Menu Item Detail Modal */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.menu-modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--dark-brown);
    border: 2px solid var(--warm-beige);
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--warm-beige);
    color: var(--dark-brown);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--light-beige);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--warm-beige);
    margin-bottom: 0.5rem;
}

.modal-price {
    color: var(--warm-beige);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.modal-description {
    color: var(--light-beige);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-details {
    background: var(--medium-brown);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-details h4 {
    color: var(--warm-beige);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.detail-label {
    color: var(--light-beige);
    font-weight: 500;
}

.detail-value {
    color: var(--warm-beige);
}

/* Menu Info Section */
.menu-info {
    padding: 4rem 0;
    background: var(--dark-brown);
}

.info-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--medium-brown);
    border-radius: 0.5rem;
    border: 1px solid var(--warm-brown);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-title {
    font-family: 'Playfair Display', serif;
    color: var(--warm-beige);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-description {
    color: var(--light-beige);
    font-weight: 300;
    line-height: 1.5;
}

/* Animation for menu items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Filter transition */
.menu-item.hidden {
    display: none;
}

.menu-item.show {
    display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 5rem 0 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .category-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .modal-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}