/* ================================================
   ABOUT HERO SECTION STYLES
   ================================================ */

.hero-about-section {
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.5) 0%, rgba(44, 82, 130, 0.5) 50%, rgba(26, 54, 93, 0.5) 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(var(--secondary-rgb), 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-about-content {
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.hero-about-subtitle {
  color: var(--accent-gold);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.hero-about-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  /* max-width: 800px; */
  margin-left: auto;
  margin-right: auto;
}

.hero-about-description {
  color: #b8b8b8;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero-about-image {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(var(--secondary-rgb), 0.2);
}

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

  .hero-about-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 991px) {
  .hero-about-section {
    padding: 100px 0 60px;
  }

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

  .hero-about-content {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero-about-section {
    padding: 80px 0 50px;
  }

  .hero-about-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-about-description {
    font-size: 1.1rem;
  }

  .hero-about-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

@media (max-width: 575px) {
  .hero-about-title {
    font-size: 1.6rem;
  }

  .hero-about-description {
    font-size: 1rem;
  }
}
