body {
  font-family: var(--font-family);
  background-color: var(--light-bg);
  color: #333;
}

h1,
h2,
h3,
.section-title,
.equipment-title,
.map-title {
  font-family: var(--font-title);
}

body,
p,
li,
.logement-description,
.feature-item,
.equipment-group ul li {
  font-family: var(--font-body);
}

button,
input,
textarea,
select,
.btn-contact {
  font-family: var(--font-sans);
}

.subtitle,
.logement-subtitle,
.toggle-description-btn {
  font-family: var(--font-sans);
  font-style: italic;
}

.section-block h2,
.section-block h3 {
  font-family: var(--font-title);
}

.section-block {
  padding: 10px 10px;
  background: #fff;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color); /* darker for more contrast */
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.9;
}

.section-block p,
.section-block li,
.section-block .feature-item,
.section-block ul,
.section-block .logement-description {
  color: var(--secondary-color); /* lighter to make titles stand out */
  font-size: 1rem;
  line-height: 1.6;
}

/* Optional: add subtle background tint to title area */
.section-block .section-title {
  padding: 8px 12px;
  background: #f5f7fa;
  border-radius: 6px;
}

/* Slight shadow on section titles for depth */
.section-title {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.logement-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 10px;
}

.logement-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.logement-description {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
}

.logement-description-wrapper {
  position: relative;
}

.logement-description {
  transition: max-height 0.4s ease, opacity 0.3s ease;
  overflow: hidden;
}

.logement-description.collapsed {
  max-height: 250px; /* Adjust to desired height */
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 70%,
    rgba(0, 0, 0, 0)
  );
}

.toggle-description-btn,
.toggle-rules-btn {
  display: inline-block;
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  margin-top: 12px;
  cursor: pointer;
  padding: 0;
}

.toggle-description-btn {
  display: inline-block;
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1rem;
  margin-top: 12px;
  cursor: pointer;
  padding: 0;
}

.logement-description h3 {
  font-size: 1.4rem;
  color: #2b3d55;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
}

.logement-description h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #bfa66b;
  margin-top: 5px;
  border-radius: 2px;
}

.logement-description ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.logement-description ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.caution-section,
.cancellation-section {
  margin-top: 40px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.logement-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.logement-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
  position: relative;
  padding-left: 22px;
}

.logement-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color, #bfa66b);
  font-weight: bold;
}

.logement-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-item {
  background: #fafafa;
  padding: 14px 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.plain-list {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto;
}

.plain-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

.equipment-section {
  background: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.equipment-title {
  text-align: center;
  font-size: 2rem;
  color: #2b3d55;
  margin-bottom: 40px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.equipment-group h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #444;
}

.equipment-group ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.equipment-group ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: #333;
}

.equipment-group ul li i {
  color: var(--primary-color);
  font-size: 1rem;
}

.map-title {
  text-align: center;
  font-size: 2rem;
  color: #2b3d55;
  margin-bottom: 40px;
}

.logement-map {
  display: block;
  margin: 30px auto;
  width: 100%;
  max-width: 800px;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logement-comments-block .comments-list {
  max-width: 700px;
  margin: 0 auto;
}
.logement-comment.card {
  border-radius: 1rem;
  border: none;
  background: #f8f9fa;
}
.comment-text {
  font-size: 1.1em;
  color: #333;
}

.booking-links .btn {
  min-width: 200px;
  font-size: 1.15em;
  box-shadow: 0 2px 8px #0001;
  transition: transform 0.15s;
}
.booking-links .btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.booking-btn {
    background-color: #003580;
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.booking-btn:hover {
    background-color: #00224f;
    color: white;
}


@media (max-width: 768px) {
  .section-block {
    padding: 30px 15px;
  }
  .logement-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
}
