/* ============================================
   Home Page
   ============================================ */

/* ── Hero ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  overflow: hidden;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: var(--fw-black);
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  color: var(--text-light-muted);
  font-weight: var(--fw-light);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
  opacity: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-light-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s var(--ease-out) 1s forwards;
  opacity: 0;
}

.hero__scroll-hint .arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-coral), transparent);
  animation: float 2s ease-in-out infinite;
}

/* ── Hero Decorations ── */
.hero__decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}

.hero__decor--circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid var(--accent-coral);
  top: 10%;
  right: -5%;
  animation: spin-slow 30s linear infinite;
}

.hero__decor--line {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  bottom: 30%;
  left: 5%;
  transform: rotate(-15deg);
}

.hero__decor--dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--accent-coral) 2px, transparent 2px);
  background-size: 20px 20px;
  top: 20%;
  left: 8%;
}

.hero__decor--triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid var(--accent-sage);
  bottom: 25%;
  right: 10%;
  opacity: 0.06;
  animation: float 8s ease-in-out infinite;
}

/* ── Home Sections ── */
.home-section {
  padding: var(--space-3xl) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-section__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

/* ── Recent Timeline (mini) ── */
.mini-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-xl) 0;
  position: relative;
}

.mini-timeline__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-coral), var(--accent-sage));
  max-width: 800px;
  position: relative;
}

.mini-timeline__point {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.mini-timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-coral);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.3);
}

.mini-timeline__label {
  font-size: var(--fs-xs);
  color: var(--text-light-muted);
  white-space: nowrap;
  position: absolute;
  top: 20px;
}

@media (max-width: 767px) {
  .hero {
    height: 100dvh;
    height: 100svh;
    overflow: hidden;
    padding: var(--space-4xl) var(--space-md) var(--space-xl);
  }
  .hero__decor { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .scroll-down-btn { display: none !important; }
  .section-scroll-down { display: none !important; }
  .home-section { min-height: auto !important; padding: var(--space-2xl) 0 !important; }
  #section-timeline { min-height: auto !important; padding: var(--space-3xl) 0 !important; }
}
