.banner {
  position: relative;
  height: calc(78vh - var(--header-height, 80px));
  margin-top: var(--header-height, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background-image: url("../assets/images/background.jpg");
  background-size: cover;
  background-position: center;
}

.banner h1 {
  font-size: 4em;
  margin: 0;
  text-align: center;
  margin-bottom: 10px;
}

.banner h2 {
  font-size: 3em;
  margin: 0;
  text-align: center;
}

.image-text-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.image-text-container img {
  width: 300px;
  margin-right: 20px;
  margin-top: 40px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.image-text-container p {
  text-align: justify;
  margin-top: 40px;
}

/* Mobile */
@media screen and (max-width: 1030px) {
  .header-container {
    padding: 0 15px;
    justify-content: space-between;

    padding-top: 10px;
    padding-bottom: 10px;
  }

  section {
    padding: 80px 10px;
  }

  .hamburger {
    display: flex;
    z-index: 100;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;

    width: 30px;
    height: 25px;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
  }

  nav {
    position: fixed;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    flex-direction: column;
    justify-content: center;
    transition: top 0.25s ease-in-out;
    z-index: 99;
  }

  nav.nav-active {
    top: 0;
  }

  nav a {
    font-size: clamp(30px, 7vw, 40px);
    margin: 20px 40px;
  }

  nav .social-media-links {
    position: static;
    transform: none;
    margin-top: 40px;

    display: flex;
    justify-content: center;
    gap: clamp(10px, 7vw, 30px);
    width: 100%;
    height: 5%;
  }

  nav .social-media-links a {
    margin: 0;
    padding: 0;
    display: inline-flex;
  }

  nav .social-media-links img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .banner h1 {
    font-size: 2.5em;
  }
  .banner h2 {
    font-size: 1.8em;
  }
  section h1 {
    font-size: 36px;
  }
  section p {
    text-align: left;
  }

  .image-text-container {
    flex-direction: column;
    align-items: center;
  }
  .image-text-container img {
    width: 100%;
    max-width: 300px;
  }
}
