/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('../images/hero3.png');
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 5px;
  color: #f4e4a7;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #e8e8e8;
  margin-bottom: 2.5rem;
  opacity: 1;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Mobile hero image */
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)),
      url('../images/mobile-hero.png');
    background-size: cover;
    background-position: top;
    background-attachment: scroll;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: #f4e4a7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.95);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 1.05rem;
    color: #e8e8e8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.65;
    margin-bottom: 2rem;
  }

  .hero .btn-book {
    padding: 0.7rem 1.8rem;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero .btn-book {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
}
