/* ============================================
   sections.css — Section-Specific Layout
   ============================================ */

/* ========================
   HERO SECTION
   ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 120px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-greeting {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 500;
  color: var(--accent-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 8px 0 16px;
  line-height: 1.1;
}

.hero-typed {
  font-size: 28px;
  margin-bottom: 8px;
  min-height: 42px;
}

.typed-prefix {
  font-weight: 600;
  color: var(--text-secondary);
}

#typed-output {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--accent-primary);
}

.typed-cursor {
  font-family: var(--font-accent);
  color: var(--accent-primary);
  animation: cursor-blink 0.7s infinite;
  font-weight: 400;
}

.hero-tagline {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
  margin: 16px 0 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background-color: var(--text-secondary);
  animation: scroll-bounce 2s infinite;
}

.scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}


/* ========================
   ABOUT SECTION
   ======================== */
.about-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrapper {
  position: relative;
  display: inline-block;
}

.about-photo-wrapper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  z-index: -1;
}

.about-photo {
  width: 320px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.stat {
  text-align: center;
  padding: 20px 8px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.stat:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.stat-number {
  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-primary);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-primary);
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-top: 4px;
}
