/* ============================================================
   HOME.CSS — Homepage-specific styles
   danostrowski.com
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  width: 100%;
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.hero__content {
  max-width: 700px;
}

.hero__statement {
  font-size: var(--text-hero);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.hero__context {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: var(--space-8);
}

.hero__divider {
  width: 48px;
  height: 1px;
  background: var(--text-tertiary);
  margin-bottom: var(--space-8);
}

.hero__question {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--act3);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-16);
}

.hero__scroll {
  display: inline-flex;
  color: var(--text-tertiary);
  transition: color var(--dur-base), transform var(--dur-base);
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll:hover {
  color: var(--text-secondary);
  transform: translateY(3px);
  animation: none;
}

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

/* Subtle background grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* ── Responsive hero ────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero__statement {
    letter-spacing: -0.015em;
  }

  .hero__question {
    margin-bottom: var(--space-10);
  }
}
