/* ===== Hero Section ===== */
.about-hero {
  background: url('../images/about_page.jpg') no-repeat center center;
  background-size: cover;          /* Ensures full coverage */
  background-attachment: scroll;   /* You can use fixed for parallax */
  min-height: 90vh;                /* Takes 90% of viewport height */
  width: 100%;                     /* Full width */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  overflow: hidden;
}


.about-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.about-hero h2 {
  font-size: 1.7rem;
  color: #f8f8f8;
}

.about-hero .highlight {
  color: #b29a67;
}

.about-hero .hero-btn {
  color: #000;
  background: #b29a67;
  border: none;
  transition: 0.3s ease;
}
.about-hero .hero-btn:hover {
  background: #a38752;
  color: #fff;
  box-shadow: 0 0 10px rgba(178,154,103,0.6);
}

/* ===== About Content ===== */
.about-content {
  background: #fff;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.about-content .about-img {
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 100%;
}

.about-content .about-text p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #555;
  text-align: justify;
}

.about-content .highlight {
  color: #b29a67;
  font-weight: 600;
}

.about-content .quote {
  color: #b29a67;
  font-size: 1.1rem;
}

.signature {
  width: 160px;
  opacity: 0.8;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero h2 {
    font-size: 1.3rem;
  }
  .about-content .about-text {
    text-align: center;
  }
}

/* ===== HERO FADE-IN TEXT ANIMATION ===== */
.fade-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.fade-text.delay-1 {
  animation-delay: 0.3s;
}
.fade-text.delay-2 {
  animation-delay: 0.6s;
}
.fade-text.delay-3 {
  animation-delay: 0.9s;
}
.fade-text.delay-4 {
  animation-delay: 1.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ***************** */

.about-img {
    width: 100%;
    max-width: 100%;
    border-radius: 10px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-img {
        margin-bottom: 20px;
    }
}





