*{box-sizing:border-box;margin:0;padding:0}
body{font-family:sans-serif;color:#fff;background:#111;overflow-x:hidden}
header{position:fixed;top:0;width:100%;display:flex;justify-content:space-between;align-items:center;padding:15px 40px;background:rgba(0,0,0,0.6);z-index:10}
.logo img{height:50px}
nav ul{display:flex;gap:20px;list-style:none}
nav a{color:#fff;text-decoration:none;font-weight:500}
.burger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}
.hero{height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;background:#222}
.hero h1{font-size:3rem;margin-bottom:15px}
.hero p{font-size:1.2rem;margin-bottom:25px}
.btn{background:#25D366;color:#000;padding:12px 30px;border:none;border-radius:5px;font-size:1rem;text-decoration:none;font-weight:600}
.gallery-section{padding:80px 40px;text-align:center;background:#222}
.gallery-section h2{font-size:2rem;margin-bottom:30px}
.carousel img{width:100%;height:auto;border-radius:8px}
.contact-section{padding:60px 40px;text-align:center}
.contact-btn {
  display:inline-block;
  margin:10px;
  padding:12px 24px;
  text-decoration:none;
  font-weight:bold;
  border-radius:5px;
}
.email-btn {background:#3498db; color:white;}
.email-btn:hover {background:#2980b9;}
.whatsapp-btn {background:#25D366; color:black;}
.whatsapp-btn:hover {background:#1da851;}
footer{padding:20px;background:#000;text-align:center;font-size:0.9rem}
.slick-prev, .slick-next {
  background: #25D366;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  margin: 0 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.slick-prev:hover, .slick-next:hover {
  background: #1da851;
}
@media(max-width:768px){
  .burger { display: block; }
  nav ul {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 10px;
    border-radius: 8px;
  }
  nav ul.show {
    display: flex;
  }
}

.call-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
    margin-top: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-button:hover {
    transform: scale(1.05);
}



.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 20px auto;
}

.contact-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.contact-button:hover {
    transform: scale(1.05);
}


.hero-description {
    margin-top: 20px;
    color: #fff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-description {
    animation: fadeIn 1.5s ease-in-out;
 
}

/* 🔼 Remonte les boutons Précédent / Suivant */
.carousel-buttons {
  margin-top: -20px; /* remonte le bloc entier */
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ✅ Style des boutons */
.carousel-buttons button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* 🎯 Légère animation au survol */
.carousel-buttons button:hover {
  background-color: #1da851;
}
.contact-section h2 {
  font-size: 2.2rem;
  color: #3498db;
  animation: glowBlue 2s infinite;
  text-shadow: 0 0 5px #3498db;
  margin-bottom: 20px;
}

@keyframes glowBlue {
  0% {
    color: #3498db;
    text-shadow: 0 0 5px #3498db;
  }
  50% {
    color: white;
    text-shadow: 0 0 15px #3498db;
  }
  100% {
    color: #3498db;
    text-shadow: 0 0 5px #3498db;
  }
}


/* Store location styling */
.store-location {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.location-info {
  flex: 1 1 300px;
}
.location-info h2 {
  margin-top: 0;
  color: #333;
  font-family: Arial, sans-serif;
}
.location-info address {
  font-style: normal;
  line-height: 1.6;
  color: #555;
}
.map-link {
  display: inline-block;
  margin-top: 8px;
  color: #4285f4;
  text-decoration: none;
  font-weight: bold;
}
.map-link:hover {
  text-decoration: underline;
}
.map-container {
  flex: 2 1 400px;
  min-width: 300px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
