/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(44, 44, 44, 0.1) 0%,
    rgba(44, 44, 44, 0.4) 60%,
    rgba(44, 44, 44, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0.9;
}

/* ─── Hero Booking Form ─── */
.hero-booking {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 24px;
}

.hero-booking-inner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  gap: 16px;
  align-items: end;
}

.hero-booking-field {
  flex: 1;
}

.hero-booking-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.hero-booking-field input,
.hero-booking-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
}

/* Dropdown options - dark background so text is readable */
.hero-booking-field select option {
  background: var(--color-graphite);
  color: var(--color-cream);
  padding: 12px 16px;
}

.hero-booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.hero-booking-field input:focus,
.hero-booking-field select:focus {
  outline: none;
  border-color: var(--color-copper);
  background: rgba(255, 255, 255, 0.25);
}

.hero-booking .btn {
  white-space: nowrap;
  padding: 14px 32px;
}

/* ─── Mobile hero ─── */
@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
  }

  .hero-title {
    letter-spacing: 2px;
  }

  .hero-booking {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 32px;
  }

  .hero-booking-inner {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }

  .hero-booking .btn {
    width: 100%;
  }
}
