/**
 * Styles pour la page Menu - Papageno
 * Styles élégants et cohérents avec l'identité du restaurant
 */

/* === SECTION HERO === */
.menu-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F3A36, #082621);
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.menu-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8894A;
}

.menu-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.95;
}

/* === SECTION MENU === */
.menu-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* === NAVIGATION CATÉGORIES === */
.menu-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #B8894A;
}

.menu-nav-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #0F3A36;
    color: #0F3A36;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-nav-btn:hover,
.menu-nav-btn.active {
    background: #0F3A36;
    color: #B8894A;
    transform: translateY(-2px);
}

/* === CATÉGORIES DE MENU === */
.menu-category {
    margin-bottom: 80px;
}

.menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0F3A36;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B8894A, transparent);
}

.menu-subcategory-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #B8894A;
    margin: 40px 0 30px;
    text-align: center;
}

/* === GRILLE DES ITEMS === */
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #B8894A;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #0F3A36;
    font-weight: 600;
    flex: 1;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #B8894A;
    font-weight: 700;
    margin-left: 20px;
    white-space: nowrap;
}

.menu-item-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.menu-item-note {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

/* === SECTION ACCOMPAGNEMENTS === */
.menu-note-section {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    border-left: 4px solid #ffc107;
}

.menu-note-section h4 {
    font-family: 'Playfair Display', serif;
    color: #0F3A36;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.menu-note-section p {
    font-family: 'Cormorant Garamond', serif;
    color: #666;
    line-height: 1.8;
    margin: 5px 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-nav {
        gap: 10px;
    }

    .menu-nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .menu-section {
        padding: 50px 15px;
    }

    .menu-category {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .menu-item {
        padding: 20px;
    }

    .menu-item-name {
        font-size: 1.2rem;
    }

    .menu-item-price {
        font-size: 1.1rem;
    }

    .menu-item-description {
        font-size: 1rem;
    }
}
