:root {
  --primary: #2f5d50;
  --primary-dark: #203f36;
  --secondary: #d9a441;
  --dark: #1f2a24;
  --text: #2f332f;
  --muted: #6f766f;
  --light: #f8f5ef;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 14px 35px rgba(0, 0, 0, .10);
  --title-font: Georgia, "Times New Roman", serif;
  --body-font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5 {
  font-family: var(--title-font);
  color: var(--dark);
  line-height: 1.15;
}




/* Titre principal de section */

.section-title-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 400;
  color: #5c3a21;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Sous-titre */

.section-subtitle {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: #6d6d6d;
  max-width: 750px;
  margin: auto;
}

/* Cartes chambres */

.card-room {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.12);
  transition: all .35s ease;
  height: 100%;
}

.card-room:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(0,0,0,.18);
}

.card-room img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Titre des chambres */

.room-title {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  font-weight: 400;
  color: #5c3a21;
  line-height: 1;
  margin-bottom: 20px;
  text-align: center;
}

/* Description */

.card-room p {
  font-family: Georgia, serif;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

/* Bouton */

.card-room .btn-outline-main {
  display: block;
  width: fit-content;
  margin: 25px auto 0 auto;
}

/* Mobile */

@media (max-width:768px) {

  .section-title-script {
    font-size: 3rem;
  }

  .room-title {
    font-size: 2.4rem;
  }

  .card-room img {
    height: 260px;
  }

}

.about-text {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #5f5f5f;
}

p {
  color: var(--text);
}

.navbar {
  padding: 14px 0;
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(12px);
}

.navbar-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  font-weight: 400;
  color: #4b2e1e !important;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  margin: 0 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.lang-btn {
  border: 0;
  background: transparent;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 6px;
}

.lang-btn:hover {
  color: var(--primary);
}
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../img/gallery/gallery-1.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 90px;
}

.hero-title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  text-shadow:
    0 3px 12px rgba(0,0,0,.45),
    0 1px 2px rgba(0,0,0,.5);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: rgba(255,255,255,.95);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }
}

.page-header {
  padding: 160px 0 90px;
background: linear-gradient(rgba(205, 205, 205, 0.92), rgba(255, 255, 253, 0.72)), url("../img/hero/hero-1.webp") center/cover no-repeat;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--primary-dark);
}

.page-header p {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-padding {
  padding: 90px 0;
}

.bg-soft {
  background: var(--light);
}

.btn-main {
  display: inline-block;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 999px;
  padding: 12px 30px;
  border: 1px solid var(--primary);
  font-weight: 700;
  transition: .25s ease;
}

.btn-main:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-main {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary) !important;
  border-radius: 999px;
  padding: 12px 30px;
  font-weight: 700;
  transition: .25s ease;
}

.btn-outline-main:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.card-room {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: .25s ease;
}

.card-room:hover {
  transform: translateY(-6px);
}

.card-room img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-room .p-4 {
  padding: 28px !important;
}

.card-room h3,
.card-room h2 {
  color: var(--primary-dark);
}

.contact-box,
.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-box h2,
.contact-box h3,
.info-box h2,
.info-box h3 {
  color: var(--primary-dark);
}

.gallery-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: .35s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.room-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.room-hero-cartello-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.room-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.room-features li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: relative;
}

.room-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary);
  font-weight: 900;
}

.map-box {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 420px;
  background: var(--light);
}

.map-box iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.form-control,
.form-select {
  border-radius: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(0,0,0,.14);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(47,93,80,.16);
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer h4,
.footer h5 {
  color: var(--white);
}

.footer p {
  color: rgba(255,255,255,.8);
}

.footer a {
  color: rgba(255,255,255,.9);
}

.footer a:hover {
  color: var(--secondary);
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.badge-soft {
  display: inline-block;
  background: rgba(47,93,80,.10);
  color: var(--primary);
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
  font-size: .9rem;
}

.text-muted-custom {
  color: var(--muted);
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 18px;
  }

  .hero {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .room-hero-img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .page-header {
    padding: 130px 0 60px;
  }

  .hero {
    min-height: 82vh;
  }

  .card-room img,
  .gallery-card img,
  .gallery-img {
    height: 240px;
  }

  .contact-box,
  .info-box {
    padding: 25px;
  }
}

.why-section {
  background: #ffffff;
}

/* TITRE PRINCIPAL */

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 500;
  color: #5c3a21;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* SOUS TITRE */

.section-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: #7a7a7a;
  max-width: 700px;
  margin: auto;
}

/* CARTES */

.why-card {
  background: #fff;
  border-radius: 32px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  height: 100%;
  transition: all .35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,.14);
}

/* ICONE */

.why-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 30px;
  border-radius: 50%;
  background: rgba(92,58,33,.08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2.6rem;
}

/* TITRE DES BLOCS */

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #5c3a21;
  margin-bottom: 20px;
}

/* TEXTE */

.why-card p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: #666;
  line-height: 1.9;
}

/* MOBILE */

@media (max-width:768px) {

  .section-title {
    font-size: 3rem;
  }

  .why-title {
    font-size: 1.9rem;
  }

  .why-card {
    padding: 40px 25px;
  }

}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 500;
  color: #5c3a21;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-section .section-subtitle {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

.cta-section .btn-main {
  min-width: 220px;
}

@media (max-width:768px) {

  .cta-section .section-title {
    font-size: 3rem;
  }

  .cta-section .section-subtitle {
    font-size: 1.1rem;
  }

}
.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #5c3a21;
  margin-bottom: 25px;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(255,255,255,.85),
                    rgba(255,255,255,.85)),
    url("../img/hero/hero-1.webp")
    center/cover no-repeat;
}

.error-card {
  background: rgba(255,255,255,.95);
  padding: 70px 50px;
  border-radius: 35px;
  box-shadow: 0 25px 70px rgba(0,0,0,.12);
}

.error-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem, 15vw, 12rem);
  font-weight: 600;
  color: #5c3a21;
  line-height: 1;
}

.error-logo {
  max-width: 620px;
  margin-top: 35px;
  display: block;
    margin: 35px auto;
}

@media (max-width:768px) {

  .error-card {
    padding: 50px 25px;
  }

  .error-logo {
    max-width: 160px;
  }

}
.badge-soft {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(92,58,33,.08);
  color: #5c3a21;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(92,58,33,.12);
}

.tariff-table {
  font-size: 1.2rem;
}

.tariff-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.tariff-table td:first-child {
  font-weight: 600;
  color: var(--clr-primary);
}

.tariff-table td:last-child {
  text-align: right;
  font-weight: 700;
}

.price-info-box {
  padding: 1.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  height: 100%;
  font-size: 1.05rem;
}