/* ============================
   ABOUT PAGE STYLES
   About Section & Bio
   ============================ */

:root {
  --bg-deep-charcoal: #0D1117;
  --text-pale-green: #B9FFB9;
  --accent-matrix-green: #00FF41;
  --glow-color: rgba(0, 255, 65, 0.4);
  --border-color: rgba(0, 255, 65, 0.2);
}

/* ============================
   ABOUT SECTION
   ============================ */

.about-section {
  margin: 2rem 0;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 255, 65, 0.02));
  border-radius: 10px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-matrix-green);
  font-size: 3rem;
  box-shadow: inset 0 0 50px rgba(0, 255, 65, 0.1);
}

.about-intro {
  background: rgba(0, 255, 65, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 2rem;
}

.about-intro h3 {
  color: var(--accent-matrix-green);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--glow-color);
}

.about-intro p {
  color: var(--text-pale-green);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

/* ============================
   EXPERIENCE & EDUCATION
   ============================ */

.experience-section,
.education-section {
  margin-top: 3rem;
}

.experience-section h3,
.education-section h3 {
  color: var(--accent-matrix-green);
  margin-bottom: 2rem;
  text-shadow: 0 0 10px var(--glow-color);
  font-size: 1.8rem;
}

.experience-item,
.education-item {
  background: rgba(0, 255, 65, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.experience-item:hover,
.education-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 255, 65, 0.2);
}

.experience-item h4,
.education-item h4 {
  color: var(--accent-matrix-green);
  margin-bottom: 0.5rem;
}

.experience-meta,
.education-meta {
  color: var(--text-pale-green);
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.experience-description,
.education-description {
  color: var(--text-pale-green);
  line-height: 1.6;
}

/* ============================
   ACHIEVEMENTS
   ============================ */

.achievements-section {
  margin-top: 3rem;
}

.achievements-section h3 {
  color: var(--accent-matrix-green);
  margin-bottom: 2rem;
  text-shadow: 0 0 10px var(--glow-color);
  font-size: 1.8rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.achievement-item {
  background: rgba(0, 255, 65, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 255, 65, 0.3);
}

.achievement-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.achievement-item h4 {
  color: var(--accent-matrix-green);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px var(--glow-color);
}

.achievement-item p {
  color: var(--text-pale-green);
  font-size: 0.9rem;
}

/* ============================
   RESPONSIVE - ABOUT PAGE
   ============================ */

@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    height: 250px;
  }

  .about-intro {
    padding: 1.5rem;
  }

  .achievements-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .about-image {
    height: 200px;
  }

  .about-intro {
    padding: 1.2rem;
  }

  .about-intro h3 {
    font-size: 1.2rem;
  }

  .experience-item,
  .education-item {
    padding: 1.2rem;
  }

  .achievement-item {
    padding: 1.2rem;
  }

  .achievement-icon {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  .about-intro {
    padding: 1rem;
  }

  .experience-item,
  .education-item {
    padding: 1rem;
  }

  .achievement-item {
    padding: 1rem;
  }

  .achievement-icon {
    font-size: 1.5rem;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }
}
