@layer layouts {

  /* =====================
    SECTION: INNER PAGE
    ====================== */

  .inner__page {
    color: var(--bs-light);
  }

  /* =====================
    SECTION: HERO
    ====================== */
  .hero {
    position: relative;
    z-index: 1;
  }

  .carousel-inner {
    position: relative;
    z-index: 1;
  }

  .hero .carousel-item {
    /* min-height: 75svh;
    display: grid; */

    /* &::before {
      content: "";
      position: absolute;
      inset: 0;
      --background-ol: linear-gradient(
        to bottom,
        #031313,
        rgb(40 11 114 / 50%)
      );
      background: var(--background-ol);
    } */

    & img {
      height: 100%;
      object-fit: cover;
    }

    & .carousel-caption {
      bottom: 65%;
      transform: translateY(50%);

      & .text-title {
        line-height: 1;
        background-color: var(--primary-color);
        line-height: 1;
        display: inline-block;
        padding: 12px 15px;
        margin-bottom: 1.5rem;

        & span {
          color: var(--accent-color);
        }
      }
    }

    .carousel-caption {
      width: 40%;
      left: 10%;
      text-align: start;
    }
  }

  .hero .carousel-inner .blurry-light {
    position: absolute;
    width: 240px;
    aspect-ratio: 1;
    z-index: 1;
    border-radius: 50%;
    filter: blur(150px);

    &.topStart {
      background: var(--primary-color);
      top: 0;
      left: 0;
      mix-blend-mode: luminosity;
    }
  }

  .hero .scroll-down {
    position: absolute;
    color: var(--bs-light);
    bottom: 1rem;
    left: 50%;
    z-index: 1;
    font-size: 2rem;
    animation: scrollDown 2s infinite;
  }

  @keyframes scrollDown {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  /* =====================
    SECTION: QUICK LINKS
    ====================== */

  .quick__links {
    position: relative;
    margin-top: -50px;
    z-index: 1;
  }

  .quick__link {
    display: block;
    border-radius: 33px;
    text-decoration: none;
    color: var(--bs-light);
  }

  /* =====================
    SECTION: TEAM
    ====================== */
  .team {
    background: url(../images/bg/team.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .team__info {
    background: #ffffff;
    padding: 10px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    text-align: center;
  }

  .team__name {
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: var(--fs-sub-title);

  }

  /* =====================
    SECTION: EVENTS AND CAMPS
    ====================== */


  .events-and-camps {
    background: linear-gradient(135deg, #0d1120 0%, #e71e6b 43%, #0d1120 100%);
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .events-and-camps img {
    border-radius: 1rem;
  }

  /* =====================
    SECTION: GALLERY
    ====================== */

  .gallery-thumbnail {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    grid-gap: 20px;
  }

  .gallery-thumbnail :is(img, video) {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center 35%;
    transition: all 0.5s ease;
    border-radius: 0.5rem;
  }


  /* =====================
    SECTION: 
    ====================== */

  .activities {
    border: 1px solid #252525;
    padding: 13px 20px;
  }

  /* =====================
    SECTION: 
    ====================== */

}