#landingpage {
  #splash {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 70vh;
    overflow: hidden;
    color: #fff;

    @media screen and (min-width: 768px) {
      min-height: 45vh;
      justify-content: center;
    }

    .splash-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    #splash-bg-video {
      z-index: -1;
    }

    .splash-intro {
      font-size: 17px;
      font-weight: 500;
      line-height: 1.6em;
      text-align: center;
      text-wrap: balance;

      h1 {
        padding: 20px;
        font-size: 3.5em;
      }

      @media screen and (min-width: 768px) {
        h1 {
          font-size: 5em;
        }
      }
    }

    .splash-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 600px;
      padding: 20px 0;
      gap: 20px;

      .splash-banner {
        padding: 0 10px;

        img {
          max-width: 100%;
          height: auto;
        }
      }
    }

    .button {
      display: inline-block;
      max-width: 400px;
      text-align: center;
    }
  }

  .banner {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.25em;
    text-align: center;

    .stats {
      @media screen and (min-width: 768px) {
        display: flex;
        gap: 25px;
      }

      li {
        list-style: none;
      }
    }
  }

  .features {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 20px;
    gap: 20px;
    font-size: 16px;
    line-height: 1.6em;

    @media (min-width: 768px) {
      padding: 20px 40px;
      gap: 20px;
      max-width: 1060px;
      margin: 0 auto;
    }

    .feature {
      flex: 1;
      padding: 20px;
      background: #DCC8F6;
      border-radius: 10px;

      h2 {
        font-size: 30px;
      }

      a {
        display: block;
        text-align: center;
      }

      ul {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 8px;

        li {
          padding: 0;
          margin: 0;
          list-style: none;
        }
      }

      &:nth-of-type(even) {
        background: #F6C8C8;
      }
    }

    .events {
      display: flex;
      flex-direction: row;
      overflow-x: scroll;
      gap: 10px;

      -webkit-scrollbar: none;
      scrollbar-width: none;
      -ms-overflow-style: none;

      .event {
        min-width: 220px;
        height: 220px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        cursor: pointer;
        transition: transform 0.3s ease;
        background-size: cover;
        background-position: center;

        &:hover {
          transform: translateY(-4px);
        }

        .title {
          position: absolute;
          bottom: 30px;
          left: 0;
          right: 0;
          background: #000;
          color: white;
          padding: 10px 20px;
          font-size: 20px;
          font-weight: 600;
          max-width: fit-content;
        }
      }
    }

    @media screen and (min-width: 768px) {
      .events {
        flex-wrap: wrap;
        justify-content: center;

        .event {
          flex: 1;
          min-width: 320px;
          height: 320px;
        }
      }
    }
  }
}
