/* ═══════════════════════════════════════════════
   hero.css — Hero Section Styles
   ═══════════════════════════════════════════════ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--emerald) 0%, #0D3D2B 55%, #082B1E 100%);
  padding: 0;
}

/* Decorative layers */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(200,151,58,0.08) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,153,112,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Geometric ornament */
.hero-ornament {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: clamp(260px, 36vw, 480px);
  height: clamp(260px, 36vw, 480px);
  pointer-events: none;
  opacity: 0.18;
}

.hero-ornament svg {
  width: 100%;
  height: 100%;
  animation: rotateSlow 60s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 130px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,151,58,0.15);
  border: 1px solid rgba(200,151,58,0.35);
  border-radius: 50px;
  padding: 7px 20px 7px 10px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

.hero-badge span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-founded {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-left: 8px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-title .gold {
  color: var(--gold-light);
  display: block;
  font-style: italic;
}

.hero-tagline {
  font-family: var(--font-arabic);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  font-style: italic;
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.7s 0.32s ease both;
}

/* Stats strip */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 60px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat {
  flex: 1;
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(200,151,58,0.15);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s 0.8s ease both;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 768px) {
  .hero-content { padding: 110px 0 60px; }
  .hero-ornament { opacity: 0.08; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(200,151,58,0.15);
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
