/* ===== STYLE GÉNÉRAL ===== */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;       
margin: 0;
}
body {
   display: flex;      
  flex-direction: column; 
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #FFF;
min-height: 100vh;
}
main {
  flex: 1; 
  padding-top: 120px;
  background: linear-gradient(to bottom,  #009EE3, #013e6e);
}


/* fond degrade anime
main {
  flex: 1;
  padding-top: 120px;
  position: relative;
  overflow: visible; 
}

main::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  background: linear-gradient(to bottom, cyan, magenta, yellow, cyan, magenta, yellow, cyan);
  background-size: 100% 600%; 
  animation: gradientDown 60s linear infinite;
}

@keyframes gradientDown {
  0%   { background-position: 0 100%; }  
  100% { background-position: 0 0%; } 
}
*/



/* fond degrade
main {
  flex: 1; 
  padding-top: 120px;
  background: linear-gradient(to bottom,  #009EE3, #125386);
}

*/

/* === HEADER PRINCIPAL === */
header {
  background: BLACK;
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  z-index: 10;
  border-bottom: 8px solid BLACK;
  padding: 2px 2px;
}

/* === GRILLE PRINCIPALE === */
.header-grid {
  display: grid;
  grid-template-columns: auto 1fr; /* Logo à gauche, contenu à droite */
  align-items: center;
  column-gap: 30px;
}


/* === GRILLE DE DROITE === */
.right-grid {
  display: flex;
  flex-direction: column; /* slogan au-dessus de nav */
  gap: 10px;              /* espace entre slogan et nav */
  justify-content:space-between;
	height:100%
}

/* === SLOGAN === */
.slogan {
  color: #ffffff90;
  font-weight: 600;
  font-size: 1.34em;
  text-align: right;
  margin-right: 15%;
    margin-top: 5px;
  text-transform: uppercase;
}
.slogan::first-letter {
  font-size: 1.34em;       /* agrandit la première lettre */

}

.slogan .gr {
  font-size: 1.34em;      /* Taille plus grande */
  font-weight: bold;     /* (optionnel) pour donner du relief */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.slogan .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}

/* === NAVIGATION === */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin: 1px;
 margin-top: -25px;
}


.logo-link {
  display: flex;
  align-items: top;
  margin-top: 10px;
  margin-left: 25px;
  transition: transform 0.3s ease;
}

.logo {
  height: 90px;
  transition: transform 0.5s cubic-bezier(0.4, 2,5 0.4, 1);
}

.logo-link:hover .logo {
  transform: scale(1.0);
}
/* Grand écran : caché */
@media (min-width: 1001px) {
  .floating-icon {
    display: none !important;
  }
}


/* ===== BANNIÈRE ===== */
.hero {
  text-align: center;
  background-color: #ffffff80;
  color: #000000;
  padding: 3px;
  margin: 0px;
  line-height: 1.1;
}

.hero h1 {
  font-size: 2.2em;
  margin-top: 5px;
  text-transform: uppercase;
}
.hero h1::first-letter {
  font-size: 1.34em;       /* agrandit la première lettre */

}


.hero h2 {
  font-size: 1.1em;
    margin-top: -20px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.hero h2::first-letter {
  font-size: 1.34em;       /* agrandit la première lettre */

}
.hero .gr {
  font-size: 1.34em;      /* Taille plus grande */
  font-weight: bold;     /* (optionnel) pour donner du relief */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.hero .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}

/* ===== BOUTONS ===== */
.btn {
  padding: 2px 5px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: -10px 5px 1px 0;


}

nav a span::first-letter {
  font-size: 1.34em; /* Taille plus grande */

}

/* Hover : plus doux, sans flash */
.btn:hover {
 
  transform: scale(1.0);
	z-index: 10;	
}
.btn:hover span::first-letter {
  color: #009EE3;
}

.btn span {
  display: inline-block;
}

.btn.active {
    transform: scale(1.0);
  z-index: 5;
}
.btn.active span::first-letter {
  color: #009EE3;
}

/* ===== À PROPOS index ===== */
.about-index {
  text-align: center;
  padding: 5px 5px;
  max-width: 1200px;
  margin: auto;
   color: #ffffff;
   
  text-transform: uppercase;
}

.about-index h2 {
  color: #ffffff;
  margin-bottom: 10px;
  
    
}
.about-index::first-letter {
  font-size: 1.34em; 
}  
  
.about-index h2 .gr {
  font-size: 1.34em;      /* Taille plus grande */
  font-weight: bold;     /* (optionnel) pour donner du relief */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.about-index h2 .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}
.about-index h2::first-letter {
  font-size: 1.34em; 
} 
.about-index p .gr {
  font-size: 1.34em;      /* Taille plus grande */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.about-index p .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}
.about-index p::first-letter {
  font-size: 1.34em; 
}

/* ===== À PROPOS ===== */
.about {
  text-align: center;
  padding: 5px 5px;
  max-width: 1300px;
  margin: auto;
  text-transform: uppercase;
   color: #ffffff;
   margin-bottom: -15px;
}

.about h2 {
  color: #ffffff;
  margin-bottom: 10px;
  
    
}
.about::first-letter {
  font-size: 1.34em; 
}  
  
.about h2 .gr {
  font-size: 1.34em;      /* Taille plus grande */
  font-weight: bold;     /* (optionnel) pour donner du relief */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.about h2 .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}
.about h2::first-letter {
  font-size: 1.34em; 
} 
.about p .gr {
  font-size: 1.34em;      /* Taille plus grande */
  font-weight: bold;     /* (optionnel) pour donner du relief */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.about p .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}
.about p::first-letter {
  font-size: 1.34em; 
} 
/* ===== PRODUITS ===== */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 5px;
  
}


.product-card {
  width: 250px;
  background: #ffffff80;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  padding: 5px;
  cursor: pointer;
  text-align: center;
    text-transform: uppercase;
  transition: transform 0.3s cubic-bezier(0.7, 1.8, 0.7, 1);
}



.product-card:hover {
  transform: scale(1.2);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: -30px;
}

.product-card h3 {
  color: #ffffffcc;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.product-card h3 .gr {
  font-size: 1.34em;      /* Taille plus grande */
  font-weight: bold;     /* (optionnel) pour donner du relief */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.product-card h3 .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}




.product-card h3::first-letter {
  font-size: 1.34em; /* Taille plus grande */
  
}

.product-card p {
   font-size: 0.9em;
     text-transform: uppercase;
  margin-top: -10px;
margin-bottom:-3px;

}

.product-card p::first-letter {
  font-size: 1.34em; /* Taille plus grande */
  
}
.product-card P .gr {
  font-size: 1.34em;      /* Taille plus grande */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.product-card P .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}





#product-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  width: 90%;
  max-width: 700px;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-photos img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  display: block;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-arrow.prev { left: 10px; }
.modal-arrow.next { right: 10px; }
.modal-arrow:hover { background: rgba(0,0,0,0.6); }

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2em;
  cursor: pointer;
  color: #333;
}











/* ===== Et plus ===== */
.plus {
  text-align: center;
  padding: 5px 5px;
  text-transform: uppercase;
      margin-top: -30px;
}

.plus h2 {
	color:#ffffff90;
  text-transform: uppercase;
}
.plus h2::first-letter {
  font-size: 1.34em; /* Taille plus grande */
  
}

/* ===== AVANTAGES ===== */
.advantages {
    background-color: #ffffff80;
    text-align: center; 
    text-transform: uppercase;
	margin-top:-10px;
	margin-bottom:-20px;
	}

.advantages h2 .gr {
  font-size: 1.34em;      /* Taille plus grande */
  font-weight: bold;     /* (optionnel) pour donner du relief */
  color: inherit;        /* garde la même couleur que le texte environnant */
  display: inline-block; /* évite les petits bugs d’alignement */
}
.advantages h2 .mot {
  white-space: nowrap; /* empêche le mot d'être coupé en deux lignes */
  display: inline-block;
}
.advantages h2::first-letter {
  font-size: 1.34em; 
} 

/* ===== FOOTER ===== */
footer {
	background-color: #000;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  
}

footer a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  align: bottom;
}

footer a:hover {
  text-decoration: underline;
}


/* ===== CONTACT ===== */
.contact-container {
  max-width: 700px;
  margin: 80px auto;
  background: #ffffffcc;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 40px 30px;
  text-align: center;
}

.contact-container h2 {
  color: #666666;
  margin-bottom: 20px;
}

.contact-container p {
  margin-bottom: 30px;
  color: #555;
}

.form-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.form-contact input,
.form-contact textarea {
  padding: 12px;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  width: 100%;
  resize: vertical;
}

.form-contact input:focus,
.form-contact textarea:focus {
  outline: none;
  border-color: #666666;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-contact .btn {
  align-self: center;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    margin: 50px 15px;
    padding: 30px 20px;
  }
}
/* ===== MESSAGE DE CONFIRMATION ===== */
.success-message {
  margin-top: 20px;
  background-color: #e1f8e7;
  color: #1d7a35;
  border: 2px solid #1d7a35;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
  text-align: center;
}

.success-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  header {
    position: sticky;  /* <-- important */
    top: 0;
    z-index: 10;
	height: 100%;
    padding: 1px 5px;
	 background: black;
  }

.header-grid {
    grid-template-columns: 1fr; /* une seule colonne */
    grid-template-rows: auto auto auto;
    text-align: center;
    row-gap: 1px;
	
  }

  .right-grid {
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 1px;
	  margin-left: 0%;
	  justify-content: unset;
  }

  .slogan {
    font-size: 1.2em;
	  text-align: center;
  margin-right: 0px;
  margin-top:20px;  
margin-bottom: 7px;
  }

main {
   padding-top:0px;
   	widht:100%;
   }

  nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap:2px;
  row-gap: 15px;
    padding: 1px;
	width: 100%;
	margin-top:0px;
	background-color: black;
  }

  .btn {
    font-size: 0.8em;
     display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
 padding: 5px 5px;	
 box-shadow: 2px 2px 2px rgba(255,255,255,0.2);
 vertical-align: middle;
 width: 100%;
   gap: 0.3em;
  }

  .btn.active {
   transform: scale(1.0);

  }

  .btn:hover {
  transform: scale(1.0);

  }

.logo-link {
    justify-content: center;
	margin-left: 0px;
	}
.logo {
  height: 85px;
  transition: none;
  margin-top:5px;
  margin-bottom:-20px;
}

.logo-link:hover .logo {
  transform: none;
  }
.floating-icon {
    position: fixed;
    bottom: 150px;       /* position finale */
    right: 15px;
    width: 70px;
    height: auto;
    z-index: 9999;
    cursor: pointer;
    transform: translateY(200px); /* départ : en bas */
    transition: transform 1.5s ease, opacity 1.5s ease;
    pointer-events: none;         /* désactive clic quand caché */
    opacity: 0;                   /* invisible au départ */
}

.floating-icon.visible {
    transform: translateY(0);     /* remonte */
    pointer-events: auto;         /* clics activés */
    opacity: 1;                   /* visible */
}

.floating-icon:hover {
    transform: translateY(0) scale(1.1); /* zoom au survol */
}

  .hero h1 {
  font-size: 2em;
  margin-top: 0px;
  margin-bottom: 1px;
}
  .hero h2 {
  font-size: 1.5em;
  margin-top: 0px;
  margin-bottom: 1px;
}
.product-card {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  padding: 5px;
  text-align: center;
    text-transform: uppercase;
  
}


.product-card:hover {
  transform: scale(1.0);
}
  }
  