/* —— VARIABLES —— */
:root {
  --red:        #e8112f;
  --red-dim:    rgba(200, 16, 46, 0.3);
  --black:      #0a0a0a;
  --white:      #f5f5f0;
  --white-dim:  rgba(245, 245, 240, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 16, 46, 0.15);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--red); }

/* Hamburger — JS powered */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
  padding: 4px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
/* Animate to X when active */
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Desktop nav */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-menu li a {
  text-decoration: none;
  color: var(--white-dim);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-menu li a:hover { color: var(--red); }

/* —— SECTION BASE —— */
#about {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 7rem 6% 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* —— GLOW LAYER 1: big soft bloom —— */
.glow-bloom {
  position: absolute;
  top: -10%; right: -5%;
  width: 65%; height: 90%;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(200, 16, 46, 0.25) 0%,
    rgba(120, 0, 20, 0.1)  45%,
    transparent 70%
  );
  pointer-events: none;
  animation: breathe 5s ease-in-out infinite;
}

/* —— GLOW LAYER 2: diagonal ray —— */
.glow-ray {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(200, 16, 46, 0.05) 48%,
    rgba(240, 60, 80, 0.12) 53%,
    rgba(200, 16, 46, 0.05) 58%,
    transparent 68%
  );
  pointer-events: none;
  animation: breathe 5s ease-in-out infinite 1s;
}

.glow-ray-2 {
  background: linear-gradient(
    200deg,
    transparent 30%,
    rgba(200, 16, 46, 0.04) 50%,
    rgba(200, 16, 46, 0.08) 55%,
    transparent 70%
  );
  animation-delay: 2.5s;
}

/* —— BREATHE ANIMATION —— */
@keyframes breathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* HERO HEADING */
.hero-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
  max-width: 700px;
}
.hero-heading .beyond {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}
#p8 {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.85;
  max-width: 520px;
  font-style: italic;
  margin-bottom: 0.4rem;
}

/* —— LAYOUT GRID —— */
.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* —— TEXT SIDE —— */
.eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.hello {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin-bottom: 0.4rem;
  font-style: italic;
}

.name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}

/* Red underline on the actual name */
.name span {
  position: relative;
  display: inline-block;
}
.name span::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.bio {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--white-dim);
  max-width: 380px;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.8rem 1.8rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-primary:hover { background: #a00020; }

.btn-outline {
  padding: 0.8rem 1.8rem;
  border: 1.5px solid rgba(245, 245, 240, 0.25);
  color: var(--white-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-whatsapp {
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-whatsapp:hover {
  background: var(--red);
  color: var(--white);
}

/* —— PHOTO RINGS —— */
.photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Outer ring — spins clockwise, slow */
.ring-outer {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(200, 16, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 20s linear infinite;
}

/* Middle ring — spins counter-clockwise */
.ring-middle {
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 16, 46, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 24px rgba(200, 16, 46, 0.3),
    0 0 60px rgba(200, 16, 46, 0.12);
  animation: spin 20s linear infinite reverse;
}

/* Orbiting red dot */
.ring-dot {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(232, 17, 47, 0.9);
}

/* The photo — no spin, stays upright */
.photo-circle {
  width: 210px; height: 210px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(200, 16, 46, 0.5);
  background: #1a0a0e;
}
.photo-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* —— SPIN ANIMATION —— */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* —— STATS ROW —— */
.stats-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 4rem;
}

.stat-item {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200, 16, 46, 0.06); }

.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.4rem;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-number span { color: var(--red); }

.stat-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.3rem;
}

/* —— RESPONSIVE —— */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; right: 0;
    background: rgba(15, 10, 10, 0.97);
    width: 200px;
    border-radius: 0 0 0 8px;
    overflow: hidden;
    border: 1px solid rgba(200,16,46,0.2);
    border-top: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a {
    display: block;
    padding: 14px 20px;
    color: var(--white-dim);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-menu li a:hover {
    background: rgba(200,16,46,0.1);
    color: var(--red);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .photo-wrap { order: -1; }
  .cta-buttons { justify-content: center; }
  .bio { margin: 0 auto 2rem; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .ring-outer { width: 240px; height: 240px; }
  .ring-middle { width: 190px; height: 190px; }
  .photo-circle { width: 155px; height: 155px; }

  .hero-heading .beyond {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
}

/* Desktop: boost sizes so things aren't tiny */
@media (min-width: 1024px) {
  #about { padding: 8rem 8% 5rem; }

  .about-inner { gap: 6rem; }

  .name {
    font-size: clamp(3rem, 4vw, 5rem);
  }

  .bio { font-size: 1rem; max-width: 460px; }

  .btn-primary,
  .btn-outline,
  .btn-whatsapp {
    font-size: 0.8rem;
    padding: 1rem 2.2rem;
  }

  .ring-outer { width: 400px; height: 400px; }
  .ring-middle { width: 330px; height: 330px; }
  .photo-circle { width: 270px; height: 270px; }

  .stat-number { font-size: 3.2rem; }
  .stat-label { font-size: 0.7rem; }
  .stat-desc { font-size: 0.85rem; }

  .hero-heading .beyond {
    font-size: clamp(3rem, 5vw, 5.5rem);
  }
}
