@charset "UTF-8";
/* ==== ABOUT.CSS ==== */

/* ===========================
   ABOUT CONTAINER
=========================== */

.about-box {
  max-width: 760px;
  margin: 4rem auto;
  padding: 3rem 2.5rem;
  border-radius: 2rem;
  background: rgba(20,20,20,0.85);
  text-align: center;
}

body.light .about-box {
  background: #ffffff;
}

/* ===========================
   ABOUT ICON
=========================== */

.about-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #000;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(247,74,5,0.55);
  animation: popIn 0.6s ease-out;
}

@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.about-since {
  opacity: 0.7;
  margin-top: -0.5rem;
  font-size: 0.9rem;
}

/* ===========================
   FADE-IN TEXT
=========================== */

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s ease-out forwards;
}

.fade-in:nth-of-type(1) { animation-delay: 0.1s; }
.fade-in:nth-of-type(2) { animation-delay: 0.25s; }
.fade-in:nth-of-type(3) { animation-delay: 0.4s; }
.fade-in:nth-of-type(4) { animation-delay: 0.55s; }
.fade-in:nth-of-type(5) { animation-delay: 0.7s; }
.fade-in:nth-of-type(6) { animation-delay: 0.85s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-signature {
  font-weight: 700;
  margin-top: 2rem;
}

/* ===========================
   ABOUT GRAPHIC
=========================== */

.about-graphic {
  width: 100%;
  height: 140px;
  margin-bottom: 2rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(247,74,5,0.35), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,154,0,0.35), transparent 60%),
    linear-gradient(135deg, #111, #1a1a1a);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
}

body.light .about-graphic {
  background:
    radial-gradient(circle at 20% 30%, rgba(247,74,5,0.25), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,154,0,0.25), transparent 60%),
    linear-gradient(135deg, #fff, #f4f4f4);
  box-shadow: inset 0 0 30px rgba(0,0,0,0.08);
}

/* ===========================
   ABOUT ACTION BUTTONS
=========================== */

.about-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-btn {
  padding: 0.7rem 1.8rem;
  border-radius: 2rem;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #000;
  box-shadow: 0 6px 18px rgba(247,74,5,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(247,74,5,0.6);
}

.about-btn.outline {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
}

body.light .about-btn.outline {
  border-color: rgba(0,0,0,0.25);
}

.about-btn.outline:hover {
  background: var(--accent);
  color: #000;
}
