@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

.navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
  }
  
  .right-links{
    display: flex;
    gap: 25px;
    list-style: none;
  }

  .right-links a{
    text-decoration: none; 
    color: black;
    transition: 0.3s ease;
}

.right-links a:hover{
    color: #ffcc00;
  }
  
  .right-links li{
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
  }
  
  @media (max-width: 768px){
  
    .right-links a{
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .right-links i{
      font-size: 22px;   
    }
  
    .right-links{
      gap: 15px;
    }
    
    .right-links span{
      display: none;
    }
  }
  
      
.hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  /* Default: desktop */
.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

/* Phone */
@media (max-width: 600px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }
}

  

  .hero-content {
    position: relative;
    z-index: 2;
    color: #000;
    max-width: 600px;
    padding: 60px;
    margin-left: clamp(50px, 5vw, 60px);
  }

  @media (max-width : 600px) {
    .hero {
      justify-content: flex-start;
    }
    .hero-content{
      font-size: 19px;
      margin-left: 0;
      padding: 24px 20px;
      text-align: left;
    }

    .hero-content a{
      padding: 8px 20px;
      font-size: 17px;
      max-width: 240px;
    }

    .hero-content h1{
      max-width: 320px;
      font-size: 26px;
      line-height: 1.3;
    }

    .hero-content p{
      display: none;
    }
    
  }

  .hero-content h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
  }
  

  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 405;
    max-width: 520px;
  }
  

  .btn-hero {
    display: inline-block;
    background-color: #ffffff;
    color: #222;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
  }
  
  .btn-hero:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
  }



  /*produits */


.collection {
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}


.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.section-title h2 {
  color: #e0a100;
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
}

.section-title .line {
  flex: 1;
  height: 1px;
  background-color: #e0e0e0;
  max-width: 300px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: auto;
}
.cards > a {
  grid-column: span 2;
}





.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}


.card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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


.card-img {
  border: 3px solid #fff;       
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

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


.title {
  font-size: 16px;
  color: #000000c7;
  margin: 10px 0;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards > a {
    grid-column: span 1 !important;
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}





  





  
  .visit-shop {
    padding: 80px 20px;
    text-align: center;
  }
  
  .visit-shop h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 10px;
    color: #e0a100;
  }
  
  .visit-shop .subtitle {
    color: #555;
    margin-bottom: 50px;
  }
  
  .visit-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
  }
  
  .map-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }
  
  .map-box iframe {
    width: 100%;
    height: 360px;
    border: 0;
  }
  

  .info-box {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: left;
  }
  
  .info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  
  .icon {
    background: #fff3c4;
    color: #e0a100;
    font-size: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .info-item h4 {
    margin: 0 0 6px;
    font-size: 18px;
  }
  
  .info-item p {
    margin: 0;
    color: #555;
    line-height: 1.5;
  }
  
  @media (max-width: 900px) {
    .visit-container {
      grid-template-columns: 1fr;
    }
  
    .info-box {
      text-align: center;
      padding-right: 40px;
    }
  
    .info-item {
      justify-content: center;
    }
  }
  

  .garenter {
    padding: 80px 20px;
    text-align: center;
  }  
  
 .garenter-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.garenter h2 {
    font-size: clamp(22px, 4vw, 32px);
  color: #e0a100;
  margin-bottom: 60px;
  }
  .guarantee-box img {
    width: 130px;
  }

  .guarantee-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
  }

.guarantee-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
  }

  
  .footer {
    background-color: #000000;
    padding: 40px 0 20px;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    padding: 0 40px 0;
  }
  
  .footer-column {
    flex: 1 1 220px;
    padding-left: 30px;
  }
  
  .footer-column h2, .footer-column h3 {
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .footer-column h4 {
    max-width: 250px;
    font-size: 14px;
    color: #ffffff;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    color: #ffffff;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  .footer-column ul li i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #ffffff;
  }

  .footer-column p {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-column a:hover {
    color: #ffcc00;
  }
  
 
  
  .social-icons a {
    color: #ff00a6;
    margin-right: 10px;
    font-size: 23px;
  }
  
  .social-icons a:hover {
    color: #00c9b8;
  }

  .footer-img {
    flex: 1 1 220px;
  }
  
  
