body{
    margin: 0;
    font-family: arial sans-serif;
}
/* Animation clignotante pour attirer l'attention */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Style magique pour le header top */
/* Correction pour mobile - version améliorée */
@media (max-width: 768px) {
  .header-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* Espacement entre les éléments */
    padding: 12px 0;
  }
  
  .contact-info {
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }
  
  .contact-info:not(:last-child) {
    border-bottom: 1px solid rgba(255, 101, 0, 0.2); /* Ligne de séparation subtile */
  }
  
  .contact-info i {
    margin-right: 12px; /* Plus d'espace entre l'icône et le texte */
    font-size: 1.2em; /* Taille d'icône légèrement augmentée */
  }
  
  .contact-info a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .contact-info a {
    min-height: 44px; /* Taille minimale recommandée pour les zones tactiles */
  }
  
  .whatsapp {
    background-color: rgba(255, 101, 0, 0.1);
    border-radius: 24px;
    padding: 8px 20px !important;
    transition: all 0.3s;
  }
  
  .whatsapp:hover {
    background-color: rgba(255, 101, 0, 0.2);
  }
}

/* RESET & BASE */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* === NAVBAR PRINCIPALE === */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(6px);
    transition: all 0.4s ease-in-out;
    animation: fadeSlideDown 1s ease forwards;
  }
  
  .logo img {
    height: 130px;
    filter: brightness(0);
    transition: transform 0.3s ease;
  }
  .logo img:hover {
    transform: scale(1.08);
  }
  
  /* MENU NAVIGATION */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease-in-out;
  }
  
  .nav-links li a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s ease;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: #FF6500;
    transition: width 0.3s ease-in-out;
  }
  
  .nav-links li a:hover {
    color: #FF6500;
  }
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  /* BOUTON LOGIN */
  .btn-login {
    padding: 8px 18px;
    border-radius: 30px;
    background-color: #FF6500;
    color: #fff important!;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(255, 101, 0, 0.4);
    transition: all 0.4s ease-in-out;
  }
  .btn-login:hover {
    background-color: #e25900;
    box-shadow: 0 0 20px rgba(255, 101, 0, 0.6);
    transform: scale(1.05);
  }
  
  /* ICONES BURGER */
  .menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #FF6500;
  }
  
  /* INPUT CHECKBOX */
  #menu-toggle {
    display: none;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .menu-icon {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      flex-direction: column;
      background: white;
      padding: 20px 0;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      display: none;
    }
  
    .nav-links li {
      margin: 10px 0;
      text-align: center;
    }
  
    #menu-toggle:checked + .menu-icon + .nav-links {
      display: flex;
      animation: fadeIn 0.5s ease forwards;
    }
  }
  
  /* ANIMATIONS */
  @keyframes fadeSlideDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
