@font-face {
  font-family: 'Montris ExtraLight';
  src: url('FlechaBronzeaTestL-ExtraLight.otf') format('opentype');
  font-weight: 200; /* ExtraLight */
  font-style: normal;
}
.whatsapp-float {
  position: fixed;          /* stays on screen while scrolling */
  right: 24px;
  bottom: 24px;
  width: 72px;              /* big size */
  height: 72px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  text-decoration: none;
  z-index: 9999;            /* above page content */
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent; /* remove mobile tap flash */
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  background: #1ebe57;
}

.whatsapp-float:active {
  transform: translateY(0);
}

body{
    background-color: rgb(245, 245, 245) !important;
     font-family: 'Flecha Bronzea', serif;
}


.hero{

    padding: 50px;
    padding-top:10px ;
      padding-bottom: 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
 
}

.hero div h1{
    font-size: 58pt;
    color: rgb(116, 86, 86);
        font-family: 'Flecha Bronzea', serif;
        font-weight: 200;
}
.hero div p{
    margin-top: 20px;
    font-size: 16pt;
    font-family: 'Flecha Bronzea', serif;
        font-weight: 200;
}

.hero div button{
    font-size: 17pt;
    padding: 12px 25px;
    margin-top:25px;
    border-radius: 10px;
    border:1px solid rgb(116, 86, 86);
    color: rgb(116, 86, 86);
    font-family: 'Flecha Bronzea', serif;
}


.hero div button:hover{
  
    border:1px solid rgb(116, 86, 86);
    
    background-color: rgba(223, 223, 223, 1);
    cursor: pointer;
}


 .hero img{
    width: 500px;
    margin-top: 70px;
   background: none !important;
  background-image: none !important;
  background-color: transparent !important;
  }
.samples{
  background-color: red !important;
    padding: 0px;
}


.samples h2{
    margin-top: 75px;
    font-size: 26pt;
      color: rgb(116, 86, 86);
      font-family: 'Flecha Bronzea', serif;
        font-weight: 200;
}
.samples >div{
    background-color: rgb(255, 255, 255);
    padding: 55px;
    padding-top:20px ;
    font-family: 'Flecha Bronzea', serif;
        font-weight: 200;
}

.elements{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    background-color: rgb(255, 255, 255);
}

.product{
    border: 1px solid rgb(239, 239, 239);
    margin-top: 45px;
  

  padding: 10px;
  padding-bottom: 25px;
  border-radius: 12px;

}
.imgcontainer{
    display: flex;
    justify-content: center;
    align-items: center;
}
.imgcontainer img{
width: 300px;
height: 300px;
object-fit: contain;
}
.product p{
    font-size: 14pt;
    font-weight: 500;
    color: rgb(75, 75, 75);
}
.product h6{
    margin-top: 15px;
font-size: 11pt;
font-weight: 600;
font-family: 'Flecha Bronzea', serif;
        
}

.product a { 
    display: inline-block; /* permet une meilleure gestion du padding et du hover */
    margin-top: 5px;
    padding: 12px 18px;
    text-decoration: none;
    color: #555; /* plus lisible que rgb(104,104,104) */
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fff; 
    transition: all 0.3s ease; /* effet fluide sur hover */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* léger relief */
}

.product a:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff4d4d, #ff1a1a); /* exemple: rouge dégradé */
    border-color: transparent;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px); /* petit effet flottant */
}


h6{
    color: green;
}
s{
    color: red;
}

.samples div a{
    color: #555;
   
}







/* ✅ Animation */
.hero {
  animation: fadeInUp 1s ease-in-out;
}

.product {
  animation: fadeIn 1.2s ease-in-out;
}

.product a,
.samples div a {
  transition: all 0.3s ease, transform 0.2s ease-in-out;
}

.product a:hover,
.samples div a:hover {
  transform: translateY(-3px) scale(1.03);
}

/* ✅ Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ✅ Responsive - Tablette */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 130px;
    padding-bottom: 0px;
  }

  .hero div h1 {
    font-size: 32pt;
  }

  .hero div p {
    font-size: 11pt;
  }

  .elements {
    flex-direction: column;
    align-items: center;
  }

  .imgcontainer img {
    width: 250px;
    height: 250px;
  }
   .hero img{
    margin-top: 55px;
    width: 300px;
  }
}

/* ✅ Responsive - Téléphone */
@media (max-width: 600px) {


  .hero div h1 {
    font-size: 24pt;
  }

  .hero div p {
    font-size: 10pt;
  }

  .hero div button {
    font-size: 12pt;
    padding: 10px 18px;
  }

  .samples h2 {
    font-size: 20pt;
    text-align: center;
  }

  .imgcontainer img {
    width: 200px;
    height: 200px;
  }

  .product {
    width: 90%;
    margin: 15px auto;
  }
   .hero img{
    width: 200px;
  }
}



/* État caché avant scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* État visible quand scrolled */
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
