/* ==========================================================================
   Hero Section - Landing Hero with Image Slider
   ========================================================================== */

.hero {
  position: relative;
  height: 72vh;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  margin: var(--space-2xl) auto;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  opacity: 0;
  transition: opacity 1.5s ease, transform 8s ease;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.65) 0%,
    rgba(15, 23, 42, 0.35) 40%,
    rgba(15, 23, 42, 0) 70%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem);
  color: var(--white);
  max-width: 800px;
  text-align: left;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw + 1.2rem, 4.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
  line-height: 0.95;
  max-width: 100%;
}

.hero p {
  font-size: clamp(1.1rem, 1.4vw + 0.8rem, 1.5rem);
  margin-bottom: var(--space-2xl);
  opacity: 0.95;
  font-weight: 500;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  font-style: italic;
}

.hero .cta {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--space-lg);
}

.hero .btn {
  height: 56px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero .btn.ghost {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.hero .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.hero .btn.accent:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  filter: brightness(0.92);
}
