/* ============================================================
   WaleyFX — hero.css
   Hero section styles
   ============================================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 140px 80px 80px 80px;
}

.hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 640px;
}

.hero-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.hero-name {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(68px, 10vw, 128px);
  line-height: 0.92;
  color: var(--white);
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-name span { color: var(--gold); }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-style: italic;
  color: var(--text-dim);
  margin: 28px 0 16px;
  line-height: 1.45;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold-dark);
  padding: 8px 18px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 0.25s both;
}
.hero-exp-badge .num {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.hero-exp-badge .label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1.3;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* Right side — photo */
.hero-photo-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  overflow: hidden;
  animation: fadeIn 1.2s ease 0.4s both;
}
.hero-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.08);
}
.hero-photo-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, rgba(5,5,5,0.3) 50%, transparent 100%);
  z-index: 1;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.45) 0%, transparent 25%, transparent 70%, rgba(5,5,5,0.7) 100%);
  z-index: 1;
}

/* Stats floating over photo */
.hero-stats {
  position: absolute;
  bottom: 56px; right: 56px;
  display: flex; gap: 36px;
  z-index: 10;
  animation: fadeUp 0.8s ease 0.5s both;
}
.stat { text-align: right; }
.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ---------- TICKER ---------- */
.ticker {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 13px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 80px;
  animation: ticker 22s linear infinite;
  width: max-content;
}
.ticker-item {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  display: flex; align-items: center; gap: 14px;
}
.ticker-item strong { color: var(--gold); font-weight: 600; }
.ticker-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  #hero { padding: 120px 28px 80px 28px; align-items: flex-start; min-height: 100svh; }
  .hero-photo-wrap {
    width: 100%; opacity: 0.25;
    position: absolute; inset: 0;
  }
   .hero-photo-wrap img {
    object-position: 60% 20%; /* show face on right, less sky */
    filter: grayscale(30%) contrast(1.0) brightness(0.20); /* very dark so text pops */
  }
  .hero-content { max-width: 100%; z-index: 4; }
  .hero-stats {
    position: static;
    margin-top: 36px;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat { text-align: left; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
}
@media (max-width: 480px) {
  .hero-name { font-size: clamp(56px, 16vw, 80px); }
}
