/* 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;
    }
  }
}