/**
 * Hero section – headline, copy, CTA
 * Drop Cars – Premium intercity taxi
 */

.hero {
  position: relative;
  padding: 1.5rem 0 1.5rem;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 28, 46, 0.4) 0%, rgba(15, 28, 46, 0.95) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding-inline: 1rem;
}

@media (min-width: 1024px) {
  .hero__layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hero__copy {
  max-width: 600px;
  color: var(--white);
}

.hero__copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 60%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__copy p {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero__microcopy {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero .booking-card {
  width: 100%;
  max-width: 450px;
  flex-shrink: 0;
}