/* ============================================
   HERO SECTION — full-bleed cover style
   ============================================ */

#hero {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 55vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Background image ──
   Extends 150px above the hero (clipped by #hero overflow:hidden) so the
   JS parallax can shift it down without ever exposing a gap at the top. */
.hero-bg {
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Multi-layer overlay: dark vignette + brand colour tint at bottom */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0), rgb(214, 234, 236));
}

/* ── Content (centered) ── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 44px;
  width: 100%;
  animation: fadeUp 0.6s 0.1s both;
}

/* ── Logo circle ── */
.hero-logo-wrap {
  width: clamp(80px, 18vw, 110px);
  height: clamp(80px, 18vw, 110px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.55);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.12),
    0 8px 32px rgba(0,0,0,0.3);
  margin-bottom: 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-logo-fallback {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* ── Title ── */
.hero-title {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
  margin-bottom: 8px;
}

/* ── Subtitle / description ── */
.hero-subtitle {
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  color: rgba(255,255,255,0.80);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Meta info row ── */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: clamp(0.75rem, 2vw, 0.82rem);
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: background 0.2s, transform 0.15s;
  cursor: default;
}

.hero-meta-item:hover {
  background: rgba(255,255,255,0.75);
}

.hero-insta {
  cursor: pointer;
}

.hero-insta:hover {
  transform: translateY(-2px);
}

/* SVG icons inside meta chips */
.meta-svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--sage-dark);
}

.meta-text {
  direction: rtl;
}

.hero-insta .meta-text {
  direction: ltr;
  font-family: var(--font-en);
}
