@import url('https://fonts.googleapis.com/css2?family=Anton&family=Fjalla+One&family=Monsieur+La+Doulaise&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*------------------------------------------------------------*/
*{
    margin:0px;
    padding:0px;
    box-sizing:border-box;

}

/*COMMENTAIRE NAV*/
nav{
    display:flex;
    background-color: darkolivegreen;
    position:sticky;
    top:0px;
    z-index: 1000; /* important */
    margin: 0;
    padding: 0;
    width:100%
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:75px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/*COMMENTAIRE UL*/
ul{
    display:flex;
    padding:25px;
    list-style:none;
}
/*COMMENTAIRE LI*/
li{
    display:flex;
}
/*COMMENTAIRE a*/
a{
    text-decoration:none;
    padding:25px;
    color:white;
  }
  a{
    position:relative;
    top:-20px;
    left:85px;
  }
  /* METTRE UN FOND TRANSPARENT*/
  .img-1 {
  position: relative;
  width: 100%;
}

.img-1 img {
  width: 100%;
  display: block;
}

/* couche transparente */
.img-1 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* couleur + transparence */
  background: rgba(0, 0, 0, 0.4); /* noir transparent */
}
/* A PROPO  DE TATY FOODS*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.about {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.about h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    line-height: 1.6;
}

.about span {
    font-weight: bold;
    color: #FFD54F;
}
/*QUI SOMMES NOUS */
.dandinement {
  display: inline-block;
  animation: dandinement 1s infinite ease-in-out;
  transform-origin: center;
}
.dandinement {
position: absolute;
left:1024px;
}

@keyframes dandinement {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(5deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}


.about-us {
    padding: 60px 20px;
    background-color: #ffffff;
}

.about-us .container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-us h2 {
    font-size: 30px;
    color: #2E7D32;
    margin-bottom: 20px;
    position: relative;
}

.about-us h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #FFD54F;
    display: block;
    margin: 10px auto;
    border-radius: 2px;
}

.about-us p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-us span {
    color: #4CAF50;
    font-weight: bold;
}

.about-us strong {
    color: #2E7D32;
}
/*NOTRE MISSION*/
.mission {
    background: #f1f8f4;
    padding: 60px 20px;
}

.mission .container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.mission h2 {
    font-size: 30px;
    color: #2E7D32;
    margin-bottom: 20px;
}

.mission .intro {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
}

.mission .intro span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #4CAF50;
    font-size: 20px;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    background: #ffffff;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 17px;
    color: #444;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: left;
    position: relative;
}

.mission-list li::before {
    content: "✔";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 15px;
}

.mission-list li {
    padding-left: 40px;
}
/*slider les images*/
.slider {
    position: relative;
    width: 800px;
    height: 400px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
}

/* Images superposées */
.slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

/* Image 1 */
.slider img:nth-child(1) {
    animation: fade1 8s infinite;
}

/* Image 2 */
.slider img:nth-child(2) {
    animation: fade2 8s infinite;
}

/* 🔥 Image 1 visible puis disparaît */
@keyframes fade1 {
    0%   { opacity: 1; }
    45%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }
}

/* 🔥 Image 2 prend le relais */
@keyframes fade2 {
    0%   { opacity: 0; }
    45%  { opacity: 0; }
    50%  { opacity: 1; }
    95%  { opacity: 1; }
    100% { opacity: 0; }
}
/* autre mise en forme */

/* Bloc général */
.bloc {
    max-width: 900px;
    margin: 30px auto;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Titres */
.bloc h2 {
    color: #2E7D32;
    margin-bottom: 10px;
    font-size: 26px;
    border-left: 5px solid #4CAF50;
    padding-left: 10px;
}

/* Texte */
.bloc p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

/* Listes */
.bloc ul {
    margin-top: 10px;
    padding-left: 20px;
}

.bloc ul li {
    font-size: 16px;
    margin: 8px 0;
    color: #333;
    position: relative;
}

/* Puces stylées */
.bloc ul li::marker {
    color: #4CAF50;
}

/*Pourquoi Taty foods*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f7fa;
}

/* SECTION PRINCIPALE */
.taty-section {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* TITRES */
.taty-section h1 {
    text-align: center;
    color: #27ae60;
    margin-bottom: 10px;
}

.taty-section h2 {
    color: #2c3e50;
    margin-top: 30px;
}

/* TEXTE */
.taty-section p {
    color: #555;
    line-height: 1.6;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* CARDS */
.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #27ae60;
}

.card strong {
    color: #27ae60;
}

/* AVANT / APRES */
.comparison {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.box {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
}

.before {
    background: #ffe6e6;
}

.after {
    background: #e8f8f0;
}

/* BOUTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.btn:hover {
    background: #219150;
}

/* TEMOIGNAGE */
.testimonial {
    margin-top: 30px;
    padding: 20px;
    background: #f0fdf4;
    border-left: 5px solid #27ae60;
    font-style: italic;
}

/*autre images*/
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes */
    gap: 15px; /* espace entre les images */
    padding: 20px;
}

.image-item {
    overflow: hidden;
    border-radius: 10px;
}

.image-item img {
    width: 100%;
    height: 500px; /* taille moyenne */
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Effet au survol */
.image-item img:hover {
    transform: scale(1.05);
}

/* petit effet au survol */
.pub-image img:hover {
    transform: scale(1.03);
}

/* FOOTER*/


.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 20px 10px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer h2, 
.footer h3 {
    color: #ff9900;
    margin-bottom: 10px;
}

.footer p {
    font-size: 14px;
    max-width: 250px;
    margin: auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

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

.footer-social a {
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #ff9900;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    background-color: #ff9900;
    color: #1a1a1a;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 13px;
}

/* PAGE PRODUITS*//* PAGE PRODUITS*//* PAGE PRODUITS*/
.produits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.produit{
  position: relative;
  overflow: hidden;
  animation: fadeCycle 8s infinite;
}

/* Décalage pour créer un effet en cascade */
.produit:nth-child(2) { animation-delay: 1s; }
.produit:nth-child(3) { animation-delay: 2s; }
.produit:nth-child(4) { animation-delay: 3s; }
.produit:nth-child(5) { animation-delay: 4s; }
.produit:nth-child(6) { animation-delay: 5s; }
.produit:nth-child(7) { animation-delay: 6s; }
.produit:nth-child(8) { animation-delay: 7s; }

.produit img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: 0.3s;
}

/* effet au survol */
.produit:hover .overlay {
  opacity: 1;
}

.produit:hover img {
  transform: scale(1.05);
}

/* animation apparition/disparition */
@keyframes fadeCycle {
  0%   { opacity: 0; transform: scale(0.9); }
  20%  { opacity: 1; transform: scale(1); }
  50%  { opacity: 1; }
  70%  { opacity: 0; transform: scale(0.9); }
  100% { opacity: 0; }
}/* PAGE SERVICE*//* PAGE SERVICE*//* PAGE SERVICE*/
/* HEADER */

/* SERVICES GRID */
.services-section {
  background: #f7f7f7;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.services-section h2 {
  text-align: center;
  font-size: 32px;
  color: #2e7d32;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
  color: #2e7d32;
  margin-bottom: 10px;
  font-size: 18px;
}

.service-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.engagement {
  margin-top: 50px;
  text-align: center;
  background: #2e7d32;
  color: white;
  padding: 30px;
  border-radius: 12px;
}

.engagement h3 {
  margin-bottom: 10px;
}
/* slogan nchez taty foods deviens ton propre patron*/
/* POPUP SLOGAN */
.popup-slogan {
    position: fixed; /* reste collé à l'écran */
    bottom:80px; /* distance du bas */
    left: -400px; /* caché à gauche au départ */
    
    background: #ff6600;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);

    animation: slidePopup 6s infinite;
}

/* Animation gauche → visible → disparaît */
@keyframes slidePopup {
    0% {
        left: -400px;
        opacity: 0;
    }
    20% {
        left: 20px;
        opacity: 1;
    }
    80% {
        left: 20px;
        opacity: 1;
    }
    100% {
        left: -400px;
        opacity: 0;
    }
}
/*mettre une image dans popup*/
/* fond du popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

/* boutique*/
.boutique {
  padding: 60px 20px;
  background: #f4f6f8;
  text-align: center;
}

.boutique h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #222;
}

.produits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.produit {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.produit:hover {
  transform: translateY(-8px);
}

.produit img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.produit h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.produit p {
  font-size: 14px;
  color: #666;
  padding: 0 10px;
}

.produit button {
  margin: 15px 0;
  padding: 10px 20px;
  border: none;
  background: #2ecc71;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.produit button:hover {
  background: #27ae60;
}
/*popup wattsap*/
outon flottant */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

/* cacher checkbox */
#toggle {
  display: none;
}

/* popup fond */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
}

/* boîte popup */
.box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 280px;
}

/* affichage popup quand activé */
#toggle:checked ~ .popup {
  display: flex;
}

/* bouton fermer */
.close {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 12px;
  background: red;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* bouton WhatsApp lien */
.btn-wa {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
}
/* contact*/
.contact-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    background: #ffffff;
    padding: 25px;
    width: 100%;
    max-width: 350px; /* 👈 largeur réduite */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

h2 {
    text-align: center;
    color: #2e7d32;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 5px rgba(46,125,50,0.3);
}

textarea {
    resize: none;
    height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #1b5e20;
}

.footer-text {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}
/* contact*/
/* SECTION */
.contact-section {
    background: #f9f9f9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER */
.contact-container {
    background: #ffffff;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* TITRE */
.contact-container h2 {
    margin-bottom: 20px;
    color: #ff6600;
}

/* FORM */
form {
    text-align: left;
}

/* GROUPES */
.form-group {
    margin-bottom: 15px;
}

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

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: 0.3s;
}

/* FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff6600;
    outline: none;
}

/* TEXTAREA */
textarea {
    min-height: 100px;
    resize: none;
}

/* BOUTON */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e65c00;
}

/* FOOTER */


/* RESPONSIVE */
@media (max-width: 600px) {
    .contact-container {
        padding: 20px;
    }
}


/*adhesion*/



.adhesion-section {
  max-width: 500px;
  margin: auto;
  padding: 20px;
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #ff6600;
  color: white;
  padding: 10px;
  border: none;
  width: 100%;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #e65c00;
}
/*---------------membre------------------------------*/
  header {
      background: #e85d04;
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    header h1 {
      margin: 0;
      font-size: 2.2rem;
    }

    header p {
      margin-top: 10px;
      font-size: 1.1rem;
      opacity: 0.95;
    }

    .container {
      max-width: 900px;
      margin: auto;
      padding: 40px 20px;
    }

    .card {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      margin-bottom: 20px;
    }

    .card h2 {
      color: #e85d04;
      margin-top: 0;
    }

    .highlight {
      background: #fff3e6;
      padding: 15px;
      border-left: 5px solid #e85d04;
      margin: 15px 0;
    }

    .btn {
      display: inline-block;
      background: #e85d04;
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      text-decoration: none;
      margin-top: 15px;
      transition: 0.3s;
    }

    .btn:hover {
      background: #c94b03;
    }
/* header image en boucle continue*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

.container-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 60px;
  flex-wrap: wrap;
}

.image-box {
  width: 500px;
  height: 300px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Effet au survol */
.image-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.3);
}

.image-box:hover img {
  transform: scale(1.1);
}
/*partenaires*/
.partenaires {
    padding: 40px;
    background: #f9f9f9;
    text-align: center;
    font-family: Arial, sans-serif;
}

.partenaires h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.partenaires p {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555;
    line-height: 1.6;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.logo-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.logo-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.logo-card p {
    font-weight: bold;
    color: #333;
}
/*partenaire et mise en forme */
.disponibilite {
    background: linear-gradient(135deg, #e8f5e9, #ffffff);
    border-left: 6px solid #2e7d32;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.disponibilite p {
    font-size: 18px;
    color: #2c3e50;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.disponibilite strong {
    color: #1b5e20;
    background-color: #c8e6c9;
    padding: 2px 6px;
    border-radius: 4px;
}
/*partenaire image du bas*/
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.image-container img {
    width: 700px;              /* taille plus esthétique */
    max-width: 300%;
    height: auto;              /* garde les proportions */
    border-radius: 15px;      /* coins arrondis */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* effet profondeur */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Effet au survol */
.image-container img:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/*BANNIERE*/
.banner img {
  width: 100%;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
/*banniere BOUTIQUE*/
/* Conteneur */
.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* Style commun des images */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: fade 10s infinite;
}

/* Image 1 */
.img1 {
    background-image: url("images/B1.png");
    animation-delay: 0s;
}

/* Image 2 */
.img2 {
    background-image: url("images/G10.png");
    animation-delay: 5s;
}

/* Overlay noir transparent + animation */
.slide::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* noir transparent */
    top: 0;
    left: 0;
}

/* Animation fade */
@keyframes fade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    40%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }

/*complement partenaires*/
.section-distribution {
    max-width: 850px;
    margin: 80px auto;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff, #f5f7fa);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* effet au survol du bloc */
.section-distribution:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* petite décoration animée */
.section-distribution::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(0, 123, 255, 0.15);
    border-radius: 50%;
    filter: blur(20px);
    animation: float 6s infinite ease-in-out;
}

.section-distribution p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    animation: fadeIn 1s ease forwards;
}

/* texte mis en avant */
.section-distribution .highlight {
    font-weight: bold;
    font-size: 19px;
    color: #0077ff;
    background: rgba(0, 119, 255, 0.08);
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* effet hover sur le texte highlight */
.section-distribution .highlight:hover {
    background: rgba(0, 119, 255, 0.15);
    transform: scale(1.05);
}

/* animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}