/* ========================
   ABOUT PAGE STYLES
   ======================== */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./assets/about-bg.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 120px 2rem;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Content */
.about-content {
  background-color: white;
  padding: 60px 20px;
  border-radius: 10px;
  margin-top: -40px; /* overlap effect with hero */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  color: var(--primary-color);
  margin: 30px 0 15px;
  font-size: 1.8rem;
  position: relative;
}

.about-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.about-content p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  list-style: disc;
  color: var(--accent-color);
}

.about-content blockquote {
  background-color: var(--light-bg);
  padding: 20px;
  margin: 20px 0;
  border-left: 5px solid var(--secondary-color);
  border-radius: 6px;
  font-style: italic;
  color: var(--primary-color);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero p {
    font-size: 1rem;
  }
  .about-content {
    padding: 40px 15px;
  }
  .about-content h2 {
    font-size: 1.5rem;
  }
}
