:root {
  --heading-font: "Figtree", sans-serif;
  --body-font: "Open Sans", sans-serif;
}

/* ===================================== Base Styles ===================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

body p {
  font-family: var(--body-font);
  font-size: 1rem;
}

.section-heading {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.heading-underline {
  width: 66px;
  height: 1px;
  background-color: #676767;
}

/* ===================================== Transitions & Animations ===================================== */

.fade-in-bottom {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-bottom.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================== Responsive ===================================== */

@media (max-width: 992px) {
  body p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  body p {
    font-size: 0.95rem;
  }
}
