/* Home */

.page--home {
  .intro__container {
    aspect-ratio: 9/16;
    width: 100vw;
    position: relative;
  }

  .intro__promo-logo {
    max-width: 300px;
  }

  .intro__creative {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
  }

  .intro__content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
  }

  .intro__title {
    color: var(--brand-white, #ffffff);
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', 'Garamond', 'Georgia', serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: .1rem;
    margin-bottom: .5rem;
    text-shadow: 1px 1px 2px rgb(47, 35, 25, 0.75), 0 0 25px rgb(47, 35, 25, 0.75), 0 0 5px rgb(47, 35, 25, 0.75);
  }

  .intro__subtitle {
    text-transform: uppercase;
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .intro__button {
    box-shadow: -2px 14px 10px -5px rgb(47, 35, 25, 0.75);
    border-radius: 0 !important;
    border: none !important;
  }

  .features__pod {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
  }

  .features__image--gift-cards {
    width: 50%;
    max-width: 175px;
  }

  .features__image--private-dining {
    width: 40%;
    max-width: 140px;
  }

  .features__image--wine {
    width: 35%;
    max-width: 120px;
  }

  .features__subtitle {
    font-size: 1.3rem;
    font-family: var(--cg-font-family-heading, 'Sorts-Mill-Goudy', 'SortsMillGoudy', 'Garamond', 'Georgia', serif);
  }

  .features__description {
    margin-bottom: 1rem;
    font-size: 1.17rem;
    line-height: 1.5;
  }

  .features__button {
    box-shadow: 0px 3px 8px 0px rgb(66, 34, 3, 0.23);
    margin: 0 auto;
    max-width: 300px;
  }
}

@media only screen and (min-width: 375px) {
  .page--home {

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

@media only screen and (min-width: 576px) {
  .page--home {
    .intro__container {
      aspect-ratio: 9/11;
    }

    .intro__button,
    .features__button {
      font-size: 1.15rem;
    }

    .features__subtitle {
      font-size: 1.6rem;
    }

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


@media only screen and (min-width: 768px) {
  .page--home {
    .intro__container {
      aspect-ratio: 1/1;
    }

    .intro__title {
      margin-bottom: 1rem;
    }

    .intro__promo-logo {
      max-width: 475px;
    }
  }
}

@media only screen and (min-width: 992px) {
  .page--home {
    .intro__container {
      aspect-ratio: 16/9;
    }

    .intro__button,
    .features__button {
      font-size: 1rem;
    }

    .features__subtitle {
      font-size: 1.27rem;
    }

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

@media only screen and (min-width: 1200px) {
  .page--home {

    .intro__button,
    .features__button {
      font-size: 1.15rem;
    }

    .features__subtitle {
      font-size: 1.45rem;
    }

    .features__description {
      font-size: 1.35rem;
    }

    .intro__promo-logo {
      max-width: 550px;
    }
  }
}

@media only screen and (min-width: 1600px) {
  .page--home {
    .intro__container {
      aspect-ratio: 21/9;
    }

    .intro__button,
    .features__button {
      font-size: 1.35rem;
      max-width: 350px;
    }

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

    .features__image--gift-cards {
      width: 55%;
      max-width: 185px;
    }

    .features__image--private-dining {
      width: 45%;
      max-width: 150px;
    }

    .features__image--wine {
      width: 40%;
      max-width: 130px;
    }

    .features__subtitle {
      font-size: 1.6rem;
    }

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

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

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


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

  .new-locations p.no-record {
    text-align: center;
    font-family: 'Lato-regular', 'Lato', sans-serif;
    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: var(--cg-warm-ivory);
    border-radius: 40px;
  }

  .new-locations .tab {
    flex: 1;
    padding: 8px 0;
    text-align: center;
    font-family: 'Lato-regular', 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--cg-gold);
    border-radius: 40px;
    cursor: pointer;
    transition: background 0.25s ease;
  }

  .new-locations .tab a {
    color: inherit;
    text-decoration: none;
  }

  .new-locations .tab:not(.active):hover {
    background: var(--cg-beige);
  }

  .new-locations .tab.active {
    background: #000;
    color: #ffffff;
  }

  .new-locations .tab.active:hover {
    background: var(--cg-gold);
  }

  .new-locations .tab.active a {
    color: inherit;
  }

  .new-locations a {
    color: var(--cg-gold);
  }

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

  .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: cover;
    display: block;
  }


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

  .loc-title {
    font-family: 'lato';
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--cg-gold);
    margin: 0 0 10px;
  }


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

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

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

  .address {
    margin: 0;
    font-family: 'Lato-regular', 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
  }

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

  .status-pill {
    padding: 8px 32px;
    border: 2px solid var(--cg-gold);
    border-radius: 30px;
    background: transparent;
    font-family: 'Lato-regular', 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--cg-gold);
  }

  .comingsoon .status-pill {
    background: var(--cg-warm-ivory);
  }
}

@media (max-width: 767px) {

  .locations-page {
    padding: 20px 0 20px;

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

    .new-locations .tabs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      padding: 8px;
      background: transparent;
      border-radius: 16px;
    }

    .new-locations .tab {
      padding: 12px 0;
      background: var(--cg-warm-ivory);
    }

    .new-locations .tab:hover {
      background: var(--cg-gold);
    }

    .new-locations .tab.active:hover {
      background: var(--cg-gold);
    }

    .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;
    }

  }

}

/* 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: var(--cg-font-family-heading);
  font-size: 2.5rem;
  line-height: normal;
  letter-spacing: 1px;
  color: #86714d;
  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__block-container,
.faq__flex-container {
  padding-left: 0;
  flex: 0 0 100%;
  max-width: 100%;
} */


/* FAQ Page ------------------------------------------------------------ START*/

.faq__title {
  color: var(--cg-dark-brown, #605137);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
}

.faq__main {
  padding: 0;
}

.faq__category-nav {
  display: none;
}

.faq__accordion {
  .faq__category-title {
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--cg-gold, #86714d);
    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(--cg-font-family-body, 'Lato'), 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(--cg-charcoal, #282728);
        }

        &[aria-expanded="true"],
        &[aria-expanded="false"]:hover {
          background-color: var(--cg-gold, #86714d);

          .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(--cg-charcoal, #282728);
              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: 1rem;
        color: var(--cg-charcoal, #282728);
        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 {
        margin-bottom: 0;

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

      a {
        color: var(--cg-gold, #86714d);
        text-decoration: none;

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



    .faq__collapse {
      padding: 1rem;
    }

  }

}

.faq__expanded-list {
  .faq__category-title {
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: .5rem;
  }


  .faq__item {

    h3,
    .faq__question-static {
      text-transform: uppercase;
      font-size: 1.125rem;
    }
  }
}

@media (min-width: 390px) {

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

}

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


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

}

@media (min-width: 768px) {
  .faq__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

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

    .faq__item {
      .faq__item-heading {

        .faq__trigger {
          padding: 1.5rem;
        }
      }

      .faq__collapse {
        padding: 1.5rem;
      }

    }
  }
}

@media (min-width:1200px) {
  .faq__title {
    font-size: 2.75rem;
  }

  .container--faq {
    max-width: 1140px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .faq__category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    font-size: 1rem;
    color: var(--cg-dark-brown, #605137);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2.5rem;

    .faq__category-nav-list {
      li {
        a {
          padding: 0 0.75rem;
          color: var(--cg-dark-brown, #605137);

          &:hover {
            color: var(--cg-gold, #86714d);

          }
        }

        &:not(:last-child) {
          &:after {
            color: var(--cg-gold, #86714d);
            content: "|";
          }
        }
      }

    }



  }

  .faq__expanded-list {
    h2 {
      font-size: 1.75rem;
    }
  }

}

/* ==========================================================================
   FAQS END
   ========================================================================== */