/* ========================================
   Hero Section Styles
   ======================================== */
.hero {
  height: 70vh;
  background: linear-gradient(135deg, #e8ddd4 0%, #f0e6dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 50px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../assets/images/main.jpg") no-repeat center center;
  background-size: cover;
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  margin-top: 60px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
  font-style: italic;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  padding: 0 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-book {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: none;
  border: 2px solid white;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}
