/* Footer */

.footer-clean {
  padding:50px 0;
  background-color: #f8f9fa;
  color:#020202;
}

.footer-clean h3 {
  margin-top:0;
  margin-bottom:12px;
  font-weight:bold;
  font-size:16px;
}

.footer-clean ul {
  padding:0;
  list-style:none;
  line-height:1.6;
  font-size:14px;
  margin-bottom:0;
}

.footer-clean ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.8;
}

.footer-clean ul a:hover {
  opacity:1;
}

.footer-clean .item.social {
  text-align:right;
}

@media (max-width:767px) {
  .footer-clean .item {
    text-align:center;
    padding-bottom:20px;
  }
}

@media (max-width: 768px) {
  .footer-clean .item.social {
    text-align:center;
  }
}


.footer-clean .item.social > a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin-left: 10px;
  margin-top: 22px;
  background: #fff;
  overflow: hidden;
  padding: 0;
}

.footer-clean .item.social > a:hover {
  opacity:0.9;
}

@media (max-width:991px) {
  .footer-clean .item.social > a {
    margin-top:40px;
  }
}

@media (max-width:767px) {
  .footer-clean .item.social > a {
    margin-top:10px;
  }
}

.footer-clean .copyright {
  margin-top:14px;
  margin-bottom:0;
  font-size:13px;
  opacity:0.6;
}

.footer-social-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
    border-radius: 0;
    display: block;
}


/* Image de fond */
.hero-section {
    background-image: url('/images/burger1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5); /* effet assombrissant */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* au-dessus de l'image + filtre */
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 1rem;
    width: 400px;;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    display: flex;
    justify-content: center;}
.burger-image {
    width: 100%;
    height: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.logo-navbar {
  height: 50px; /* Ajuste la hauteur ici */
  width: auto;  /* Pour garder les proportions */
  padding: 0;
  margin: 0;
  margin-right: 100px;
  border-radius: 10px; /* Coins arrondis */
}
.navbar-transparent {
  background: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  box-shadow: none !important;
}
 .hero {
      height: 100vh;
      background: url('https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .hero a.btn-order {
      background-color: #ff9900;
      color: white;
      padding: 15px 30px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 30px;
      transition: background-color 0.3s ease;
    }

    .hero a.btn-order:hover {
      background-color: #e68200;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }

    .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  z-index: 10;
  padding: 10px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Menu burger pour mobile et tablette */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  margin-left: auto;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Animation du burger menu quand ouvert */
.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive pour tablettes et mobiles */
@media (max-width: 1024px) {
  .burger-menu {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 10px;
    right: -100%;
    height: 50vh;
    width: 250px;
    background-color: #10222e;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    gap: 8px;
    padding: 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    border-radius: 0 0 0 15px; /* Coins arrondis seulement en bas à gauche */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Animation séquentielle des liens */
  .nav-links.active li:nth-child(1) { 
    transition-delay: 0.1s; 
    margin-top: 15px; /* Marge au-dessus d'Accueil */
  }
  .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
  .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
  
  .nav-links a {
    font-size: 0.95rem;
    padding: 6px 20px;
    border-radius: 8px;
    width: 150px;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  
  .nav-links a:hover {
    background-color: rgba(255,153,0,0.2);
  }
  
  /* Styles spéciaux pour le bouton de traduction sur mobile */
  .nav-links #lang-toggle {
    background-color: transparent;
    border: 2px solid #ecca06;
    color: #ecca06;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
    margin-bottom: 15px; /* Marge en dessous du bouton de traduction */
    flex-shrink: 0; /* Empêche la compression */
    order: 999; /* Force l'élément à être en dernier */
    position: relative;
  }
  
  .nav-links #lang-toggle:hover {
    background-color: #ecca06;
    color: #10222e;
    transform: scale(1.05);
  }
  
  .nav-links #lang-toggle img {
    margin-right: 8px;
  }
  
  .navbar-container {
    justify-content: space-between;
  }
}

/* Fix spécifique pour Chrome Android */
@media (max-width: 1024px) {
  .nav-links {
    /* Force l'affichage correct sur Chrome mobile */
    contain: layout style;
    will-change: transform;
  }
  
  .nav-links #lang-toggle {
    /* S'assure que le bouton est toujours visible */
    position: sticky;
    bottom: 20px;
    z-index: 1001;
    margin-bottom: 0;
  }
}

/* Styles supplémentaires pour très petits écrans */
@media (max-width: 480px) {
  .nav-links {
    width: 220px;
    gap: 6px;
    padding: 20px 8px;
    height: 50vh;
    top: 10px;
    justify-content: space-evenly;
  }
  
  .nav-links a {
    font-size: 0.85rem;
    padding: 6px 12px;
    width: 130px;
  }
  
  /* Marge spéciale pour le premier élément (Accueil) sur petits écrans */
  .nav-links li:first-child {
    margin-top: 0px;
  }
  
  .nav-links #lang-toggle {
    width: 75px;
    padding: 6px 8px;
    font-size: 0.8rem;
    margin-top: 0px;
    margin-bottom: 0px; /* Marge en dessous pour petits écrans */
  }
  
  .nav-links #lang-toggle img {
    width: 12px;
    height: 9px;
    margin-right: 4px;
  }
}

/* Styles pour écrans très hauts (téléphones pliables ou paysage) */
@media (max-height: 600px) and (max-width: 1024px) {
  .nav-links {
    gap: 2px;
    padding: 10px 20px;
    justify-content: center;
    height: auto;
    max-height: 50vh;
    top: 25%;
  }
  
  .nav-links a {
    padding: 5px 15px;
    font-size: 0.85rem;
  }
  
  .nav-links #lang-toggle {
    padding: 6px 12px;
    margin-top: 0;
  }
}

/* Spécifique mobile */
@media (max-width: 768px) {
  .menu {
    padding: 10px 20px;
  }
  
  .nav-links {
    width: 230px;
    gap: 8px;
    padding: 20px 8px;
    height: 50vh;
    top: 10px;
    justify-content: space-evenly;
  }
  
  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
  
  /* Marge spéciale pour le premier élément (Accueil) sur écrans moyens */
  .nav-links li:first-child {
    margin-top: 0px;
  }
  
  .nav-links #lang-toggle {
    padding: 6px 10px;
    font-size: 0.85rem;
    width: 80px;
    margin-top: 0px;
    margin-bottom: 0px; /* Marge en dessous pour écrans moyens */
  }
  
  .logo-navbar {
    width: 80px;
    height: 80px;
    border-radius: 10px; /* Coins arrondis */
  }
}

/* Optimisation équilibrée pour mobiles en mode portrait */
@media (max-width: 600px) and (orientation: portrait) {
  .nav-links {
    gap: 7px !important;
    padding: 20px 5px !important;
    height: 50vh !important;
    top: 10px !important;
    justify-content: space-evenly !important;
  }
  
  .nav-links a {
    font-size: 0.85rem !important;
    padding: 5px 10px !important;
  }
  
  .nav-links li:first-child {
    margin-top: 0px !important;
  }
  
  .nav-links #lang-toggle {
    width: 75px !important;
    padding: 5px 6px !important;
    font-size: 0.75rem !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  
  .nav-links #lang-toggle img {
    width: 14px !important;
    height: 10px !important;
    margin-right: 4px !important;
  }
}

/* Overlay pour fermer le menu en cliquant à côté */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 5;
}

.nav-overlay.active {
  display: block;
}

@media (max-width: 1024px) {
  .nav-overlay.active {
    display: block;
  }
}
.home-page .menu {
  background-color: transparent;
}

.other-page .menu {
  background-color: #10222e; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.logo-navbar {
    width: 100px;
  height: 100px;
  width: auto;
  border-radius: 10px; /* Coins arrondis */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 120px;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff9900;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.search-form button {
  padding: 5px 15px;
  border-radius: 20px;
  border: none;
  background-color: #ff9900;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-form button:hover {
  background-color: #e68200;
}


.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stars {
  font-size: 1.2rem;
  color: #ffc107;
  margin-bottom: 10px;
}

.quote {
  font-style: italic;
  font-size: 0.95rem;
  color: #555;
}

.author {
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}
.container {
  max-width: 600px;
    margin: 0 auto; 
    padding: 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px    rgba(0, 0, 0, 0.3);
}
.container h2 {
    margin-bottom: 10px;
}
.container p {
    line-height: 1.4;
}
.product-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    float: left;
    shape-outside: margin-box;
    margin: 0 20px 5px 0;
}
/* FORMULAIRE */

.contact-form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form fieldset {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
}

.contact-form legend {
  font-weight: bold;
  padding: 0 10px;
}

.contact-form button {
  background-color: #2d89ef;
  color: white;
  padding: 12px;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #1b5fa7;
}

.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px auto;
}

.contact-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.contact-icons img:hover {
  transform: scale(1.1);
}
.title-contact {
padding: 100px;
}

.menu.navbar-colored {
  background: #10222e !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.menu .nav-links a,
.menu .logo-navbar {
  transition: color 0.3s;
}
.menu.navbar-colored .nav-links a {
  color: #fff !important;
}
.menu.navbar-colored .logo-navbar {
  filter: brightness(1.2);
}
/* Panier (cart-modal) */
.cart-modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 30px 25px 20px 25px;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  border: 2px solid #ecca06;
}
#cart-modal h4 {
  font-weight: bold;
  color: #10222e;
  margin-bottom: 20px;
}
#cart-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 1rem;
}
#cart-items img {
  border-radius: 6px;
  margin-right: 10px;
}
.btn-remove-cart {
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.95em;
  margin-left: 18px;
  transition: background 0.2s;
}
.btn-remove-cart:hover {
  background: #c0392b;
}
#clear-cart {
  background: #e74c3c;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  margin-top: 10px;
  margin-right: 10px;
  transition: background 0.2s;
}
#clear-cart:hover {
  background: #c0392b;
}
#close-cart,
#validate-cart {
  border-radius: 8px;
  font-weight: bold;
  margin-top: 10px;
  min-width: 0;
  width: 90%;
  max-width: 140px;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}

/* Ajout de style spécifique à la page Commandes */
.commandes-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
  padding-top: 40px;
  padding-bottom: 40px;
}
.commandes-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #10222e;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 1px;
}
.commandes-recap-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(16,34,46,0.08);
  padding: 32px 24px 24px 24px;
  max-width: 600px;
  margin: 0 auto 30px auto;
  border: 2px solid #10222e; /* bleu foncé */
}
.commandes-table th {
  background: #ecca06;
  color: #10222e;
  font-weight: bold;
  text-align: center;
}
.commandes-table td {
  text-align: center;
  vertical-align: middle;
}
#panier-total {
  font-size: 1.2rem;
  color: #10222e;
  text-align: right;
  margin-bottom: 10px;
}
#confirmer-commande {
  display: block;
  margin: 30px auto 0 auto;
  background: #10222e; /* bleu foncé */
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  padding: 14px 36px;
  font-size: 1.1rem;
  border: none;
  transition: background 0.2s;
}
#confirmer-commande:hover {
  background: #0a1620; /* bleu foncé plus sombre */
}
#confirmation .card {
  border-radius: 18px;
  border: 2px solid #10222e; /* bleu foncé */
}
@media (max-width: 600px) {
  .commandes-recap-card {
    padding: 18px 6px 18px 6px;
  }
  .commandes-title {
    font-size: 1.3rem;
  }
  .commandes-table th, .commandes-table td {
    font-size: 0.95rem;
    padding: 6px;
  }
}