/* ==== About-Us PAGE STYLES ==== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: #222;
  font-family: 'Inter', Arial, sans-serif;
  overflow-x: hidden;
  background-color: #f8f9fa;
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  margin-bottom: 1rem;
}

/* Font Helpers */
.font-playfair { font-family: 'Montserrat', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }

/* HERO SECTION */
.hero-banner-styles {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('/uploads/about-banner-siyahi.webp');
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  overflow: hidden;
}
.hero-text-styles {
  font-size: 7rem;
  font-family: 'Montserrat', sans-serif;
  color: #1f1f1f;
  text-shadow:
    0 4px 3px rgba(0,0,0,0.07),
    0 2px 2px rgba(0,0,0,0.06);
  margin: 0;
  padding: 0 1rem;
  line-height: 1;
  word-break: break-word;
}

/* SECTION CONTAINERS */
.mission-container,
.story-container,
.cta-container-styles {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
}
.mission-container,
.story-container {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* GRID FOR DESKTOP (Mission & Story) */
@media (min-width: 1024px) {
  .mission-container,
  .story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; /* vertical centering */
    gap: 2rem;
  }
  .mission-text-inner,
  .story-inner {
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center of text */
    text-align: left;
  }
}

/* HEADLINES & PARAGRAPHS */
.headline-styles {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}
.paragraph-styles {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #585858;
  max-width: 90ch;
  margin: 0.5rem auto;
  text-align: justify;
}

/* CTA SECTION */
.cta-section-styles {
  margin: 4rem 0;
}
.cta-container-styles {
  max-width: 800px;
  margin: auto;
  padding: 3rem;
  background-color: #2c2c2c;
  color: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
              0 4px 6px -4px rgba(0,0,0,0.1);
}
.headline-styles-cta {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: white;
}
.paragraph-styles-cta {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto 1.25rem;
}
.cta-button-styles {
  display: inline-block;
  background-color: #3b82f6;
  color: white;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.cta-button-styles:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

/* IMAGES */
.mission-image,
.story-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
              0 4px 6px -4px rgba(0,0,0,0.1);
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE STYLES */
@media (max-width: 1023px) {
  .hero-banner-styles {
    height: 500px;
    background-image: url('../../uploads/about-banner-siyahi-mobile.webp');
  }
  .hero-text-styles { font-size: 3.5rem; }
  .headline-styles { font-size: 2rem; }
  .paragraph-styles { font-size: 1rem; }
  .mission-container,
  .story-container {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}

/* UTILITY */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
