/* === ABOUT PAGE === */
/* Do NOT redefine html, body, or backgrounds here — base.css handles gradient/background layering */

.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 100px;
  min-height: calc(100vh - 80px);
  text-align: center;
  color: #e6e6e6;
}

.about-box {
  background: rgba(15, 15, 15, 0.7);
  padding: 50px 40px;
  border-radius: 22px;
  max-width: 820px;
  width: 100%;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(77, 184, 255, 0.15);
  animation: fadeInBox 0.8s ease forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(77, 184, 255, 0.25);
}

.about-box h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #fff;
}

.highlight {
  color: #4db8ff;
  text-shadow: 0 0 10px rgba(77, 184, 255, 0.6);
}

.about-box h2 {
  font-size: 1.4rem;
  color: #4db8ff;
  margin-top: 30px;
  margin-bottom: 10px;
}

.about-box p {
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #ccc;
  letter-spacing: 0.3px;
}

.intro {
  margin-bottom: 25px;
  font-weight: 300;
}

/* Developer info */
.developer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.dev-pic {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #4db8ff;
  box-shadow: 0 0 20px rgba(77, 184, 255, 0.3);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dev-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(77, 184, 255, 0.45);
}

/* Button back to home */
.btn-home {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 26px;
  background: linear-gradient(90deg, #007bff, #00aaff);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-home:hover {
  background: linear-gradient(90deg, #339cff, #66d9ff);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(77, 184, 255, 0.5);
}

/* Animation (only on box, not section) */
@keyframes fadeInBox {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 700px) {
  .about-box {
    padding: 35px 22px;
  }

  .about-box h1 {
    font-size: 1.9rem;
  }

  .about-box p {
    font-size: 0.95rem;
  }

  .dev-pic {
    width: 85px;
    height: 85px;
  }
}