/* =============================================================================
   HERO.CSS — Full-viewport premium hero section
   Pet Transfer Bodrum — PREMIUM_CONCIERGE
   ============================================================================= */

/* ── Base hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dark);
  padding-top: var(--header-h);
}

/* ── Full-bleed background ──────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Multi-layer gradient for depth */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,36,51,0.95) 0%, rgba(13,36,51,0.7) 50%, rgba(13,36,51,0.2) 100%),
    linear-gradient(to top, rgba(13,36,51,0.8) 0%, transparent 50%);
}

/* ── Hero content ───────────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* ── Badge ──────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(200,150,62,0.15);
  border: 1px solid rgba(200,150,62,0.35);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ── Title ──────────────────────────────────────────────── */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title strong {
  display: block;
  color: var(--color-accent-light);
  font-style: normal;
}

/* ── Subtitle ───────────────────────────────────────────── */
.hero-subtitle {
  font-size: var(--text-lg);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
}

/* ── CTA row ────────────────────────────────────────────── */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ── Trust stats ────────────────────────────────────────── */
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-trust-num {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: white;
  line-height: 1;
}

.hero-trust-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Decorative paw trail ───────────────────────────────── */
.paw-trail {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  gap: 14px;
  opacity: 0; /* GSAP animates in */
}

.paw-trail-print {
  opacity: 0;
  color: rgba(200,150,62,0.6);
}

/* ── Scroll indicator ───────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--duration-fast);
  animation: bounce-indicator 2s ease-in-out infinite;
}
.hero-scroll:hover { color: rgba(255,255,255,0.7); }
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce-indicator {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Inner page hero (smaller) ──────────────────────────── */
.hero--page {
  min-height: 440px;
  align-items: flex-end;
  padding-bottom: 72px;
}
.hero--page .hero-bg img { opacity: 0.3; }
.hero--page .hero-title  { font-size: clamp(2rem, 4vw, 3.25rem); }

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-title    { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust    { gap: 20px; }
  .paw-trail     { display: none; }
  .hero-scroll   { display: none; }
}
