.section-selector {
  padding: 80px 0;
  background: #f8f5f0;
  text-align: center;
}

.section-container h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

#sectionsButtons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.section-btn {
  padding: 12px 30px;
  background: var(--royal-blue);
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  border-radius: 4px;
}

.section-btn:hover {
  background: var(--royal-gold);
  color: black;
}

/* ============================= */
/* SECTION DIVIDER */
/* ============================= */

.section-divider {
  padding: 40px 0 40px;
  background: #ffffff;
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #e5e5e5;
}


.section-divider .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c5a253, transparent);
  max-width: 200px;
}

.divider-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1c1c1c;
}

/* SECTION THEMES */

.section-light,
.section-white,
.section-dark {
  padding: 90px 0;
}


.section-dark h2,
.section-dark h3,
.section-dark p {
  color: white;
}

.section-dark .hotel-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.section-dark .hotel-card p {
  color: #ddd;
}

.section-light,
.section-white,
.section-dark {
  position: relative;
}


