/* === 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;
   display: flex;
}
.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 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 li a:hover {
  color: #5b3c2c;
}

.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;
    }
  }
  /* Responsive */
@media (max-width: 768px) {
  .container-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
  }
}