/* --------------------
   RESET & BASE
--------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #0b0b0b, #050505 70%);
  color: #f2f2f2;
  overflow-x: hidden;
}

/* --------------------
   PAGE WRAPPER
--------------------- */

.about-wrapper {
  min-height: 100vh;
  padding: 120px 6%;
  display: flex;
  flex-direction: column;
  gap: 140px;
}

/* --------------------
   ABOUT FRAME
--------------------- */

.about-frame {
  display: flex;
  gap: 60px;
  padding: 60px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, #111 0%, #0a0a0a 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 120px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}

/* Neon accent stripe */
.about-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 0, 170, 0.08) 30%,
    rgba(0, 255, 255, 0.08) 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* --------------------
   IMAGE
--------------------- */

.about-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid transparent;
  background:
    linear-gradient(#0a0a0a, #0a0a0a) padding-box,
    linear-gradient(135deg, #ff00aa, #00ffff) border-box;
  box-shadow:
    0 20px 50px rgba(255, 0, 170, 0.25);
}

/* --------------------
   TEXT CONTENT
--------------------- */

.about-content h1 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  margin-bottom: 24px;
  background: linear-gradient(90deg, #ff00aa, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
  color: #d6d6d6;
  max-width: 620px;
}

/* subtle emphasis */
.about-content p:hover {
  color: #ffffff;
  transition: color 0.3s ease;
}

/* --------------------
   CONTACT SECTION
--------------------- */

.contact-section {
  max-width: 720px;
  padding: 50px;
  border-radius: 26px;
  background: linear-gradient(
    160deg,
    rgba(255, 0, 170, 0.12),
    rgba(0, 255, 255, 0.12)
  );
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 30px 80px rgba(0,0,0,0.7);
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.contact-section p {
  color: #e0e0e0;
  margin-bottom: 28px;
}

.contact-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.contact-links a {
  position: relative;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  padding-bottom: 6px;
}

.contact-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff00aa, #00ffff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.contact-links a:hover::after {
  transform: scaleX(1);
}

/* --------------------
   ANIMATION
--------------------- */

.fade-up {
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1.2s cubic-bezier(.19,1,.22,1) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------
   MOBILE
--------------------- */

@media (max-width: 900px) {
  .about-frame {
    flex-direction: column;
    padding: 40px;
  }

  .about-image img {
    width: 190px;
    height: 190px;
  }

  .about-content h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 600px) {
  .about-wrapper {
    padding: 90px 6%;
  }

  .contact-links {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===============================
   FOOTER — UNIVERSAL DASHBOARD
   =============================== */

.footer-section {
  padding: 3rem 1.5rem 2.5rem;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95),
    rgba(0,0,0,0.75)
  );
}

.footer-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
}

/* Navigation row */
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 0.95rem;
  color: #cfcfcf;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* Legal line */
.footer-legal {
  font-size: 0.8rem;
  color: #8a8a8a;
  letter-spacing: 0.03em;
  text-align: center;
}

/* Mobile tightening */
@media (max-width: 600px) {
  .footer-nav {
    gap: 1.2rem;
  }
}