/* Speisekarte Section Styles */

#speisekarte {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speisekarte-content {
    padding: 15vh 15vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    text-align: left;
}

/* Filter Container */
.filter-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e43147;
    color: #e43147;
    padding: 10px 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/*
.filter-square {
    width: 12px;
    height: 12px;
    margin-right: 8px;
}
*/
/* Filter Button Square Colors *
.filter-square[data-category="fleischlos"] {
    background: yellow;
}

.filter-square[data-category="natur-pur"] {
    background: #8BC34A;
}

.filter-square[data-category="auf-der-weide"] {
    background: #FF9800;
}

.filter-square[data-category="aus-der-see"] {
    background: #2196F3;
}

.filter-square[data-category="genuss"] {
    background: #9C27B0;
}*/

.filter-btn:hover,
.filter-btn.active {
    background: #e43147;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 49, 71, 0.3);
}

/* Speisekarte Grid */
.speisekarte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0px 0;
    transition: all 0.4s ease;
}

/* Gericht Cards */
.gericht-card {
    background: transparent;
    padding: 12px 20px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    position: relative;
    overflow: hidden;
}

.gericht-card:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.gericht-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gericht-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    box-shadow: none;
}

.gericht-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
    position: relative;
}

.gericht-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #f0f0f0;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.3px;
    flex: 1;
    margin-right: 15px;
    text-align: left;
}

.gericht-preis {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #e43147;
    white-space: nowrap;
}

.gericht-beschreibung {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.1;
    margin: 0;
    text-align: left;
}

/* Category Icons */
/*
.gericht-icon {
    position: absolute;
    right: 20px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}*/

.gericht-card:hover .gericht-icon {
    transform: scale(1.1);
}

/* Category Colors */
.gericht-icon[data-category="fleischlos"] {
    background: #4CAF50;
}

.gericht-icon[data-category="natur-pur"] {
    background: #8BC34A;
}

.gericht-icon[data-category="auf-der-weide"] {
    background: #FF9800;
}

.gericht-icon[data-category="aus-der-see"] {
    background: #2196F3;
}

.gericht-icon[data-category="genuss"] {
    background: #9C27B0;
}

.speisekarte-hinweis {
    margin-top: 50px;
    padding: 30px;
}

.speisekarte-hinweis p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.menu-btn {
    background: transparent;
    border: 2px solid #e43147;
    color: #e43147;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.menu-btn:hover {
    background: #e43147;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 49, 71, 0.3);
}

.menu-btn a {
    color: inherit;
    text-decoration: none;
}

.menu-btn:hover a {
    color: inherit;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .speisekarte-content {
        padding: 15vh 10vh;
    }
    
    .speisekarte-grid {
        /* Use full width */
    }
}

@media (max-width: 991px) {
    .speisekarte-grid {
        margin: 30px 0;
    }
    
    .filter-container {
        gap: 10px;
        margin: 30px 0;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .speisekarte-content {
        padding: 10vh 5vh;
    }
    
    .filter-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        margin: 25px 0;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
        justify-content: center;
        text-align: center;
    }
    
    .speisekarte-grid {
        grid-template-columns: 1fr;
        margin: 25px 0;
    }
    
    .gericht-card:nth-child(odd) {
        border-right: none;
    }
    
    .gericht-card {
        padding: 12px 15px;
    }
    
    .gericht-header h3 {
        font-size: 0.9rem;
    }
    
    .gericht-preis {
        font-size: 0.9rem;
    }
    
    .gericht-beschreibung {
        font-size: 0.7rem;
    }
    
    .speisekarte-hinweis {
        margin-top: 25px;
        padding: 20px;
    }
    
    .menu-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .speisekarte-content {
        padding: 8vh 4vh;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        justify-content: center;
        text-align: center;
    }
    
    .speisekarte-grid {
        grid-template-columns: 1fr;
    }
    
    .gericht-card {
        padding: 10px 12px;
    }
    
    .gericht-header h3 {
        font-size: 0.85rem;
    }
    
    .gericht-preis {
        font-size: 0.85rem;
    }
    
    .gericht-beschreibung {
        font-size: 0.65rem;
    }
    
    .gericht-icon {
        width: 8px;
        height: 8px;
        right: 10px;
    }
    
    .filter-square {
        width: 10px;
        height: 10px;
        margin-right: 6px;
    }
    
    .speisekarte-hinweis p {
        font-size: 0.85rem;
    }
} 