/* HOME */

.page--home
{
  .intro
  {
    .intro__title
    {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1;
    }

    .intro__button
    {
      background-color: rgb(99, 138, 55, 0.6);
      border: 2px solid #fff;
      color: #fff;
      font-size: 1rem;
      letter-spacing: 2px;

      &:hover,
      &:focus
      {
        background-color: var(--brand-green, #638a38);
      }
    }

    .intro__item--video-container
    {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      aspect-ratio: 10/7;

      video
      {
        height: 100%;
        object-fit: cover;
        width: 100%;
        max-width: 100vw;
      }

      #pause-play
      {
        opacity: 0.6;
        right: 0;
        scale: 1;
        top: 0.5rem;

        &:hover
        {
          opacity: 1;
        }
      }
    }
  }

  .carousel
  {
    .slick-arrow
    {
      width: 3.5rem;
      z-index: 1;

      img
      {
        background-color: #ffffff;
        border: 2px solid var(--brand-green, #638a38);
        border-radius: 50%;
        padding: 0.75rem;

        &:hover,
        &:focus
        {
          background-color: #d0d0d0;
        }
      }
    }

    .slick-prev:before,
    .slick-next:before
    {
      content: "";
    }

    .slick-prev
    {
      left: 10px;
    }

    .slick-next
    {
      right: 10px;
    }

    .carousel__item--bonus-gift-card-link
    {
      position: absolute;
      bottom: 16%;
      width: 100%;
      left: 0%;
      height: 12%;
    }

    .carousel__item--purchase-gift-card-button
    {
      position: absolute;
      bottom: 0%;
      width: 100%;
      left: 0%;
      height: 12%;
    }
  }

  .features
  {
    .features__container
    {
      gap: 2.75rem;
    }

    .features__item
    {
      margin-bottom: 1.4rem;
    }

    .features__title
    {
      font-size: 2rem;
      font-weight: 700;
      font-family:
        "Seasons52bold-Bold", "Comic Sans MS", "Arial Rounded MT Bold", cursive;
    }

    .features__subtitle
    {
      font-size: 1.75rem;
      font-weight: 700;
      font-family:
        "Seasons52bold-Bold", "Comic Sans MS", "Arial Rounded MT Bold", cursive;
      line-height: 1;
    }

    .features__description
    {
      color: var(--brand-gray, #5f6751);
      font-size: 1rem;
      line-height: normal;
      text-wrap: balance;
    }

    .features__button
    {
      border: 2px solid var(--brand-dark-gray, #5c5649);
      border-radius: 0;
      color: var(--brand-dark-gray, #5c5649);
      font-size: 1.25rem;
      line-height: 1;
      padding: 0.75rem 1rem;
    }

    .features__button:hover,
    .features__button:focus
    {
      background-color: var(--brand-dark-gray, #5c5649);
      color: #ffffff;
    }
  }

  @media (min-width: 480px)
  {
    .intro
    {
      .intro__title
      {
        font-size: 3rem;
      }

      .intro__button
      {
        font-size: 1.25rem;
      }
    }

    .features
    {
      .features__title
      {
        font-size: 2.5rem;
      }

      .features__subtitle
      {
        font-size: 2rem;
      }
    }
  }

  @media (min-width: 576px)
  {
    .features
    {
      .features__title
      {
        font-size: 3rem;
      }

      .features__subtitle
      {
        font-size: 2.5rem;
      }

      .features__description
      {
        font-size: 1.25rem;
      }
    }
  }

  @media (min-width: 640px)
  {
    .carousel
    {
      .carousel__item--bonus-gift-card-link
      {
        position: absolute;
        bottom: 35%;
        width: 54%;
        left: 30%;
        height: 12%;
      }

      .carousel__item--purchase-gift-card-button
      {
        position: absolute;
        bottom: 0%;
        width: 100%;
        left: 0%;
        height: 26%;
      }
    }
  }

  @media (min-width: 768px)
  {
    .intro
    {
      .intro__title
      {
        font-size: 4rem;
      }
    }
  }

  @media (min-width: 992px)
  {
    .intro
    {
      .intro__button
      {
        font-size: 2.5rem;
      }
    }

    .features
    {
      .row
      {
        gap: unset;
      }

      .features__subtitle
      {
        font-size: 1.75rem;
      }
    }
  }

  @media (min-width: 1200px)
  {
    .intro
    {
      .intro__item--video-container
      {
        aspect-ratio: 21/12;
      }

      .intro__title
      {
        font-size: 5rem;
      }
    }
  }

  @media (min-width: 1366px)
  {
    .features
    {
      .features__title
      {
        font-size: 4.5rem;
      }

      .features__subtitle
      {
        font-size: 2.125rem;
      }

      .features__button
      {
        font-size: 1.5rem;
      }
    }
  }

  @media (min-width: 1400px)
  {
    .intro
    {
      .intro__item--video-container
      {
        aspect-ratio: 21/9;
      }
    }

    .features
    {
      .container
      {
        max-width: 1320px;
      }

      .features__subtitle
      {
        font-size: 2.25rem;
      }
    }
  }

  @media (min-width: 1500px)
  {
    .features
    {
      .features__subtitle
      {
        font-size: 2.5rem;
      }
    }
  }
}

/* NRO (locations/new-locations Page ------------------------------------------------------------ START*/

.locations-page
{
  margin: 0;
  padding: 32px 0 32px;
  background: transparent;
  min-height: calc(100vh - 352px);

  .new-locations.container
  {
    max-width: 880px;
    border-radius: 12px;
    padding: 24px;
  }

  .new-locations p.no-record
  {
    text-align: center;
    font-family: "Barlow-SemiBold";
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .new-locations .tabs
  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 680px;
    /* padding: 3px;
        background: #f9f7f0; */
    border-radius: 40px;
    flex-wrap: wrap;
  }

  .new-locations .tab
  {
    flex: 1;
    padding: 8px 16px;
    text-align: center;
    font-family: var(--brand-body-font-family);
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--brand-green);
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.25s ease;
    text-transform: capitalize;
    background: #f9f7f0;
  }

  .new-locations .tab a
  {
    color: inherit;
    text-decoration: none;
    text-wrap-mode: nowrap;
    white-space: nowrap;
  }

  .new-locations .tab:not(.active):hover
  {
    background: #ffffff;
    color: #73994a;
  }

  .new-locations .tab.active
  {
    background: var(--brand-green);
    color: #ffffff;
    font-family: "Barlow-SemiBold";
    font-weight: 700;
  }

  .new-locations a
  {
    color: #414d63;
  }

  .location-card
  {
    display: flex;
    gap: 20px;
    min-height: 150px;
    margin-bottom: 16px;
    background: transparent;
    border: 1px solid #b7ac99;
    border-radius: 16px;
    overflow: hidden;
    flex-direction: column;
  }

  .location-card .card-image
  {
    flex: 0 0 145px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .location-card .card-image img
  {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
  }

  .card-content
  {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    width: 100%;
    padding: 32px;
    flex-direction: column;
  }

  .loc-title
  {
    font-family: var(--brand-headline-bold-font-family);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 0;
  }

  a .loc-title:hover
  {
    color: #000000;
  }

  .card-text a
  {
    text-decoration: underline !important;
    color: var(--brand-green);
  }

  .card-text a:hover
  {
    text-decoration: none !important;
    color: #000000;
  }

  .address
  {
    font-family: var(--brand-body-font-medium);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #5c5649;
  }

  .card-status
  {
    display: flex;
    align-items: center;
  }

  .status-pill
  {
    padding: 8px 16px;
    border-radius: 30px;
    background: transparent;
    font-family: var(--brand-body-font-medium);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
  }

  .comingsoon .status-pill
  {
    background: var(--brand-green);
    color: #ffffff;
  }

  @media (max-width: 767px)
  {
    .locations-page
    {
      padding: 20px 0;

      .new-locations.container
      {
        padding: 16px;
      }

      .new-locations .tabs
      {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;

        background: transparent;
        border-radius: 16px;
      }

      .new-locations .tab
      {
        padding: 12px 0;
        background: #f9f7f0;
      }

      .new-locations .tab:hover
      {
        background: #f9f7f0 !important;
      }

      .new-locations .tab.active:hover
      {
        background: var(--brand-green) !important;
      }

      .location-card
      {
        gap: 10px;
      }

      .card-content
      {
        display: grid;
        grid-template-rows: auto auto;
        gap: 16px;
        padding: 20px 20px 20px 0;
        justify-content: center;
      }

      .card-text
      {
        text-align: center;
      }

      .card-status
      {
        justify-content: center;
        width: 100%;
      }

      .status-pill
      {
        padding: 6px 14px;
      }
    }
  }

  @media (min-width: 390px)
  {
    .new-locations .tab
    {
      font-size: 1.25rem;
    }
  }

  @media (min-width: 576px)
  {
    .location-card
    {
      flex-direction: row;
    }

    .location-card .card-image
    {
      flex: 0 0 12.5rem;
    }
  }

  @media (min-width: 768px)
  {
    .new-locations .tabs
    {
      flex-wrap: nowrap;
      background: #f9f7f0;
    }
  }

  @media (min-width: 992px)
  {
    .card-content
    {
      flex-direction: row;
      align-items: center;
    }

    .address
    {
      margin-bottom: 0;
    }
  }
}

/* NRO (locations/new-locations  Page ------------------------------------------------------------END*/


/* accessibility-statement Page ------------------------------------------------------------ START*/
.page--accessibility
{
  background: #fff;
}

.page--accessibility .container--iframe
{
  max-width: 960px;
  padding: 48px 0;
}

.page--accessibility h1
{
  font-family: 'Seasons52regular-Regular', 'Comic Sans MS', cursive;
  font-size: 2.5rem;
  line-height: normal;
  color: var(--brand-dark-gray, #5C5649);
  padding: 8px 0 12px;
  margin-bottom: 40px;
}

@media(max-width: 768px)
{
  .page--accessibility h1
  {
    font-size: 1.5rem;
    padding: 0 40px;
  }
}

/* accessibility-statement Page ------------------------------------------------------------ END*/


/* ============================================================
   FAQ Accordion 
   ============================================================ */

.faq__title
{
  color: var(--brand-green, #638A38);
  font-size: clamp(2.5rem, 7.5vw, 4.25rem);
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
}

.faq__main
{
  padding: 0
}

.faq__accordion
{
  .faq__category-title
  {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--brand-green, #638a38);
    font-family: var(--brand-headline-font-family, "Seasons52regular-Regular"), 'Comic Sans MS', cursive;
    margin-bottom: 1rem;
    margin-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .faq__item
  {
    border-bottom: 1px solid #dddddd;
    background: transparent;
    transition: all 0.3s ease;

    .faq__item-heading
    {
      font-family: var(--brand-body-font-family, 'Barlow-Regular') "Barlow", 'Roboto', 'Helvetica Neue', Arial, sans-serif;
      margin-bottom: 0;
      line-height: 1;

      .faq__trigger
      {
        width: 100%;
        background-color: transparent;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        text-align: left;
        transition: background-color 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        -webkit-transition: background-color 0.3s ease;
        -moz-transition: background-color 0.3s ease;
        -ms-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;


        &.collapsed
        {
          background-color: transparent;
        }

        &[aria-expanded="false"]:focus,
        &[aria-expanded="false"]:focus-visible {
          outline: 2px solid var(--brand-dark-gray, #5c5649) !important;
        }

        &[aria-expanded="true"],
        &[aria-expanded="false"]:hover
        {
          background-color: #50712c;

          .faq__question-text
          {
            color: #fff;
          }

          .faq__icon
          {

            &::before,
            &::after
            {
              content: '';
              position: absolute;
              background-color: #fff;
              transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }
          }
        }

        &[aria-expanded="false"]
        {
          background-color: transparent;


          .faq__icon
          {

            &::before,
            &::after
            {
              content: '';
              position: absolute;
              background-color: var(--brand-dark-gray, #5c5649);
              transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }
          }
        }

        &[aria-expanded="true"]
        {
          .faq__icon
          {
            &::after
            {
              transform: rotate(90deg);
              opacity: 0;
            }
          }
        }

        .faq__icon
        {
          position: relative;
          width: 10px;
          height: 10px;
          flex-shrink: 0;



          &::before
          {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            margin-top: -1px;
          }

          /* Vertical line */
          &::after
          {
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            margin-left: -1px;
          }
        }


      }

      .faq__question-text
      {
        font-size: 1.1rem;
        color: var(--brand-dark-gray, #5c5649);
        line-height: 1.3;
        padding-right: 15px;
        transition: color 0.3s ease;
        -webkit-transition: color 0.3s ease;
        -moz-transition: color 0.3s ease;
        -ms-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        text-transform: uppercase;
        font-weight: 700;
      }
    }

    .faq__answer
    {
      color: var(--brand-dark-gray, #5c5649);

      p
      {
        font-size: 1.125rem;
        margin-bottom: 0;

        & + p
        {
          margin-top: 1rem;
        }
      }

      a
      {
        font-size: 1.125rem;
        color: var(--brand-green, #638a38);
        text-decoration: none;

        &:hover
        {
          text-decoration: underline;
        }
      }
    }



    .faq__collapse
    {
      padding: 1rem;
    }

  }

}

@media (min-width: 540px)
{
  .faq__accordion
  {
    .faq__category-title
    {
      font-size: 2.5rem;
    }

    .faq__item
    {
      .faq__item-heading
      {
        .faq__question-text
        {
          font-size: 1.25rem;
        }
      }
    }
  }

}

@media (min-width: 768px)
{
  .faq__accordion
  {

    .faq__item
    {
      .faq__item-heading
      {

        .faq__trigger
        {
          padding: 1.5rem;
        }
      }

      .faq__collapse
      {
        padding: 1.5rem;
      }

    }
  }
}

@media (min-width:1200px)
{
  .container--faq
  {
    max-width: 1140px !important;
    margin-left: auto;
    margin-right: auto;
  }

}

.faq__accordion {
  .faq__category-title {
    font-size: 1.5rem;
    color: var(--brand-green, #638a38);
    text-transform: uppercase;
  }

  .faq__category-description {
    color: var(--brand-body-default-color, #303030);
    font-size: 1rem;
  }

  .faq__item {
    border-bottom: 1px solid #d8d8d8;
    background: transparent;
    transition: all 0.3s ease;

    .faq__item-heading {
      margin-bottom: 0;

      .faq__trigger {
        width: 100%;
        background-color: transparent;
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        text-align: left;
        transition: background-color 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        -webkit-transition: background-color 0.3s ease;
        -moz-transition: background-color 0.3s ease;
        -ms-transition: background-color 0.3s ease;
        -o-transition: background-color 0.3s ease;

        &.collapsed {
          background-color: transparent;
        }

        &[aria-expanded="true"],
        &[aria-expanded="false"]:hover {
          color: #fff;
          background-color: #4a6d3a;
        }

        &[aria-expanded="false"] {
          background-color: transparent;
        }

        &[aria-expanded="true"] {
          .faq__icon {
            &::after {
              transform: rotate(90deg);
              opacity: 0;
            }
          }
        }

        &[aria-expanded="true"],
        &[aria-expanded="false"]:hover {
          color: rgb(255, 255, 255);
          background-color: rgb(74, 109, 58);
          .faq__icon::before,
          .faq__icon::after {
            background-color: #fff;
          }
        }

        .faq__icon {
          position: relative;
          width: 10px;
          height: 10px;
          flex-shrink: 0;

          &::before,
          &::after {
            content: "";
            position: absolute;
            background-color: #4a6d3a;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          }

          &::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            margin-top: -1px;
          }

          /* Vertical line */
          &::after {
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            margin-left: -1px;
          }
        }
      }

      .faq__question-text {
        font-size: 1rem;
        padding-right: 15px;
        transition: color 0.3s ease;
        -webkit-transition: color 0.3s ease;
        -moz-transition: color 0.3s ease;
        -ms-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        text-transform: uppercase;
      }
    }

    .faq__answer {
      p {
        font-size: 1rem;
        color: var(--brand-dark-gray, #5c5649);
        margin-bottom: 0;

        & + p {
          margin-top: 1rem;
        }
      }

      a {
        font-size: 1rem;
        color: var(--brand-green, #638a38);
        text-decoration: none;
      }
    }

    .faq__collapse {
      padding: 1rem;
    }
  }
}

@media (min-width: 540px) {
  .faq__accordion {
    .faq__category-title {
      font-size: 1.75rem;
    }

    .faq__category-description {
      font-size: 1.125rem;
    }

    .faq__item {
      .faq__item-heading {
        .faq__question-text {
          font-size: 1.25rem;
        }
      }

      .faq__answer {
        p,
        a {
          font-size: 1.125rem;
        }
      }
    }
  }
}

@media (min-width: 768px) {
  .faq__flex-container {
    flex: 0 0 66.6%;
  }

  .faq__title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-green, #638a38);
    text-align: center;
    letter-spacing: 3px;
  }

  .faq__category {
    margin-bottom: 2rem !important;
  }
  .faq__category-nav-list li:not(:last-child) {
    display: block;
  }

  .faq__category-nav-list li:not(:last-child)::after {
    content: "";
    margin-left: 20px;
    color: var(--brand-gree, #638a38);
    pointer-events: none;
  }

  /* ==========================================================================
   CATEGORY NAVIGATION
   ========================================================================== */
  #page--faq .faq__category-nav {
    margin-bottom: 3rem;

    .faq__category-nav-list {
      display: flex;
      justify-content: center;
      gap: 20px;
      color: var(--brand-gree, #638a38);
      font-size: 1.1rem;
      font-weight: 700;
      flex-direction: row;
      flex-wrap: wrap;
    }

    .faq__category-nav-list li {
      list-style-type: none;
    }

    .faq__category-nav-list li:not(:last-child) {
      display: flex;
      align-items: center;
    }

    .faq__category-nav-list li:not(:last-child)::after {
      content: "|";
      margin-left: 20px;
      color: var(--brand-gree, #638a38);
      pointer-events: none;
    }

    .faq__nav-btn {
      color: var(--brand-gree, #638a38);
      background-color: #fff;
    }
    .faq__category-nav-list li:hover {
      text-decoration: underline;
      color: var(--brand-gree, #638a38);
    }
  }

  #page--faq .faq__right-rail {
    display: block;
    margin-top: 2rem;
  }

  .faq__accordion {
    .faq__item {
      .faq__item-heading {
        .faq__trigger {
          padding: 1rem;
        }
      }

      .faq__collapse {
        padding: 1rem;
      }
    }
  }
}

@media (min-width: 1200px) {
  .container--faq {
    max-width: 1140px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .faq__accordion {
    .faq__category-title {
      font-size: 2.75rem;
    }

    .faq__category-description {
      font-size: 1.25rem;
    }

    .faq__item {
      .faq__item-heading {
        .faq__question-text {
          font-size: 1.25rem;
        }
      }

      .faq__answer {
        p,
        a {
          font-size: 1.25rem;
        }
      }
    }
  }
}

/* FAQS ------------------------------------------------------------ END*/
