* {
    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;
  }
  .logo a {
    color: #111 !important;
    text-decoration: none !important;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
  }
  
  .logo a:hover {
    color: #8ca977;
  }
  
  .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;
  }
  /* 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;
    }
  }
  .btn-reserver {
    background-color: #8ca977;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
  }
  .custom-caption {
    bottom: 20px;
    left: 20px;
    right: auto;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 8px;
  }
  
  .custom-caption h5 {
    color: #fff;
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    margin: 0;
  }
  
  #carouselMairie {
    margin-top: 0;
    padding-top: 0;
    border: none;
  }
  
  
  .carousel-inner {
    width: 100%;
  }
  
  .carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 20px;
  }

  .carousel-caption {
    position: absolute;
  left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    bottom: 0r;
  }
  
  .carousel-caption h5 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: #ffffff !important;  /* Ajout du !important pour forcer */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);  /* pour un contraste encore + stylé */
    margin: 0;
    text-align: center;
  }
  /* Animation douce */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Présentation */
  .presentation {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #fefefe;
  }
  
  .presentation h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .presentation p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.6;
  }
 
.convivial {
  padding: 4rem 2rem;
  background-color: #fffdf9;
  color: #333;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease forwards;
}

.convivial h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.7rem;
  margin-bottom: 1.5rem;
  color: #533621;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

.convivial p {
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  
  
  /* Histoire */
  .histoire {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff;
  }
  
  .histoire h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.3rem;
    margin-bottom: 1rem;
  }
  
  .histoire p {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
  }
  
  /* Footer */
  footer {
    color: white;
    padding: 2rem 1rem;
    border: none;
    box-shadow: none;
  }
  
  
  .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;
  }
  
  .reve {
    background-color: #fdfbf7;
    padding: 4rem 2rem;
  }
  
  .flex-reve {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .texte-reve {
    flex: 1 1 47%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  
  .texte-reve h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #533621;
  }
  
  .photos-reve {
    flex: 1 1 47%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .photos-reve img {
    width: 100%;
    height: 220px; /* plus grandes */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .photos-reve img:hover {
    transform: scale(1.03);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .flex-reve {
      flex-direction: column;
    }
  
    .texte-reve, .photos-reve {
      flex: 1 1 100%;
    }
  
    .photos-reve {
      grid-template-columns: 1fr;
    }
  
    .photos-reve img {
      height: 200px;
    }
  }
  .footer-hille {
    background-color: #f2f2f2;
    padding: 40px 0;
    font-family: 'Georgia', serif;
    color: #222;
  }
  
  .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;
  }
  
  .footer-column p,
  .footer-column strong {
    color: #333;
    font-size: 0.95em;
    line-height: 1.4em;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
    color: #444;
    border-top: 1px solid #ccc;
  }
  
  .footer-bottom a {
    color: #444;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  .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;
    margin-right: 2em;
  }
  
  .logo-footer.stylized-logo:hover {
    transform: scale(1.05) rotate(-1deg);
  }
  
  .social-icons img {
    width: 26px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    vertical-align: middle;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .container-footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-column {
      flex: 1 1 100%;
      margin: 10px 0;
    }
  }
  .btn-reve {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #8ca977;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .btn-reve:hover {
    background-color: #739361;
  }
   
.galerie-dynamique {
  padding: 60px 40px;
  background-color: #f7f7f7;
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.titre-resa {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  margin-bottom: 40px;
  color: #2c2c2c;
}

.galerie-home {
  padding: 4rem 2rem;
  background-color: #f7f7f7;
  text-align: center;
}

.galerie-home h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c2c2c;
}

.galerie-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.galerie-large {
  flex: 2 1 600px;
}

.galerie-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.galerie-small {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.galerie-card {
  text-align: center;
}

.galerie-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.galerie-caption {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #444;
}

/* Bouton Voir plus */
.voir-plus-wrapper {
  margin-top: 2.5rem;
}

.voir-plus-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #8ca977;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.voir-plus-btn:hover {
  background-color: #7c9863;
}

/* Responsive */
@media (max-width: 768px) {
  .galerie-grid {
    flex-direction: column;
  }

  .galerie-small {
    grid-template-columns: 1fr 1fr;
  }

  .galerie-img {
    height: 120px;
  }
}
.galerie-airbnb {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
  align-items: stretch;
}

.photo-large {
  flex: 2 1 500px;
}

.photo-large img {
  max-height: 400px ;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.photo-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 1rem;
  width: 100%;
}

.photo-small > div,
.photo-small > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.photo-overlay {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
}

.photo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.btn-gallery {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #8ca977;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.btn-gallery:hover {
  background-color: #739361;
}

.galerie {
  margin-bottom: 5rem;
}

.photo-small img,
.photo-overlay img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
}
.galerie h2 {
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: #3e2b1c;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .galerie-airbnb {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .photo-large {
    width: 100%;
    max-height: 250px;
  }

  .photo-large img {
    height: 250px;
  }

  .photo-small {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 180px);
    gap: 1rem;
    width: 100%;
  }

  .photo-small > img,
  .photo-small > div {
    height: 180px;
  }

  .btn-gallery {
    bottom: 10px;
    right: 10px;
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}
.mentions-lien {
  text-align: center;
  margin-top: 1rem;
}

.mentions-lien a {
  color: #ffffffcc;
  font-size: 0.9rem;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.mentions-lien a:hover {
  color: #ffffff;
}

/* MODALE */
.modal-mentions {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  padding-top: 60px;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  position: relative;
}

.modal-content h2 {
  font-family: 'DM Serif Display', serif;
  margin-top: 0;
  color: #5b3c2c;
  text-align: center;
}

.close {
  color: #aaa;
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}
.navbar a.active {
  text-decoration: underline;
  font-weight: bold;
}

/* === Content from c:\Users\olivi\Documents\hackathon2025\laHille\css\hebergement.css === */
/* Reset & Base */
* {
    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;
  }
  
  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: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: #111;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 400;
    padding: 0.5rem;
    transition: 0.3s;
  }
  
 
  .btn-reserver {
    background-color: #7c9e74;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
  }
  
  /* INTRO */
  .intro {
    padding: 3rem 2rem;
    text-align: center;
    background-color: #fff;
  }
  
  .intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
  }
  
  /* SECTIONS */
  .section-bloc {
    padding: 3rem 2rem;
    background-color: #fff;
    margin-bottom: 2rem;
  }
  
  .desc {
    text-align: center;
    font-size: 1rem;
    max-width: 800px;
    margin: 1rem auto 0;
    color: #555;
  }
  
  /* GALLERY */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.02);
  }
  
  /* 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;
      align-items: center;
    }
  }
  
  .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;
    margin-right: 2em;
  }
  
  .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%;
  }
}
.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(245, 242, 242, 0.5); /* Fond sombre semi-transparent */
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.reve {
  background-color: #fdfbf7;
  padding: 4rem 2rem;
}

.flex-reve {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.texte-reve {
  flex: 1 1 47%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.texte-reve h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #533621;
}

.photos-reve {
  flex: 1 1 47%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.photos-reve img {
  width: 100%;
  height: 220px; /* plus grandes */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.photos-reve img:hover {
  transform: scale(1.03);
}
.container flex-reve inverse-flex{
display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .flex-reve,
  .container.flex-reve.inverse-flex {
    flex-direction: column;
    align-items: center;
  }

  .texte-reve,
  .photos-reve {
    flex: 1 1 100%;
    width: 100%;
    padding: 1.5rem;
  }

  .photos-reve {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .photos-reve img {
    height: 200px;
  }

  .texte-reve h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .texte-reve p {
    font-size: 0.95rem;
    text-align: justify;
  }

  .fond-contenu h1 {
    font-size: 2rem;
  }

  .fond-contenu p {
    font-size: 1rem;
  }

  .intro-fond {
    height: 50vh;
  }
}
.logo a {
  color: #111 !important;
  text-decoration: none !important;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
}

/* === Content from c:\Users\olivi\Documents\hackathon2025\laHille\css\evenement.css === */
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #f8f8f8;
  color: #333;
}

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: #fff;
  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);
  }
  
  /* 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;
  }
  
  .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 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;
  }

  
  .galerie {
    padding: 3rem 1rem;
    background: #fff;
  }
  
  .galerie-bloc {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  
  .galerie-bloc img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .galerie-bloc div {
    flex: 1;
  }
  
  .galerie-ligne {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .galerie-vignette {
    flex: 1 1 30%;
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
  }
  
  .galerie-vignette img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.5rem;
  }
  
  .cta-contact {
    text-align: center;
    font-weight: bold;
    margin-top: 2rem;
  }
  
  
  .contact p {
    max-width: 800px;
    margin: auto;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6em;
  }
  
  @media (max-width: 768px) {
    .galerie-bloc {
      flex-direction: column;
    }
  
    .galerie-bloc img {
      width: 100%;
    }
  
    .activite-bloc {
      flex-direction: column;
      text-align: center;
    }
  
    .activite-bloc img {
      width: 100%;
    }
  
    .galerie-ligne {
      flex-direction: column;
    }
  }
  
  .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 {
    width: 100px;
    margin-bottom: 1rem;
    margin-right: 2em;
  }
  
  .logo-col p {
    margin: 0.2rem 0;
  }
  
  .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%;
  }
}
  /* 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;
      align-items: center;
    }
  }
.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;
}


/* === SECTION TARIFS (API) === */
.tarifs-section {
  background-color: #fafafa;
  padding: 60px 20px;
  text-align: center;
}

.titre-formules {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
  color: #2c2c2c;
}

.tarif-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.tarif-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  width: 100%;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.tarif-card:hover {
  transform: translateY(-5px);
}

.tarif-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.tarif-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #4a3b35;
  margin-bottom: 10px;
}

.tarif-prix {
  font-size: 18px;
  color: #5b3c2c;
  margin-bottom: 10px;
}

.tarif-texte {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tarif-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5b3c2c;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.tarif-btn:hover {
  background-color: #3a251a;
}

.btn-reve {
  display: inline-block;
  background-color: #5b3c2c;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-reve:hover {
  background-color: #3d281d;
  cursor: pointer;
}

.logo a {
  color: #111 !important;
  text-decoration: none !important;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
}

/* === Content from c:\Users\olivi\Documents\hackathon2025\laHille\css\acces.css === */
* {
    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;
  }
  
  .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 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;
  }

  body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
  }
  
  h1, h2, h3 {
    font-family: 'DM Serif Display', serif;
    color: #2b2b2b;
  }
  
  .banniere {
    position: relative;
    text-align: center;
  }
  
  .banniere img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
  }
  
  .banniere h1 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255,255,255,0.8);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 2.5rem;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 2rem;
  }
  
  .bloc {
    margin-bottom: 3rem;
  }
  
  .bloc h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
  
  .bloc h3 {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    color: #5a5a5a;
  }
  
  .bloc p {
    line-height: 1.7;
  }
  
  .formulaire-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin-top: 1.5rem;
  }
  
  .formulaire-contact input,
  .formulaire-contact textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
  }
  
  .formulaire-contact button {
    background-color: #2b4838;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .formulaire-contact button:hover {
    background-color: #44695d;
  }
  
.footer-hille {
  background-color: #dce5d4; /* Vert très clair */
  color: #2d2d2d;
  padding: 4rem 1rem 2rem;
  font-family: 'Outfit', sans-serif;
  margin-top: 4rem; /* Ajoute de l’espace avant le footer */
}


.container-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.logo-footer {
  width: 100px;
  margin-bottom: 1rem;
  margin-right: 2em;
}

.logo-col p {
  margin: 0.2rem 0;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
  transition: opacity 0.3s;
}

.social-icons a:hover img {
  opacity: 0.7;
}

.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%;
  }
}
.intro-contact {
  font-size: 1.2rem;
  text-align: center;
  margin: 2rem auto 4rem;
  color: #555;
  max-width: 800px;
}
.btn-map {
  text-align: center;
  margin-top: 1.5rem;
}

.btn-map a {
  background-color: #2b4838;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.btn-map a:hover {
  background-color: #44695d;
}
.fin-contact {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
}

.fin-contact img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.fin-contact p {
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
}
body {
  font-family: 'Outfit', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  margin: 0;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
}

.titre-section {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.titre-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.titre-section p {
  font-size: 1.2rem;
  color: #555;
}

.acces-bloc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.acces-bloc.reverse {
  flex-direction: row-reverse;
}

.acces-bloc .texte {
  flex: 1 1 500px;
}

.acces-bloc .image {
  flex: 1 1 400px;
}

.acces-bloc img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-final {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.contact-final h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-final p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.formulaire-contact {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formulaire-contact input,
.formulaire-contact textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
}

.formulaire-contact button {
  background-color: #2b4838;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.formulaire-contact button:hover {
  background-color: #44695d;
}

@media screen and (max-width: 768px) {
  .acces-bloc {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .contact-final {
    padding: 2rem 1rem;
  }
}
.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;
}
.acces-bloc:nth-of-type(2) .image img {
  max-width: 300px;
  height: auto;
  margin: auto;
  display: block;
}
.acces-bloc.reverse {
  flex-direction: row-reverse;
    display: flex !important;
  }

  @media (max-width: 768px) {
    .intro-fond {
      flex-direction: column;
      height: auto;
      padding: 2rem 1rem;
    }
  
    .fond-contenu h1 {
      font-size: 2rem;
    }
  
    .fond-contenu p {
      font-size: 1rem;
    }
  
    .acces-bloc {
      flex-direction: column !important;
      padding: 2rem 1rem;
      gap: 1.5rem;
    }
  
    .acces-bloc .texte,
    .acces-bloc .image {
      flex: 1 1 100%;
      width: 100%;
    }
  
    .acces-bloc .texte h2,
    .acces-bloc .texte h3 {
      text-align: center;
    }
  
    .acces-bloc .texte p {
      text-align: center;
      font-size: 0.95rem;
    }
  
    .acces-bloc img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 12px;
    }
  
    .contact-final h2 {
      font-size: 1.8rem;
    }
  
    .contact-final p {
      font-size: 1rem;
    }
  
    .formulaire-contact input,
    .formulaire-contact textarea {
      font-size: 1rem;
    }
  
    .formulaire-contact button {
      font-size: 1rem;
    }
  
    .footer-hille {
      padding: 3rem 1rem;
    }
  
    .footer-column {
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .footer-bottom {
      font-size: 0.8rem;
    }
  }
  .btn-reserver {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.4rem;
    background-color: #8ca977;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .btn-reserver:hover {
    background-color: #739361;
  }
  .texte h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #8ca977;
    padding-bottom: 0.5rem;
    color: #5b3c2c;
    text-align: center;
  }
  
  .texte h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    color: #333;
  }
  .logo a {
    color: #111 !important;
    text-decoration: none !important;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
  }
    /* 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;
      align-items: center;
    }
  }

/* === Content from c:\Users\olivi\Documents\hackathon2025\laHille\css\reserver.css === */
/* === MENU === */
.navbar {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  font-family: 'Outfit', sans-serif;
  border-bottom: 1px solid #eee;
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  color: #1d1d1d;
  text-transform: uppercase;
}
.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;
  margin-right: 2em;
}
.logo a {
  color: #111 !important;
  text-decoration: none !important;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
}
.logo-footer.stylized-logo:hover {
  transform: scale(1.05) rotate(-1deg);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #1d1d1d;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}



.nav-links .btn-reserver {
  background-color: #5b3c2c;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.nav-links .btn-reserver:hover {
  background-color: #43291e;
}

.intro-fond {
  position: relative;
  width: 100%;
  height: 600px; /* Augmenté ici pour voir toute l'image */
  overflow: hidden;
}

.fond-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fond-contenu {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}

.fond-contenu h1 {
  font-size: 38px;
  font-family: 'DM Serif Display', serif;
  margin-bottom: 10px;
}

.fond-contenu p {
  font-size: 18px;
}

/* === INTRO TEXT === */
.intro-resa {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.intro-resa h2 {
  font-size: 26px;
  color: #2c2c2c;
  font-weight: 600;
  margin-bottom: 20px;
}

.prestations {
  list-style: none;
  padding: 0;
  color: #5b3c2c;
  font-size: 17px;
}

.prestations li {
  margin-bottom: 10px;
}

/* === SECTION TARIFS (API) === */
.tarifs-section {
  background-color: #fafafa;
  padding: 60px 20px;
  text-align: center;
}

.titre-formules {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  margin-bottom: 30px;
  color: #2c2c2c;
}

.tarif-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.tarif-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 320px;
  width: 100%;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.tarif-card:hover {
  transform: translateY(-5px);
}

.tarif-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.tarif-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #4a3b35;
  margin-bottom: 10px;
}

.tarif-prix {
  font-size: 18px;
  color: #5b3c2c;
  margin-bottom: 10px;
}

.tarif-texte {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tarif-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #5b3c2c;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.tarif-btn:hover {
  background-color: #3a251a;
}

/* === INTRO AVANT FORMULAIRE === */
.texte-intro {
  text-align: center;
  font-size: 18px;
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
}

/* === FORMULAIRE DE RÉSERVATION === */
.formulaire-reservation {
  padding: 60px 20px;
  background: #ffffff;
}

.titre-resa {
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  margin-bottom: 40px;
  color: #2c2c2c;
}

.formulaire {
  max-width: 850px;
  margin: auto;
  background: #faf8f7;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid #e3dcd5;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #4a3b35;
  font-size: 17px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d8ccc3;
  border-radius: 8px;
  font-size: 16px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #5b3c2c;
  outline: none;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background-color: #5b3c2c;
  color: #fff;
  padding: 16px 35px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background-color: #3a251a;
  transform: scale(1.03);
}

/* === FOOTER === */
.footer-hille {
  background-color: #2c2c2c;
  color: #fff;
  padding: 60px 40px 20px;
  font-family: 'Outfit', sans-serif;
}

.container-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.footer-column p {
  margin: 6px 0;
  color: #ccc;
  font-size: 15px;
}

.footer-column strong {
  color: #fff;
}

.footer-column .social-icons a img {
  width: 28px;
  margin-right: 12px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}
  /* 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;
      align-items: center;
    }
  }

/* === Content from c:\Users\olivi\Documents\hackathon2025\laHille\css\alentours.css === */
* {
    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;
  }
  
  .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 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;
    margin-right: 2em;
  }
  
  .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;
}

/* === Content from c:\Users\olivi\Documents\hackathon2025\laHille\css\mention.css === */
body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfbf7;
    color: #2e2e2e;
  }
  
  .navbar {
    background-color: #8ca977;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
  }
  
  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    color: white;
  }
  .logo a {
    color: #111 !important;
    text-decoration: none !important;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
  } 
  .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;
    margin-right: 2em;
  }
  
  .logo-footer.stylized-logo:hover {
    transform: scale(1.05) rotate(-1deg);
  }
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .mentions {
    padding: 4rem 1.5rem;
  }
  
  .mentions-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  .mentions-container h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #5b3c2c;
  }
  
  .mentions-container h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    color: #8ca977;
  }
  
  .mentions-container p {
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  
  .footer-hille {
    text-align: center;
    background-color: #8ca977;
    color: white;
    padding: 1rem;
    margin-top: 3rem;
  }
  .modal-mentions {
    display: none !important; /* Forcer le masquage initial */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    padding-top: 60px;
  }
  

/* === Content from c:\Users\olivi\Documents\hackathon2025\laHille\css\mariage.css === */
* {
    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;
  }
  
  .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 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;
  }

  /* 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;
  }
  
  .reve {
    background-color: #fdfbf7;
    padding: 4rem 2rem;
  }
  
  .flex-reve {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .texte-reve {
    flex: 1 1 47%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  
  .texte-reve h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #533621;
  }
  
  .photos-reve {
    flex: 1 1 47%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .photos-reve img {
    width: 100%;
    height: 220px; /* plus grandes */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .photos-reve img:hover {
    transform: scale(1.03);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .flex-reve {
      flex-direction: column;
    }
  
    .texte-reve, .photos-reve {
      flex: 1 1 100%;
    }
  
    .photos-reve {
      grid-template-columns: 1fr;
    }
  
    .photos-reve img {
      height: 200px;
    }
  }
  .footer-hille {
    background-color: #f2f2f2;
    padding: 40px 0;
    font-family: 'Georgia', serif;
    color: #222;
  }
  
  .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;
  }
  
  .footer-column p,
  .footer-column strong {
    color: #333;
    font-size: 0.95em;
    line-height: 1.4em;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
    color: #444;
    border-top: 1px solid #ccc;
  }
  
  .footer-bottom a {
    color: #444;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  .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;
    margin-right: 2em;
  }
  
  .logo-footer.stylized-logo:hover {
    transform: scale(1.05) rotate(-1deg);
  }
  
  .social-icons img {
    width: 26px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    vertical-align: middle;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .container-footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-column {
      flex: 1 1 100%;
      margin: 10px 0;
    }
  }
  .btn-reve {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #8ca977;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .btn-reve:hover {
    background-color: #739361;
  }
  .hero-mariage {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }
  
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
  }
  
  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 20px;
  }
  
  .hero-overlay h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  }
  
  .hero-overlay p {
    font-size: 18px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  }
  
  /* Section formules */
  .formules-mariage {
    background-color: #fdfbf7;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .formules-mariage h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #533621;
  }
  
  .formules-mariage .texte-reve {
    text-align: left;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 12px;
    margin: 1rem;
    flex: 1 1 30%;
  }
  .formules-mariage .formules-bloc {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .cta-contact {
    text-align: center;
    margin: 3rem 0;
  }
  .btn-cta-contact {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #8ca977;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .btn-cta-contact:hover {
    background-color: #739361;
  }
  @media (max-width: 768px) {

    /* Section HERO */
    .hero-mariage {
      height: 400px;
    }
  
    .hero-overlay {
      padding: 1rem;
    }
  
    .hero-overlay h1 {
      font-size: 1.8rem;
    }
  
    .hero-overlay p {
      font-size: 1rem;
    }
  
    /* Section RÊVE */
    .flex-reve {
      flex-direction: column;
      padding: 0 1rem;
    }
  
    .texte-reve,
    .photos-reve {
      width: 100%;
      padding: 1rem;
    }
  
    .texte-reve h2 {
      font-size: 1.6rem;
      text-align: center;
    }
  
    .texte-reve p {
      font-size: 0.95rem;
      text-align: justify;
    }
  
    .photos-reve {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .photos-reve img {
      height: 180px;
    }
  
    .btn-reve {
      font-size: 0.95rem;
      padding: 0.6rem 1.2rem;
      margin: 1rem auto 0;
      display: block;
    }
  
    /* Section FORMULES */
    .formules-bloc {
      flex-direction: column;
    }
  
    .formules-mariage .texte-reve {
      width: 100%;
      text-align: center;
    }
  
    .formules-mariage h2 {
      font-size: 2rem;
    }
  
    .texte-reve h3 {
      font-size: 1.3rem;
    }
  
    /* Footer déjà responsive mais renforcement */
    .footer-hille {
      padding: 2rem 1rem;
    }
  
    .footer-column {
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .footer-bottom {
      font-size: 0.85rem;
    }
  
    .logo-footer {
      width: 80px;
    }
  }
  .logo a {
    color: #111 !important;
    text-decoration: none !important;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
  }

/* === Content from c:\Users\olivi\Documents\hackathon2025\laHille\css\galerie.css === */
* {
    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;
  }
  
  .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 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;
  }
  
 
  .galerie-slider {
    padding: 4rem 2rem;
    background-color: #fdfbf7;
    text-align: center;
  }
  
  .galerie-slider h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .carousel-inner img {
  
    object-fit: cover;
    border-radius: 10px;
  }
  
.footer-hille {
  background-color: #dce5d4; /* Vert très clair */
  color: #2d2d2d;
  padding: 4rem 1rem 2rem;
  font-family: 'Outfit', sans-serif;
  margin-top: 4rem; /* Ajoute de l’espace avant le footer */
}


.container-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.logo-footer {
  width: 100px;
  margin-bottom: 1rem;
  margin-right: 2em;
}

.logo-col p {
  margin: 0.2rem 0;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
  transition: opacity 0.3s;
}

.social-icons a:hover img {
  opacity: 0.7;
}

.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%;
  }
}
@media (max-width: 768px) {
  .galerie-slider {
    padding: 3rem 1rem;
  }

  .galerie-slider h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .carousel-inner img {
   
    object-fit: cover;
    border-radius: 8px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .btn-reserver {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .footer-hille {
    padding: 2rem 1rem;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}
.logo a {
  color: #111 !important;
  text-decoration: none !important;
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
}

.container{
    display: flex !important
;
    flex-direction: column;}
  

  .pe-41 {
    padding-right: 1.5rem ;
}
.ps-41 {
    padding-left: 1.5rem ;
}
.w-501 {
    width: 50% ;
}
@media (max-width: 768px){
  .container {flex-direction: column-reverse;}
   .w-501 {
     width: 100% 
    }
  .pe-41 {
     padding-right: 0rem; 
}
.ps-41 {
    padding-left: 0rem; 
}
}