/* ═══════════════════════════════════════
   hero.css
═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* ── Background Blobs ── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.hero-blob--gold   { width: 600px; height: 600px; background: var(--color-accent);  top: -200px;  right: -100px; }
.hero-blob--purple { width: 400px; height: 400px; background: #7060ff;               bottom: -100px; left: -150px; }

/* ── Layout ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.1em;
}

.status-dot {
  width: 8px; height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-green);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── Name & Role ── */
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 50px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}
.hero-name em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-degree {
  font-size: clamp(20px, 2.5vw, 28px);
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-muted);
  margin-left: 12px;
  letter-spacing: normal;
}

.hero-role {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-desc {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: var(--space-lg);
}

/* ── Action Buttons ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Stats ── */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
}
.stat-plus { color: var(--color-accent); }

.stat-lbl {
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
  line-height: 1.4;
}

/* ── Social Links ── */
.hero-socials {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 48px;
}
.hero-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-muted);
  font-size: 15px;
  transition: var(--transition);
}
.hero-socials a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-dim);
}

/* ── Photo Card ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-wrapper {
  position: relative;
  width: 360px;
  height: 440px;
}

.photo-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface2));
  border: 1px solid var(--color-border2);
}

.photo-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.photo-frame img.active {
  opacity: 1;
  z-index: 1;
}

/* Floating badge — reusable */
.photo-badge {
  position: absolute;
  background: var(--color-surface);
  border: 1px solid var(--color-border2);
  border-radius: var(--radius);
  padding: var(--space-sm) var(--space-md);
  backdrop-filter: blur(10px);
  z-index: 12;
}
.photo-badge--bottom {
  bottom: -20px;
  right: -20px;
}
.photo-badge--left {
  top: 20px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}

.badge-icon {
  width: 32px; height: 32px;
  background: var(--color-accent-dim);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.badge-label {
  font-size: 11px;
  color: var(--color-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.badge-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-accent);
}
.photo-badge--left .badge-value {
  font-size: 14px;
  color: var(--color-text);
}

[data-theme="light"] .hero-blob {
  opacity: 0.05;
}

/* ── Hero Slideshow Navigation ── */
.hero-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid var(--color-border2);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.photo-wrapper:hover .hero-slide-btn {
  opacity: 1;
}

.hero-slide-btn:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.hero-slide-btn--prev {
  left: 12px;
}

.hero-slide-btn--next {
  right: 12px;
}

.hero-slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-slide-dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

