    /* === GLOBAL === */
    * {
      box-sizing: border-box;
  }

  body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: #222;
  }

/* === NAVIGATION === */
.conteneur-nav-Anlygne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.menu-mobile-Anlygne {
  display: flex;
  align-items: center;
  gap: 20px;
}

.barre-navigation-Anlygne {
  padding: 10px 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navigation-interne-Anlygne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.15); /* fond transparent */
  border: 1px solid rgba(255, 255, 255, 0.2); /* bord translucide */
  padding: 10px 30px;
  border-radius: 15px;
  backdrop-filter: blur(15px); /* flou d’arrière-plan */
  -webkit-backdrop-filter: blur(15px); /* support Safari */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* ombre douce */
}

.logo-Anlygne {
  font-size: 24px;
  display: flex;
  align-items: center;
}

.image-logo-header-Anlygne {
  height: 32px;
  object-fit: contain;
  display: block;
}


.menu-Anlygne {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu-Anlygne li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.2s;
}

.menu-Anlygne li a:hover {
  color: #555;
}

.menu-toggle-Anlygne {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.bouton-cta-Anlygne {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px;
  text-decoration: none;
}

/* === HERO === */
.accroche-Anlygne {
  min-height: 100vh;
  background: linear-gradient(180deg, #a3d8f4, #f5f5f5);/*image : url('image.jpg') center/cover no-repeat */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.conteneur-accroche-Anlygne {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.contenu-accroche-Anlygne {
  flex: 1 1 30%;
  min-width: 280px;
}

.mockup-application-Anlygne {
  flex: 1 1 35%;
  justify-content: center;
}

.badge-Anlygne {
  background-color: #ffd94d;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
}

.message-anlygne {
  background-color: #27ae60;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  max-width: 400px;
}

/* === FORMULAIRE RESTAURANT ÉTAPE 2 === */
.formulaire-contact-Anlygne {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  max-width: 500px;
  margin: 0 auto;
  animation: fadein-formulaire 0.4s ease-in-out;
}

.formulaire-contact-Anlygne input[type="text"],
.formulaire-contact-Anlygne input[type="password"],
.formulaire-contact-Anlygne input[type="file"],
.formulaire-contact-Anlygne input[type="email"],
.formulaire-contact-Anlygne textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  width: 100%;
  font-family: inherit;
}

.formulaire-contact-Anlygne textarea {
  resize: vertical;
  min-height: 80px;
}

.groupe-double-Anlygne {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.groupe-double-Anlygne input {
  flex: 1 1 48%;
}

.checkbox-anlygne {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  color: #444;
}

.checkbox-anlygne a {
  color: #000;
  text-decoration: underline;
}

.cta-button-anlygne {
  background-color: #000;
  color: #fff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button-anlygne:hover {
  background-color: #333;
}

.formulaire-contact-Anlygne input[type="file"] {
  background-color: #f9f9f9;
  padding: 10px;
  cursor: pointer;
}

.formulaire-contact-Anlygne input[type="file"]::file-selector-button {
  background: #000;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
}


.titre-principal-Anlygne {
  font-size: 36px;
  margin: 0 0 15px;
}

.texte-description-Anlygne {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.boutons-telechargement-Anlygne button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 18px;
  margin-right: 10px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 10px;
}

.texte-telechargements-Anlygne {
  font-size: 14px;
  color: #777;
}

/* === NEWSLETTER === */
.newsletter-Anlygne {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px auto;
  max-width: 800px;
  text-align: center;
}

.conteneur-newsletter-Anlygne {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.titre-newsletter-Anlygne {
  font-size: 28px;
  margin: 0;
  color: #111;
}

.texte-newsletter-Anlygne {
  font-size: 16px;
  color: #444;
}

.formulaire-newsletter-Anlygne {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
}

.formulaire-newsletter-Anlygne input[type="email"],
.formulaire-newsletter-Anlygne input[type="password"] {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  min-width: 240px;
  font-size: 16px;
  outline: none;
  flex: 1;
  max-width: 300px;
}

.formulaire-newsletter-Anlygne button {
  padding: 12px 20px;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.formulaire-newsletter-Anlygne button:hover {
  background-color: #333;
}
.message-anlygne {
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 12px;
  background: #27ae60;
  color: white;
  font-weight: 500;
  animation: fadein-message 0.5s ease-in-out;
}

@keyframes fadein-formulaire {
  from {
    opacity: 0;
    transform: translateY(15px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes fadein-message {
  from {
    opacity: 0;
    transform: scale(0.95);
}
to {
    opacity: 1;
    transform: scale(1);
}
}
.formulaire-contact-Anlygne button:hover {
  background-color: #333;
}

.pied-de-page-Anlygne {
  background: #f9f9f9;
  padding: 20px 40px;
  font-size: 14px;
  color: #555;
}

.contenu-footer-Anlygne {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.texte-footer-Anlygne {
  margin: 0;
}

.reseaux-Anlygne {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.reseaux-Anlygne a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.reseaux-Anlygne a:hover {
  color: #000;
}

.chargement-anlygne {
    display: none;
    width: 14px;
    height: 14px;
    border: 3px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === RESPONSIVE === */

@media screen and (max-width: 768px) {
  .accroche-Anlygne {
    flex-direction: column;
    padding: 60px 20px 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .conteneur-accroche-Anlygne {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 0;
  }

  .contenu-accroche-Anlygne {
    width: 100%;
    text-align: center;
  }

  .mockup-application-Anlygne {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .formulaire-newsletter-Anlygne {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }

  .formulaire-newsletter-Anlygne input[type="email"],
  .formulaire-newsletter-Anlygne button {
    max-width: 100%;
    width: 100%;
    font-size: 16px;
  }

  .message-anlygne {
    max-width: 100%;
  }

  .titre-principal-Anlygne {
    font-size: 26px;
  }

  .texte-description-Anlygne {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .menu-mobile-Anlygne {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 15px;
  }

  .menu-mobile-Anlygne.ouvert {
    display: flex;
  }

  .navigation-interne-Anlygne {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-Anlygne {
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 15px;
    align-items: flex-start;
  }

  .menu-Anlygne li {
    width: 100%;
    padding: 10px 0;
  }

  .menu-toggle-Anlygne {
    display: block;
  }

  .contenu-footer-Anlygne {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .boutons-telechargement-Anlygne button {
    display: block;
    width: 100%;
    max-width: 240px;
    margin: 10px auto;
  }

  .groupe-double-Anlygne {
    flex-direction: column;
  }

  .groupe-double-Anlygne input {
    width: 100%;
  }

  .formulaire-contact-Anlygne {
    padding: 20px;
  }
}