/* General */
.divider {
  width: 60px;
  height: 4px;
  background: #9aa940;
  margin: 1rem 0;
}
.divider.center {
  margin: 1rem auto;
}
.btn {
  background: #9aa940;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #7a8533;
}

.btn-link {
  color: #9aa940;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  background: #f8f8f8;
  padding: 4rem 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.hero-grid img {
  width: 100%;
  border-radius: 8px;
}
.hero-text h1 {
  font-size: 2rem;
  text-transform: uppercase;
}

#phoneNumber {
  margin-top: 50px;
}

/* Section valeurs - Nature, Sécurité, Convivialité, Sensations fortes */
.values-section {
  background: linear-gradient(135deg, #4a4458 0%, #6b5b73 100%);
  color: white;
  text-align: center;
}
/* .values-section img{
  max-width: 50em;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-20%);
} */
.values-grid {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 3em 0;
  /* transform: translateY(-15%); */
}
.value-card h2 {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}
.value-card p {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.8;
  opacity: 0.95;
  max-width: 300px;
  margin: 0 auto;
}
/* Icônes/couleurs spécifiques pour chaque valeur */
.value-card.nature h2 {
  color: #9aa940;
}
.value-card.securite h2 {
  color: #7fb3d3;
}
.value-card.convivialite h2 {
  color: #f39c12;
}
.value-card.aventure h2 {
  color: #34495E;
}

/* Prestations */
.services {
  text-align: center;
  padding: 2em 0;
  background: white;
}
.services .h2 {
  font-size: 2300px;
}
.services .btn {
  margin: 1em auto;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
  text-align: center;
}
.testimonial-grid {
  display: flex;
  flex-flow: row;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  max-width: 300px;
}
.testimonial-card p {
  font-style: italic;
  color: #3d2f4d;
}
.testimonial-card strong {
  display: block;
  margin-top: 1rem;
}
.testimonial-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 0.5rem;
}
.testimonials .btn {
  margin: 2em auto 0;
}


/* CONTACT SECTION STYLES */
.db {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 2em auto;
}
.db p {
  margin: 0 5em;
  padding: 0.5rem 3rem;
  border-radius: 25px;
  background-color: #a8386e;
  font-size: xx-large;
}

.contact {
  padding: 4rem 1rem;
  background: #fafafa;
  font-family: Arial, sans-serif;
  text-align: center;
}

.contact .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact .divider.center {
  width: 60px;
  height: 4px;
  background: #a8386e;
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.contact h3 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: #444;
}

.contact .db.info a {
  color: #d4ccd0;
  text-decoration: none;
  font-weight: bold;
}

.contact .db.info a:hover {
  text-decoration: underline;
}

.contact .db.links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.contact .db.links a svg {
  transition: transform 0.3s ease;
}

.contact .db.links a:hover svg {
  transform: scale(1.2);
}

.contact p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.contact p a {
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact h2 {
    font-size: 1.6rem;
  }

  .contact h3 {
    font-size: 1.2rem;
  }

  .contact .db.links, .contact .db.info {
    flex-direction: column;
    gap: 1rem;
  }

  .contact p {
    font-size: 4vw;
  }

  .db p {
    padding: 2vw 5vw; 
  }

  .contact .db.info p a {
    font-size: 4vw;
  }

  .values-grid{
    transform: none;
    display : flex;
    flex-flow: column;
    max-width: 100%;
    padding: 3em 0;
  }
  .value-card p {
    line-height: 1.5em;
  }
  .values-section img {
    display: none;
  }

  .value-card h2 {
    font-size: 5vw;
  }
  .value-card p {
    font-size: 3vw;
    max-width: 80%;
  }

  .testimonial-grid {
    flex-flow: column;
    justify-content: center;
  }

  .guide .container {
    display: flex;
    flex-flow: column wrap;
  }
}
