/* Styles pour la page Menu */

.page-banner {
    background-color: rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
}

.page-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.menu-section {
    padding: 5rem 10%;
    background-color: #fff;
}

.menu-category {
    color: #8b5a2b;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.menu-category::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #d4a76a;
    margin: 0.5rem auto 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-item {
    background-color: #f9f5f0;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed #d4a76a;
    padding-bottom: 0.8rem;
}

.menu-item h4 {
    color: #2d2013;
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.price {
    font-weight: 700;
    color: #8b5a2b;
}

.description {
    color: #666;
    font-size: 0.95rem;
}

.menu-specials {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.special-item {
    background-color: #d4a76a;
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.special-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.special-item .price {
    color: #f9f5f0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: block;
}

.ice-cream-promo {
    background-color: rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
    padding: 4rem 10%;
    text-align: center;
    color: #fff;
}

.promo-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.ice-cream-btn {
    background-color: #d4a76a;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.ice-cream-btn:hover {
    background-color: #8b5a2b;
    transform: scale(1.05);
}
.pricing-card{
    margin-bottom: 40px;
}

/* Responsive styles for menu page */
@media screen and (max-width: 768px) {
    .page-banner {
        padding: 3rem 1rem;
    }

    .page-banner h2 {
        font-size: 2rem;
    }

    .menu-section {
        padding: 3rem 5%;
    }

    .menu-category {
        font-size: 1.8rem;
    }

    .menu-grid, .menu-specials {
        grid-template-columns: 1fr;
    }

    .ice-cream-promo {
        padding: 3rem 5%;
    }

    .promo-content h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        margin-top: 0.5rem;
    }

    .promo-content h3 {
        font-size: 1.8rem;
    }

    .promo-content p {
        font-size: 1rem;
    }
}
