.menu-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 5rem;
}


.menu-card {
    width: 320px;
    height: 420px;

    display: flex;
    flex-direction: column;

    border-radius: 24px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);

    transition: 0.25s ease;
}

.menu-card img {
    width: 100%;
    height: 55%;
    object-fit: cover;
}


.menu-content {
    padding: 1.2rem;
}

.menu-content h2 {
    margin: 0;
    font-size: 1.4rem;
}

.menu-desc {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.4;
}


.menu-btn {
    margin: 1rem;
    padding: 10px 16px;

    text-align: center;
    text-decoration: none;

    border-radius: 999px;

    background: rgba(0, 0, 0, 0.884);
    color: white;

    font-weight: 600;

    transition: 0.2s ease;
}

.menu-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.sectionTitleDrinks {
    font-weight: bold;
    font-size: 2rem;
}


/* Tablette */
@media (max-width: 900px) {

    .menuItem {
        gap: 1rem;
    }

    .menuInfo h3 {
        font-size: 1.05rem;
    }

    .price {
        white-space: nowrap;
    }

    .sectionTitleDrinks {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 650px) {

    .sectionMenus {
        padding: 0 1rem;
    }

    .menuItem {
        gap: 0.75rem;
    }

    .menuInfo {
        min-width: 0;
    }

    .menuInfo h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .menuInfo p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .menuInfo small {
        font-size: 0.8rem;
    }

    .price {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .menuLine {
        margin: 0 0.5rem;
    }

    .menuTitle {
        font-size: 1.5rem;
    }

    .subMenuTitle {
        font-size: 1.15rem;
        margin-top: 1rem;
    }

    .sectionTitleDrinks {
        font-size: 1.2rem;

    }
}