/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.main-content {
  margin-top: 64px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/photos/11zon_zip/12.jpg") no-repeat center center
    fixed;
  background-size: cover;
  filter: blur(6px);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(45, 133, 130, 0.7);
}

.main-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  margin-top: 5em;
}

.main-content h1,
.main-content h2,
.main-content h3 {
  color: #fff;
}

.main-content h1 {
  font-size: 5em;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 2px;
}

.main-content h2 {
  font-size: 1.5em;
  font-weight: normal;
  margin-bottom: 0;
}

.main-content h3 {
  font-size: 1em;
  font-weight: normal;
  margin-bottom: 1em;
}

.cta-buttons {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-top: 2em;
}

.btn {
  display: inline-block;
  padding: 0.8em 2em;
  font-size: 1em;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-services {
  background: transparent;
  color: #fff;
  border: 2px solid var(--btn);
}

.btn-services:hover {
  background: #fff;
  color: var(--btn);
  border-color: var(--btn);
}

.btn-reserve {
  background: var(--btn);
  color: #fff;
  border: 2px solid var(--btn);
}

.btn-reserve:hover {
  background: #fff;
  color: var(--btn);
  border-color: var(--btn);
}
