body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #101926;
    color: #e1caa7;
    line-height: 1.6;
    background-image: url('../../assets/menu-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    background-color: rgba(16, 25, 38, 0.92);
    min-height: 100vh;
    border-left: 1px solid #e1caa7;
    border-right: 1px solid #e1caa7;
}

.menu-header {
    text-align: center;
    padding: 3rem 2rem 1rem;
    border-bottom: 1px solid rgba(225, 202, 167, 0.3);
}

.menu-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #e1caa7;
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.intro-text {
    font-size: 1rem;
    color: rgba(225, 202, 167, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    margin: 1rem 0 0;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 1rem;
    overflow-x: auto;
    white-space: nowrap;
}

.tab-button {
    padding: 0.7rem 1.2rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(225, 202, 167, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.tab-button:hover {
    color: #e1caa7;
}

.tab-button.active {
    color: #e1caa7;
    border-bottom: 2px solid #e1caa7;
}

.menu-content {
    padding: 1rem 2.5rem 3rem;
}

.menu-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #e1caa7;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(225, 202, 167, 0.3);
    font-weight: 400;
    letter-spacing: 1px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(225, 202, 167, 0.2);
}

.item-name h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
    color: #e1caa7;
    letter-spacing: 0.5px;
}

.item-description {
    font-size: 0.9rem;
    color: rgba(225, 202, 167, 0.7);
    margin: 0.3rem 0 0;
    font-style: italic;
}

.item-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
    color: #e1caa7;
}

.menu-footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(225, 202, 167, 0.3);
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background: rgba(225, 202, 167, 0.1);
    color: #e1caa7;
    text-decoration: none;
    border: 1px solid rgba(225, 202, 167, 0.3);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.back-button i {
    margin-right: 0.8rem;
}

.back-button:hover {
    background: rgba(225, 202, 167, 0.2);
    border-color: #e1caa7;
}

.menu-note {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(225, 202, 167, 0.1);
    border-left: 3px solid #e1caa7;
    font-size: 0.9rem;
    color: rgba(225, 202, 167, 0.8);
    line-height: 1.6;
}

.menu-note p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {
    .menu-container {
        border-left: none;
        border-right: none;
    }
    
    .menu-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .menu-header h1 {
        font-size: 2.2rem;
    }
    
    .menu-content {
        padding: 1rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .menu-item {
        flex-direction: column;
    }
    
    .item-price {
        margin-left: 0;
        margin-top: 0.3rem;
    }
    
    .menu-header h1 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 0.9rem;
    }
    
    .tab-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}