/**
 * Fichier: css/responsive.css
 * Ajouté le: 2026-01-21 06:23:36
 */

/* ======================= RESPONSIVE ======================= */
@media screen and (max-width: 992px) {
    .menu-cards-container,
    .shop-cards-container,
    .promotions-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .logo-header h1 {
        font-size: 2.2rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .main-nav a {
        padding: 0.7rem 0.9rem;
        font-size: 0.8rem;
    }

    .modal-shop-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .tab {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
    
    .sidebar.open + .content {
        margin-left: 0;
    }
    
    .menu-cards-container,
    .shop-cards-container,
    .promotions-grid,
    .shop-categories {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .logo-header h1 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 4rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }

    .event-card {
        width: 100%;
    }

    .navigation-actions {
        flex-direction: column;
    }

    .btn-primary, 
    .btn-secondary {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .social-icons {
        justify-content: center;
    }
}
/* Modifications à ajouter à votre fichier responsive.css */
@media screen and (max-width: 768px) {
    /* Autres règles existantes... */
    
    /* Ajuster la hauteur des cartes de menu pour mobile */
    .menu-card {
        height: 250px; /* Augmenter la hauteur pour plus d'espace */
    }
    
    /* Optimiser la disposition de la face arrière */
    .menu-card-back {
        padding: 1rem;
    }
    
    /* Assurer que le bouton soit visible */
    .menu-card-btn {
        position: relative;
        bottom: 0;
        margin-top: 0.5rem;
        padding: 0.5rem 1rem;
        display: block;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}



@media screen and (max-width: 576px) {
    .menu-cards-container,
    .shop-cards-container,
    .promotions-grid,
    .shop-categories {
        grid-template-columns: 1fr;
    }
    
    .menu-card {
        height: 270px;
    }
    .menu-card-back p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .logo-header h1 {
        font-size: 1.6rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .btn-primary, 
    .btn-secondary {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    
    .promotion-title,
    .event-title,
    .shop-name {
        font-size: 1.1rem;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
    }
    
    .category-header i {
        font-size: 1.6rem;
    }

    .close-modal {
        top: 10px;
        right: 10px;
    }

    .modal-content {
        padding: 15px;
        width: 95%;
    }
}