/* General Body and Animations */
body {
  background: #f8f3ef;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.2s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.4s;
}
.fade-in-up.delay-3 {
  animation-delay: 0.6s;
}
.fade-in-up.delay-4 {
  animation-delay: 0.8s;
}
.fade-in-up.delay-5 {
  animation-delay: 1s;
}
.fade-in-up.delay-6 {
  animation-delay: 1.2s;
}

/* Intro Section */
.intro-accueil {
  max-width: 900px;
  margin: 1rem auto;
  padding: 20px 24px;
  text-align: center;
  font-size: 1.18rem;
  color: #907b5a;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: #f3e0c6;
  border-radius: 24px;
  border: 1px solid #e2c9a6;
  box-shadow: 0 2px 8px rgba(200, 180, 140, 0.08);
}

/* Hero Carousel Section */
.hero-carousel {
  width: 100%;
  max-width: 900px;
  margin: 1.5rem auto;
  height: 65vh;
  min-height: 300px;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3e0c6;
  border-radius: 24px;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.carousel-img.active {
  opacity: 1;
  z-index: 2;
}

/* Low Stock Section */
.nouveautes {
  margin: 3rem 0 2rem 0;
  padding: 0 2rem;
}

.nouveautes-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

.nouveautes-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nouveaute-card {
  border-radius: 24px;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  background-size: cover;
  background-position: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.nouveaute-card:hover {
  transform: translateY(-5px);
}

.nouveaute-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  border-radius: 24px;
}

.nouveaute-info {
  position: relative;
  z-index: 2;
  text-align: center;
}

.nouveaute-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.nouveaute-stock {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
  display: block;
  margin-bottom: 1rem;
}

.nouveaute-btn {
  background: rgba(243, 224, 198, 0.9);
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  backdrop-filter: blur(2px);
  text-decoration: none;
  display: inline-block;
}
.nouveaute-btn:hover {
  background: #f3e0c6;
}

.nouveautes-more {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.nouveautes-more-btn {
  background: #e2c9a6;
  color: #222;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: background 0.2s;
  text-align: center;
}
.nouveautes-more-btn:hover {
  background: #a88c6b;
  color: #fff;
}

.nouveaute-grid.href {
  text-decoration: none;
  text-size-adjust: larger;
}

/* Responsive */
@media (max-width: 900px) {
  .intro-accueil {
    border-radius: 0;
    max-width: 100%;
    margin: 0;
  }
  .hero-carousel {
    margin-top: 0;
    border-radius: 0;
    max-width: 100%;
    height: 50vh;
  }
  .nouveautes-grid {
    flex-direction: column;
    align-items: center;
  }
  .nouveaute-card {
    width: 80%;
    max-width: 300px;
  }
}

/* Section Demande de devis */
.devis-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 24px;
}

.devis-container {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #f8f5f2 0%, #ede4d8 100%);
  border-radius: 20px;
  border: 2px solid #e0c9b5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.devis-container h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.8em;
  font-weight: 600;
}

.devis-container p {
  color: #666;
  margin-bottom: 25px;
  font-size: 1.1em;
}

.devis-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4b8a0 0%, #c19a7a 100%);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(193, 154, 122, 0.3);
}

.devis-btn:hover {
  background: linear-gradient(135deg, #c19a7a 0%, #a8826a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 154, 122, 0.4);
  color: white;
}

ar3flink {
  font-size: larger;
  color: #CD7F32;
  text-align: center
}

@media (max-width: 900px) {
  .intro-accueil {
    border-radius: 0;
    max-width: 100%;
    margin: 0;
  }
  .hero-carousel {
    margin-top: 0;
    border-radius: 0;
    max-width: 100%;
    height: 50vh;
  }
  .nouveautes-grid {
    flex-direction: column;
    align-items: center;
  }
  .nouveaute-card {
    width: 80%;
    max-width: 300px;
  }

  .devis-section {
    margin: 1.5rem auto;
    padding: 0 15px;
  }

  .devis-container {
    border-radius: 0;
    padding: 30px 20px;
  }

  .devis-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}
