/**
 * Menu Styles - Mantos Restaurant
 * 
 * This stylesheet contains styles specific to the restaurant menu page.
 * It leverages the base styles from the site and adds menu-specific styling.
 */

:root {
    --primary-color: #8B4513;
    --secondary-color: #FFD700;
    --accent-color: #4CAF50;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: rgba(255, 255, 255, 0.9);
    --border-radius: 8px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Background Styles - Using Season Background Image */
body {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Menu Container */
.menu-container {
    max-width: 900px;
    margin: 40px auto;
}

/* Menu Header */
.menu-header {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
}

.menu-title {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.menu-subtitle {
    font-size: 44px;
    color: var(--light-text);
    margin-top: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.season-badge {
    display: inline-block;
    background-color: rgba(139, 69, 19, 0.7);
    color: var(--light-text);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--secondary-color);
}

/* Menu Navigation */
.menu-navigation {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.menu-nav-item {
    display: inline-block;
    padding: 10px 25px;
    margin: 0 10px;
    background-color: rgba(139, 69, 19, 0.7);
    color: var(--light-text);
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-nav-item:hover,
.menu-nav-item.active {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Menu Content */
.menu-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 40px;
}

/* Menu Sections */
.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
}

.section-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

/* Menu Items */
.menu-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ccc;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-item-image-container {
    margin-right: 20px;
    flex-shrink: 0;
}

.menu-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--secondary-color);
}

.menu-item-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
}

.menu-item-details {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.menu-item-name {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 18px;
}

.menu-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.menu-item-description {
    margin-top: 5px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* Dietary Badges */
.dietary-badges {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    align-self: flex-start;
}

.badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50%;
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 16px;
}

.badge-vegetarian {
    background-color: #4CAF50;
    color: white;
}

.badge-vegan {
    background-color: #8BC34A;
    color: white;
}

.badge-gluten-free {
    background-color: #FFC107;
    color: #333;
}

.no-items-message {
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-container {
        margin: 20px auto;
    }
    
    .menu-content {
        padding: 20px;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-image-container {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .menu-item-content {
        flex-direction: column;
    }
    
    .menu-navigation {
        flex-wrap: wrap;
    }
    
    .menu-nav-item {
        margin-bottom: 10px;
    }
} 