/* ============================================
   HERO SECTION - V6 Banner Style
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2000 / 848;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.4) 0%,
    transparent 30%,
    transparent 70%,
    rgba(26, 26, 26, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: var(--spacing-xl) var(--spacing-2xl);
}

.hero-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.hero-tagline {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(var(--font-size-2xl), 3vw, var(--font-size-4xl));
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--color-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  animation: handwrite 1.6s 0.3s ease-out both;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
}

.hero-cta .btn {
  font-size: clamp(var(--font-size-xs), 1vw, var(--font-size-sm));
  padding: var(--spacing-xs) var(--spacing-lg);
  backdrop-filter: blur(4px);
}

.hero-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.8);
}

/* Banner accent strip below hero */
.hero-strip {
  background: var(--gradient-primary);
  padding: var(--spacing-sm) 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-strip p {
  font-family: var(--font-heading);
  font-size: clamp(var(--font-size-xs), 1.2vw, var(--font-size-sm));
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-light);
}

/* Handwriting reveal — left-to-right wipe makes the script font look hand-written */
@keyframes handwrite {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* Mobile: compact cropped hero so the menu is visible right below */
@media (max-width: 768px) {
  .hero {
    aspect-ratio: auto;
    min-height: 52vh;
    min-height: 52svh;
    overflow: hidden;
  }

  .hero-bg-img {
    /* Crop to the face/sunglasses — the striking center of the banner */
    object-position: center 30%;
  }

  .hero-overlay {
    display: block;
    background: linear-gradient(
      180deg,
      rgba(26, 26, 26, 0.4) 0%,
      rgba(26, 26, 26, 0.05) 35%,
      rgba(26, 26, 26, 0.7) 80%,
      rgba(26, 26, 26, 0.95) 100%
    );
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-md);
    background: transparent;
  }

  .hero-brand {
    align-items: center;
    gap: var(--spacing-xs);
  }

  .hero-tagline {
    font-size: var(--font-size-4xl);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .hero-cta .btn {
    width: auto;
    max-width: none;
    flex: none;
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs) var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 46vh;
    min-height: 46svh;
  }

  .hero-tagline {
    font-size: var(--font-size-3xl);
  }

  .hero-content {
    padding: var(--spacing-md) var(--spacing-sm);
  }
}
