/* About Hero/Banner Section */
.about-hero {
  background-image: url('../images/about-hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
  position: relative;
  height: 70vh;
  min-height: 450px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero .hero-content {
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

.about-hero .hero-title {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--fontFamily-forum);
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 15px;
}

.about-hero .breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.about-hero .breadcrumb a:hover {
  color: var(--gold-crayola);
}

.about-hero .breadcrumb span:last-child {
  color: var(--gold-crayola);
  font-weight: 600;
}

.about-hero .breadcrumb span:not(:last-child) {
  color: rgba(255, 255, 255, 0.5);
}

/* Welcome Section */
.welcome-section {
  padding: 100px 0;
  background-color: #ead9c5;
  text-align: center;
}

.welcome-section .section-subtitle {
  color: #a36b2c;;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.welcome-section .section-title {
  color: #2b1e14;
  font-size: 3rem;
  font-family: var(--fontFamily-forum);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.3;
}

.separator-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.separator-line span {
  width: 80px;
  height: 1px;
  background-color: var(--gold-crayola);
}

.separator-line.small span {
  width: 50px;
}

.separator-icon {
  opacity: 0.8;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  margin-top: 50px;
}

.welcome-logo {
  margin-bottom: 30px;
  opacity: 0.9;
}

.welcome-description {
  color: #4a3a2a;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.welcome-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-hero .hero-title {
    font-size: 3.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .about-hero {
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
  }

  .about-hero .hero-title {
    font-size: 3rem;
  }

  .welcome-section .section-title {
    font-size: 2.5rem;
  }

  .welcome-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-text {
    order: 2;
  }

  .welcome-image {
    order: 1;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .mv-banner {
    min-height: 300px;
  }

  .mv-card {
    padding: 50px 30px;
  }

  .why-choose-section .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
    min-height: 350px;
    max-height: 450px;
  }

  .about-hero .hero-title {
    font-size: 2.5rem;
  }

  .about-hero .breadcrumb {
    font-size: 0.9rem;
  }

  .welcome-section {
    padding: 70px 0;
  }

  .welcome-section .section-title {
    font-size: 2rem;
  }

  .separator-line span {
    width: 50px;
  }

  .mv-title {
    font-size: 2rem;
  }

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

  .why-choose-section {
    padding: 70px 0;
  }

  .why-choose-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 45vh;
    min-height: 300px;
    max-height: 400px;
  }

  .about-hero .hero-title {
    font-size: 2rem;
  }

  .about-hero .breadcrumb {
    font-size: 0.8rem;
  }

  .welcome-section .section-title {
    font-size: 1.8rem;
  }

  .welcome-description {
    font-size: 1rem;
  }

  .mv-card {
    padding: 40px 20px;
  }

  .mv-title {
    font-size: 1.8rem;
  }

  .mv-description {
    font-size: 1rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }
}