* {
  box-sizing: border-box;
  }

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  }

ul /* Liste non organiser pour mon menu navigable */
  {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  }

h1 
  {
  text-align: center;
  font-size: 50px;
  color: #2d3748;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }

h2 /* Sous titre de police differente */
  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-left: 100px;
  padding-right: 100px;
  color: #4a5568;
  font-weight: 600;
  }

li /* Élément de ma liste */
  {
    font-family: Arial, Helvetica, sans-serif;
  }

li a /* Liste de mon menu de navigation */
  {
  display: block;
  color: white;
  text-align: center;
  padding: 16px 20px;
  font-size: 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-decoration: none;
  float: left;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  }

ol /* Ne pas mettre de symbole dans mes list organiser */
{
  list-style-type: none;
  padding-left: 100px;
  padding-right: 100px;
}

table ol {
  padding-left: 0px;
  padding-right: 0px;
}


.formulaire /* Marge pour les cotes de ma page */
{
  padding-left: 80px;
  padding-right: 80px;
}
  
li a:hover:not(.active) /* Change la couleur de l'onglet lorsque je passe au dessu avec ma souris */
  {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  }

.active /* Change la couleur de l'onglet lorsque je dans la page active */
  {
  background-color: rgba(255, 255, 255, 0.25);
  border-bottom: 3px solid #48bb78;
  }


.index /* Classe pour mon paragrphe a la page principal (index) */
  {
  color: #2d3748;
  font-size: 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  background: white;
  padding: 25px 100px;
  margin: 20px 80px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

p /* Affecte tous mes paragraphe */
  {
  font-size: 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-left: 100px;
  padding-right: 100px;
  line-height: 1.8;
  color: #4a5568;
  }

.droit /* Classe p pour le pied de page pour mes droit d'auteur*/
{
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
}

table /* Tableau */
  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  }

td, th /* Bordure, Aligner le texte a gauche */
  {
  border: 1px solid #e2e8f0;
  text-align: left;
  padding: 12px 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

th {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  }

tr:nth-child(even) /* Mettre une interval de ligne couleur grise dans le tableau*/
  {
  background-color: #f7fafc;
  }

tr:hover {
  background-color: #edf2f7;
  transition: background-color 0.3s ease;
  }

pre /* Permet de disposer le texte exemple un peu plus a droit avec quelque espace */
  {
  font-family: Arial, Helvetica, sans-serif;
  }

form /* Balise pour mon formulaire d'envoie */
  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  padding: 25px 100px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px 80px;
  }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
  }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

input[type="submit"],
button {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

input[type="submit"]:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
  }

.sup /* Classe h2 pour mes titre principal dans le haut de pages au centre */
  {
  text-align: center;
  text-decoration: none;
  border-bottom: 4px solid #3b82f6;
  display: inline-block;
  padding-bottom: 10px;
  margin: 60px auto 30px;
  width: fit-content;
  display: block;
  }

.titre /* Classe pour le titre de mon formulaire ex: Quel est votre sexe? */
  {
  font-weight: bold;
  }

.center /* Classe pour centré mon image de guiade alimentaire */
  {
  display: block;
  margin-left: auto;
  margin-right: auto;
  }

.guide /* Classe pour les droit d'auteur de harvard */
  {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  }

.guide1 /* Classe pour la présentation de la page guide alimentaire */
  {
  text-align: center;
  line-height: 0px; /* Espacement entre les ligne (interligne) */
  font-family: Arial, Helvetica, sans-serif;
  }

.guide-img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  }

.tarif-section {
  background: white;
  padding: 25px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  text-align: center;
  }

.tarif-titre {
  color: #3b82f6;
  font-size: 22px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  }

.tarif-note {
  color: #718096;
  font-style: italic;
  font-size: 16px;
  }

.tarif-liste {
  list-style-type: none;
  padding-left: 0;
  }

.tarif-liste li {
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 18px;
  }

.tarif-liste li:last-child {
  border-bottom: none;
  }

.prix {
  float: right;
  color: #3b82f6;
  font-weight: 700;
  font-size: 20px;
  }

h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 80px;
  margin-bottom: 40px;
  }

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

.contact-titre {
  color: #3b82f6;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 10px;
  }

.contact-info {
  padding: 0;
  }

.contact-info p {
  padding: 5px 0;
  margin: 8px 0;
  line-height: 1.6;
  }

.contact-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  }

.contact-link:hover {
  color: #3b82f6;
  text-decoration: underline;
  }

.image /* Classe pour ma banière défilente d'image dans la page principal */
  {
  display: flex;
  animation-duration: 15s;
  animation-name: mesimages;
  animation-iteration-count: infinite;
  }

.image img {
  border-radius: 12px;
  margin: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  }

.image img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

#baniere /* Classe pour cacher la barre de défilement dans le bas des images */
  {
  overflow: hidden;
  }

@keyframes mesimages { /* Facon don les image von défiler dans ma banière */
  0% {
transform: translateX(0);
  }
  25% {
    transform: translateX(-605px);
  }
  50% {
    transform: translateX(-1210px);
  }
  75% {
    transform: translateX(-1815px);
  }
  100% {
    transform: translateX(0);
  }
}

:hover /* Classe pour que lorsque je passe au dessu des image avec ma souris, le défilement arrete */
  {
  animation-play-state: paused;
  }

.hamburger
  {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 15px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 0 0 0 8px;
  }

.hamburger span
  {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.4s;
  }

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

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

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

img
  {
  max-width: 100%;
  height: auto;
  }

@media screen and (max-width: 768px)
  {
  .hamburger
    {
    display: flex;
    }
  
  nav ul
    {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: 60px;
    }
  
  nav ul.active
    {
    left: 0;
    }
  
  nav ul li
    {
    margin: 15px 0;
    }
  
  nav ul li a
    {
    float: none;
    display: block;
    font-size: 16px;
    }
  
  h1
    {
    font-size: 32px;
    padding-left: 15px;
    padding-right: 15px;
    }
  
  h2
    {
    font-size: 24px;
    padding-left: 15px;
    padding-right: 15px;
    }
  
  p
    {
    font-size: 16px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 1.6;
    }
  
  .index
    {
    margin: 15px 10px;
    padding: 20px;
    }
  
  ol
    {
    padding-left: 30px;
    padding-right: 15px;
    }
  
  .formulaire
    {
    padding-left: 15px;
    padding-right: 15px;
    }
  
  table
    {
    font-size: 14px;
    margin: 0 auto;
    }
  
  table, tbody, th, td, tr
    {
    display: block;
    }
  
  thead
    {
    display: none;
    }
  
  tr:first-child
    {
    display: none;
    }
  
  tr
    {
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    padding: 15px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
  
  td
    {
    border: none;
    position: relative;
    padding: 10px 5px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
    }
  
  td:last-child
    {
    border-bottom: none;
    }
  
  td:before
    {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #3b82f6;
    font-size: 15px;
    text-transform: uppercase;
    }
  
  th
    {
    display: none;
    }
  
  .guide1
    {
    line-height: 1.4;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    }
  
  form
    {
    padding: 20px;
    margin: 0 10px;
    }
  
  .guide-img
    {
    width: 100%;
    height: auto;
    max-width: 400px;
    }
  
  .tarif-section
    {
    margin: 15px 10px;
    padding: 20px;
    }
  
  .tarif-titre
    {
    font-size: 18px;
    }
  
  .prix
    {
    display: block;
    float: none;
    margin-top: 5px;
    }
  
  .contact-container
    {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 15px;
    }
  
  .contact-card
    {
    padding: 20px;
    }
  
  .contact-card:hover
    {
    transform: none;
    }
  
  .contact-titre
    {
    font-size: 18px;
    }
  
  .contact-info p
    {
    font-size: 15px;
    padding: 3px 0;
    }
  
  .image
    {
    flex-wrap: wrap;
    justify-content: center;
    }
  
  .image img
    {
    max-width: 100%;
    height: auto;
    margin: 5px;
    }
  
  @keyframes mesimages
    {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(0);
    }
    }
  }
