html {
  scroll-behavior: smooth;
  .swiper-pagination-bullet {
    background-color: #d9d9d9; /* orange-300 */
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    background-color: #8d8d8d; /* orange-700 */
    opacity: 1;
  }

  @media (max-width: 320px) {
    width: 105%;
  }
}

:root {
  --primaryText: #cc5500;
  --defaultText: black;
}

.text-color {
  color: var(--primaryText);
}

.active-nav {
  color: #595959 !important;
}

.font-serif {
  font-family: "EB Garamond", serif;
}

section {
  display: flex;
  flex-direction: row;

  .dummy {
    width: 10%;
    @media (max-width: 900px) {
      display: hidden;
      width: 0%;
    }
  }

  .subsection {
    width: 100%;

    @media (max-with: 720px) {
      /* width: 60%; */
    }
  }
}

.backgroundTitle {
  text-transform: uppercase;

  @media (max-width: 1300px) {
    font-size: 50px;
  }
}

.gradient-fill {
  color: var(--primaryText);
  background: linear-gradient(90deg, #f4eae2, #f4eae2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

#nav-bar {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  width: fit-content;
  height: fit-content;
  transition: opacity 0.5s ease-in-out;
  color: #c2c2c2;
  /* Smooth transition */
  opacity: 0;
  /* Initially hidden */

  .nav-link {
    width: fit-content;
    height: fit-content;
  }
}
#hamburger-menu {
  @media (max-width: 900px) {
    left: 1.5rem;
  }
  @media (width: 1024px) {
    left: 2.5rem;
  }
  @media (width: 1440px) {
    left: 4.5rem;
  }

  @media (width: 2560px) {
    left: 5.5rem;
  }
}
