/* ===========================
   BASE STYLES`
=========================== */
body {
  font-family: "Arial Narrow", Arial, sans-serif;
  color: #111; /* main text */
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #fff;
  overflow-x: hidden;
}

/* ===========================
   UNIFIED SECTION HEADERS
=========================== */
.section-title {
  text-align: center;
  font-size: 2.8rem !important;        /* slightly smaller than 3rem for balance */
  font-weight: 700;
  margin-bottom: 0.75rem;   /* space before subtitle */
  margin-top: 2rem;
  color: #000;
  letter-spacing: 0.5px;    /* subtle spacing for clarity */
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;    /* centered, with spacing below */
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  font-weight: 400;
}

/* Optional underline accent for headers */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #111;
  margin: 0.6rem auto 0;
  border-radius: 2px;
  opacity: 0.8;
}

/* ===========================
   CONTAINER
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   RESPONSIVE HEADERS
=========================== */
@media (max-width: 900px) {
  .section-title {
    font-size: 2.2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.9rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }
}

/* Blurred gradient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #ffffff;

  filter: blur(20px);
  transform: scale(1.05); /* avoid edge clipping */
  z-index: -1;
}
/* ===========================
   STAGGERED SECTION ANIMATIONS
=========================== */
/* Target both: 
   - any <section> or <main> with class .section
   - plain <section> or <main> tags without the class
*/
.section,
section,
main {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible,
section.visible,
main.visible {
  opacity: 1;
  transform: translateY(0);
}



