
/* ========================================= */
/* TEXTE DÉFILANT PUBLICITAIRE ÉLÉGANT     */
/* ========================================= */

.marquee-container {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.marquee-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
  z-index: 1;
}

.marquee-content {
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 2;
  position: relative;
}

.marquee-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 0 30px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

/* Animation du texte défilant */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Animation shimmer pour l'effet brillant */
@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Effet de pause au survol */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-container:hover {
  background: linear-gradient(135deg, #e55a2b 0%, #e8831a 50%, #e55a2b 100%);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive design pour le texte défilant */
@media (max-width: 768px) {
  .marquee-container {
    height: 50px;
    border-radius: 12px;
  }
  
  .marquee-text {
    font-size: 0.95rem;
    padding: 0 20px;
    gap: 15px;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-120%);
    }
  }
}

@media (max-width: 480px) {
  .marquee-container {
    height: 45px;
    border-radius: 10px;
  }
  
  .marquee-text {
    font-size: 0.85rem;
    padding: 0 15px;
    gap: 12px;
  }
}

/* Animation d'entrée pour le conteneur */
.marquee-container {
  animation: slideInFromRight 1s ease-out;
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================= */
/* FIN DU TEXTE DÉFILANT PUBLICITAIRE      */
/* ========================================= */

/* Page Accueil - Cartes améliorées */
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.icon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s;
}

.img-fluidlogo{
    height: 100px;
    width: 200%;
}

.icon-style {
  font-size: 44px;
  color: var(--primary-color);
  padding: 18px;
  border-radius: 50%;
  transition: var(--transition);
  background: rgba(255, 107, 53, 0.1);
  position: relative;
  z-index: 2;
}

.card-link:hover .icon-card {
  background: var(--gradient-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.card-link:hover .icon-card::before {
  left: 100%;
}

.card-link:hover .icon-style {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: scale(1.1);
}

.card-link:hover p {
  color: white;
  font-weight: 600;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}


/* Page Menu & Carte - Améliorations */

.header-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0;
  justify-content: space-between;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.menu-card {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 90px;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
  transition: left 0.6s;
}

.menu-card:hover {
  background: linear-gradient(135deg, #fff3ed 0%, #fef7f0 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.menu-card:hover::before {
  left: 100%;
}

.menu-card i {
  font-size: 2.5rem;
  margin-right: 25px;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: var(--transition);
  padding: 15px;
  background: rgba(255, 107, 53, 0.12);
  border-radius: 15px;
  min-width: 70px;
  text-align: center;
}

.menu-card:hover i {
  color: var(--primary-color);
  background: rgba(255, 107, 53, 0.15);
  transform: scale(1.1);
}

.menu-card .content {
  flex-grow: 1;
}

.menu-card .content h5 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.menu-card:hover .content h5 {
  color: var(--primary-color);
}

.menu-card .content p {
  margin: 0;
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.menu-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  transition: var(--transition);
}

.menu-card:hover img {
  transform: scale(1.05);
}

/* Liens de cartes */
.menu-card .card-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}



  


      /* ========================================= */
      /* DESIGN SYSTÈME DES BOUTONS AMÉLIORÉS   */
      /* ========================================= */

      /* Variables CSS pour cohérence */
      :root {
        --primary-color: #ff6b35;
        --secondary-color: #f7931e;
        --success-color: #28a745;
        --danger-color: #dc3545;
        --warning-color: #ffc107;
        --info-color: #17a2b8;
        --light-color: #f8f9fa;
        --dark-color: #343a40;
        --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        --gradient-success: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        --gradient-danger: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
        --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
        --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
        --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.2);
        --border-radius: 12px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      /* Boutons principaux modernisés */
      .btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.5;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
        vertical-align: middle;
        cursor: pointer;
        user-select: none;
        border: 2px solid transparent;
        border-radius: var(--border-radius);
        transition: var(--transition);
        box-shadow: var(--shadow-light);
        overflow: hidden;
      }

      .btn:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
      }

      .btn:hover:before {
        left: 100%;
      }

      .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-heavy);
      }

      .btn:active {
        transform: translateY(0);
        box-shadow: var(--shadow-light);
      }

      .btn:focus {
        outline: none;
        box-shadow: var(--shadow-medium), 0 0 0 3px rgba(255, 107, 53, 0.25);
      }

      /* Bouton Primary (Action principale) */
      .btn-primary {
        background: var(--gradient-primary);
        color: white;
        border-color: var(--primary-color);
      }

      .btn-primary:hover {
        background: linear-gradient(135deg, #e55a2b 0%, #e8831a 100%);
        border-color: #e55a2b;
        color: white;
      }

      /* Bouton Success (Commandes, validations) */
      .btn-success {
        background: var(--gradient-success);
        color: white;
        border-color: var(--success-color);
      }

      .btn-success:hover {
        background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
        border-color: #1e7e34;
        color: white;
      }

      /* Boutons Outline modernisés */
      .btn-outline-primary {
        background: transparent;
        color: var(--primary-color);
        border-color: var(--primary-color);
      }

      .btn-outline-primary:hover {
        background: var(--gradient-primary);
        color: white;
        border-color: var(--primary-color);
      }

      .btn-outline-secondary {
        background: transparent;
        color: var(--dark-color);
        border-color: #6c757d;
      }

      .btn-outline-secondary:hover {
        background: #6c757d;
        color: white;
        border-color: #6c757d;
      }

      .btn-outline-success {
        background: transparent;
        color: var(--success-color);
        border-color: var(--success-color);
      }

      .btn-outline-success:hover {
        background: var(--gradient-success);
        color: white;
        border-color: var(--success-color);
      }

      /* Tailles des boutons */
      .btn-sm {
        padding: 8px 16px;
        font-size: 0.875rem;
        border-radius: 8px;
      }

      .btn-lg {
        padding: 16px 32px;
        font-size: 1.125rem;
        border-radius: 16px;
      }

      .btn-xl {
        padding: 20px 40px;
        font-size: 1.25rem;
        border-radius: 20px;
        font-weight: 700;
      }

      /* Bouton avec icônes */
      .btn i {
        font-size: 1.1em;
        transition: transform 0.3s ease;
      }

      .btn:hover i {
        transform: scale(1.1);
      }

      /* Boutons flottants (FAB) */
      .btn-floating {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        box-shadow: var(--shadow-heavy);
      }

      .btn-floating:hover {
        transform: scale(1.1);
      }

      /* Boutons de panier améliorés */
      .btn-panier {
        background: var(--gradient-primary);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: var(--border-radius);
        font-weight: 600;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
      }

      .btn-panier:hover {
        background: linear-gradient(135deg, #e55a2b 0%, #e8831a 100%);
        transform: translateY(-2px);
        box-shadow: var(--shadow-heavy);
        color: white;
      }

      .btn-panier i {
        margin-right: 8px;
      }

      /* Boutons de partage */
      .btn-partager {
        background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: var(--border-radius);
        font-weight: 600;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .btn-partager:hover {
        background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
        transform: translateY(-2px);
        box-shadow: var(--shadow-heavy);
        color: white;
      }

      /* Boutons de retour */
      .btn-retour {
        background: transparent;
        color: var(--dark-color);
        border: 2px solid #dee2e6;
        padding: 10px 20px;
        border-radius: var(--border-radius);
        font-weight: 600;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      .btn-retour:hover {
        background: var(--light-color);
        border-color: #adb5bd;
        color: var(--dark-color);
        transform: translateY(-1px);
      }

      /* Amélioration du bouton panier dans le header */
      .panier-icon {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        background: white;
        border-radius: 50%;
        box-shadow: var(--shadow-medium);
        transition: var(--transition);
        cursor: pointer;
      }

      .panier-icon:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-heavy);
      }

      .panier-icon img {
        width: 32px;
        height: 32px;
        transition: transform 0.3s ease;
      }

      .panier-icon:hover img {
        transform: scale(1.1);
      }

      .panier-icon .badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--gradient-danger);
        color: white;
        font-size: 12px;
        font-weight: bold;
        padding: 4px 8px;
        border-radius: 12px;
        min-width: 20px;
        text-align: center;
        box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
      }

      /* Boutons états disabled */
      .btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none !important;
        box-shadow: var(--shadow-light) !important;
      }

      .btn:disabled:hover {
        transform: none;
        box-shadow: var(--shadow-light);
      }

      /* Boutons de groupe */
      .btn-group {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
      }

      .btn-group .btn {
        flex: 1;
      }

      /* Responsive design pour les boutons */
      @media (max-width: 768px) {
        .btn {
          padding: 10px 16px;
          font-size: 0.9rem;
        }

        .btn-lg {
          padding: 14px 24px;
          font-size: 1rem;
        }

        .btn-xl {
          padding: 16px 28px;
          font-size: 1.1rem;
        }

        .btn-floating {
          width: 48px;
          height: 48px;
          bottom: 16px;
          right: 16px;
        }

        .btn-group {
          flex-direction: column;
        }

        .btn-group .btn {
          width: 100%;
        }
      }

      /* Animation de chargement pour les boutons */
      .btn-loading {
        position: relative;
        color: transparent;
      }

      .btn-loading::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        top: 50%;
        left: 50%;
        margin-left: -8px;
        margin-top: -8px;
        border: 2px solid #ffffff;
        border-radius: 50%;
        border-top-color: transparent;
        animation: spin 1s linear infinite;
      }

      @keyframes spin {
        to { transform: rotate(360deg); }
      }

      /* ========================================= */
      /* FIN DU SYSTÈME DE BOUTONS AMÉLIORÉS     */
      /* ========================================= */

      /* Gestion de footer  */

.footer a {
  text-decoration: none;
}

/* ========================================= */
/* RESPONSIVE MOBILE OPTIMISÉ               */
/* ========================================= */

/* Limitation de la hauteur de l'image bannière pour tous les écrans */
.container-fluid img {
  max-height: 250px;
  height: auto;
  object-fit: contain;
  width: 100%;
}

@media (max-width: 768px) {
  /* Bannières d'images optimisées pour mobile - taille réduite */
  .container-fluid img {
    height: auto !important;
    max-height: 120px !important;
    object-fit: contain;
  }
  
  /* En-têtes avec meilleur espacement */
  .header-section {
    padding: 15px 0;
    margin: 20px 0;
  }
  
  .header-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
  }
  
  /* Cartes menu optimisées pour mobile */
  .menu-card {
    padding: 20px 15px;
    margin-bottom: 15px;
    min-height: 85px;
  }
  
  .menu-card i {
    font-size: 2.2rem;
    margin-right: 20px;
    padding: 12px;
    min-width: 60px;
  }
  
  .menu-card .content h5 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  
  .menu-card .content p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  /* Container avec bon padding */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .header-section h2 {
    font-size: 1.4rem;
  }
  
  .menu-card {
    padding: 18px 12px;
  }
  
  .menu-card i {
    font-size: 2rem;
    margin-right: 15px;
    padding: 10px;
    min-width: 55px;
  }
  
  .menu-card .content h5 {
    font-size: 1.2rem;
  }
  
  .menu-card .content p {
    font-size: 0.9rem;
  }
}
     