/* ========================= */
/* RESET */
/* ========================= */

body {
  margin: 0;
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
}

#prest {
  color: greenyellow;
  font-size: 18px;
}

.btn {
  background-color: green;
  color: white;
}

a {
  text-decoration: none;
}

h2 {
  font-family: "Great Vibes", cursive;
  font-size: 70px;
  color: green;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
  min-height: 110px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  width: 90px;
  height: 90px;
}

.navbar-brand h5 {
  font-family: "Parisienne", cursive;
  font-size: 50px;
  font-weight: bold;
  color: black;
}

.navbar-brand small {
  color: green;
}

/* liens menu */
.nav-link {
  color: green !important;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s;
}

.nav-link:hover {
  color: black !important;
}

/* ========================= */
/* CAROUSEL - SANS BORDURES */
/* ========================= */

#carousel-1 {
  width: 100%;
  border-radius: 0 !important;
  overflow: hidden;
  background-color: white;
}

.carousel {
  border: none !important;
  box-shadow: none !important;
}

.carousel-item {
  height: 85vh;
  position: relative;
  border: none !important;
  border-radius: 0 !important;
}

.carousel-item img {
  width: 100% !important;
  height: 85vh !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.carousel-inner {
  border: none !important;
  border-radius: 0 !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5% !important;
  opacity: 0.8;
}

.carousel-caption {
  background: white;
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  border: none !important;
}

/* ========================= */
/* SECTIONS */
/* ========================= */

section {
  padding-top: 80px;
  padding-bottom: 80px;
}

section h2 {
  margin-bottom: 30px;
}

.bg-light {
  background-color: #f9f9f9 !important;
}

/* ========================= */
/* CARDS */
/* ========================= */

.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

/* ========================= */
/* EFFET ZOOM IMAGES */
/* ========================= */

.card img,
section img {
  transition: transform 0.4s ease;
}

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

/* ========================= */
/* GALERIE IMAGES */
/* ========================= */

section img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ========================= */
/* SLIDER TEMOIGNAGES */
/* ========================= */

.testimonials {
  background: antiquewhite;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(300px * 6);
  animation: scroll 25s linear infinite;
}

.slide {
  width: 300px;
  margin: 0 15px;
  background: #c8ad7f;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.slide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================= */
/* TÉMOIGNAGES */
/* ========================= */

.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 20px;
}

.slide {
  min-width: 320px;
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.slide:hover {
  transform: translateY(-10px);
}

.slide img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #e9ecef;
}

.slide h5 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  font-family: "Parisienne", cursive;
}

.slide p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  font-size: 20px;
  font-weight: bold;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause au hover */
.slider:hover .slide-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    min-width: 280px;
    padding: 25px 20px;
  }

  .slide-track {
    width: calc(280px * 6);
    animation-duration: 25s;
  }
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
  background-color: greenyellow;
  color: black;
}

.footer h5 {
  margin-bottom: 20px;
  font-family: "Great Vibes", cursive;
  font-size: 28px;
}

.footer-link {
  color: #ddd;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-link:hover {
  color: #fff;
  padding-left: 10px;
}

.social-icons a {
  color: #ddd;
  transition: 0.3s;
  font-size: 24px;
}

.social-icons a:hover {
  color: white;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
  h2 {
    font-size: 45px !important;
  }

  .navbar-brand h5 {
    font-size: 35px;
  }
  .carousel-caption {
    padding: 20px !important;
    bottom: 15%;
  }

  .carousel-caption h2 {
    font-size: 28px !important;
  }

  section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .card-img-top {
    height: 180px;
  }

  section img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .carousel-caption h2 {
    font-size: 22px !important;
  }

  h2 {
    font-size: 35px !important;
  }
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 60vh !important;
    border: none !important;
  }

  .carousel-item {
    height: 60vh !important;
    border: none !important;
  }
}
