* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f8f8;
    color: #333;
  }
  h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
  }
  
  
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: #111;
    display: flex;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    color: #111;
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #8ca977;
  }
  
  .nav-links li ul {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links li:hover ul {
    display: block;
  }
  
  .nav-links li ul li a {
    padding: 0.5rem 1rem;
    display: block;
  }
  
  .btn-reserver {
    background-color: #8ca977;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
  }
  * Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  
  h1, h2 {
    font-family: 'DM Serif Display', serif;
    color: #3b3b3b;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    text-align: center;
  }
  
  p {
    line-height: 1.6;
  }
  
  /* NAVBAR */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    background-color: #f8f8f8;
        position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }.activites, .contact {
    background: #f9f9f9;
    padding: 3rem 1rem;
  }
  
  .activites h2,
  .contact h2 {
    text-align: center;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 2rem;
  }
  
  .activites img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }
  
  .activite-bloc {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .activite-bloc img {
    width: 180px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
   /* RESPONSIVE */
   @media (max-width: 768px) {
    .gallery {
      grid-template-columns: 1fr;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      gap: 1rem;
    }
  }
  
  .footer-hille {
    background-color: #f2f2f2;
    padding: 40px 0;
    font-family: 'Georgia', serif;
    color: #222; /* Texte plus foncé */
  }
  
  .container-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-column {
    flex: 1 1 200px;
    margin: 20px;
  }
  
  .footer-column h4 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.2em;
    color: #111; /* Titres foncés */
  }
  
  .footer-column p,
  .footer-column strong {
    color: #333; /* Texte bien lisible */
    font-size: 0.95em;
  }
  
  .logo-footer.stylized-logo {
    width: 100px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .logo-footer.stylized-logo:hover {
    transform: scale(1.05) rotate(-1deg);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
    color: #444;
    border-top: 1px solid #ddd;
  }
  
  .social-icons img {
    width: 24px;
    margin-right: 10px;
    transition: transform 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .container-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
  }
}
.activites h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #444;
}
/* Footer */
footer {
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 300;
}

.footer-links a:hover {
  text-decoration: underline;
}
.intro-bg {
  background-image: url("img/fond");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  padding: 5rem 1rem;
}

.intro-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.intro-bg .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.intro-fond {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fond-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(60%);
}

.fond-contenu {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
  background-color: rgba(246, 239, 239, 0.5); /* Fond noir semi-transparent */
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.randos {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
}

.randos h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #333;
}

.rando-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  align-items: center;
  gap: 2rem;
}

.rando-item.reverse {
  flex-direction: row-reverse;
}

.rando-img {
  flex: 1 1 40%;
}

.rando-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.rando-text {
  flex: 1 1 55%;
}

.rando-text h3 {
  margin-bottom: 0.5rem;
  color: #222;
}

.rando-text p {
  line-height: 1.6;
  color: #444;
}
.patrimoine {
  background-color: #f8f8f8;
      padding: 4rem 2rem;
}

.patrimoine h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.patrimoine-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.patrimoine-card {
  background-color: #f8f8f8;
    border-left: 5px solid #2b4838;
 padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.patrimoine-card h3 {
  margin-bottom: 0.8rem;
  color: #222;
}

.patrimoine-card p {
  color: #2b4838;
  line-height: 1.6;
}
.gastronomie {
  background-color: #f8f8f8;
    padding: 4rem 2rem;
}

.gastronomie h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2b4838;
}

.gastro-terroir {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.gastro-terroir img {
  width: 40%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gastro-text {
  width: 55%;
}

@media screen and (max-width: 768px) {
  .gastro-terroir {
    flex-direction: column;
    align-items: center;
  }

  .gastro-terroir img,
  .gastro-text {
    width: 100%;
  }

  .gastro-text {
    text-align: center;
  }
}

.gastro-text {
  flex: 1 1 55%;
}

.gastro-text h3 {
  margin-bottom: 0.8rem;
  color: #2b4838;
}

.gastro-text p {
  color: #2b4838;
  line-height: 1.6;
}

.gastro-card {
  background-color: #ffffff;
  border-left: 5px solid #d4a56d;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.gastro-card h3 {
  margin-bottom: 0.8rem;
  color: #2b4838;
}

.gastro-card p {
  color: #2b4838;
  line-height: 1.6;
}
.plein-air {
  background-color: #f8f8f8;
    padding: 4rem 2rem;
}

.plein-air h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2b4838;
}

.plein-air-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.plein-air-grid.inverse {
  flex-direction: row-reverse;
}

.plein-air-photo {
  flex: 1 1 40%;
}

.plein-air-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.plein-air-texte {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plein-air-card {
  background-color: #ffffff;
  border-left: 5px solid #84b89c;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.04);
}

.plein-air-card h3 {
  margin-bottom: 0.8rem;
  color: #3a5e4f;
}

.plein-air-card p {
  color: #444;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .plein-air-grid {
    flex-direction: column;
  }

  .plein-air-photo, .plein-air-texte {
    width: 100%;
  }

  .plein-air-texte {
    align-items: center;
  }

  .plein-air-card {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  /* Image d'en-tête */
  .intro-fond {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
    text-align: center;
  }

  .fond-contenu h1 {
    font-size: 2rem;
  }

  .fond-contenu p {
    font-size: 0.95rem;
  }

  /* Section RANDO */
  .rando-item {
    flex-direction: column;
    text-align: center;
  }

  .rando-img,
  .rando-text {
    width: 100%;
  }

  .rando-img img {
    max-height: 300px;
    object-fit: cover;
  }

  /* Section patrimoine */
  .patrimoine-grid {
    gap: 1.5rem;
  }

  .patrimoine-card {
    text-align: center;
    padding: 1.2rem;
  }

  /* Section gastronomie (renforts si besoin) */
  .plein-air-photo img,
  .gastro-terroir img {
    height: auto;
    max-height: 250px;
  }

  /* Général */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Footer */
  .footer-column {
    margin-bottom: 2rem;
  }

  .footer-hille {
    padding: 2rem 1rem;
  }
}
.logo a {
  color: #111 !important;
  text-decoration: none !important;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
}