* {
    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 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;
  }
  
 
  .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 {
    height: 80vh;
    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;
}

.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 {
    height: 40vh;
    object-fit: cover;
    border-radius: 8px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 1.4rem;
     display: flex;
  }

  .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;
}