@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
body {
  font-family: "League Spartan", sans-serif;
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 600px) {
  body {
    font-family: "League Spartan", sans-serif;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0;
  }
}

h1 {
  font-family: "League Spartan", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 300;
  letter-spacing: -0.4px;
}
@media (min-width: 600px) {
  h1 {
    font-family: "League Spartan", sans-serif;
    font-size: 48px;
    line-height: 64px;
    font-weight: 300;
    letter-spacing: -0.6px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-family: "League Spartan", sans-serif;
    font-size: 80px;
    line-height: 80px;
    font-weight: 300;
    letter-spacing: -1px;
  }
}

h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.4px;
}
@media (min-width: 600px) {
  h2 {
    font-family: "League Spartan", sans-serif;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
}

h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -0.4px;
}
@media (min-width: 600px) {
  h3 {
    font-family: "League Spartan", sans-serif;
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  background-color: hsl(27, 22%, 91%);
}

main {
  flex: 1;
  min-height: 0;
}

.site-wrapper {
  background-color: #ffffff;
  color: hsl(218, 21%, 18%);
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  box-shadow: -10px 0 25px -20px rgba(0, 0, 0, 0.25), 10px 0 25px -20px rgba(0, 0, 0, 0.25);
}

img,
svg {
  display: block;
}

.no-scroll {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

input[type=number] {
  -moz-appearance: textfield; /* Firefox */
  -webkit-appearance: none; /* Safari/Chrome */
  appearance: textfield; /* Standard */
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.primary-btn {
  display: inline-block;
  outline: none;
  font-family: "League Spartan", sans-serif;
  font-size: 17px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 23px 52.5px;
  border: 1px solid #ffffff;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.primary-btn:hover {
  background-color: #ffffff;
  color: hsl(218, 21%, 18%);
}

.primary-btn:focus-visible {
  outline-offset: 4px;
  outline: 2px solid hsl(27, 22%, 51%);
}

.secondary-btn {
  display: inline-block;
  outline: none;
  font-family: "League Spartan", sans-serif;
  font-size: 17px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #ffffff;
  background-color: hsl(0, 0%, 7%);
  text-decoration: none;
  text-transform: uppercase;
  padding: 23px 52.5px;
  border: 1px solid hsl(0, 0%, 7%);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.secondary-btn:hover {
  background-color: #ffffff;
  color: hsl(218, 21%, 18%);
}

.secondary-btn:focus-visible {
  outline-offset: 4px;
  outline: 2px solid hsl(27, 22%, 51%);
}

.feature-btn {
  border: none;
  outline: none;
  background: none;
  font-family: "League Spartan", sans-serif;
  font-size: 17px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: hsla(0, 0%, 30%, 0.5);
  cursor: pointer;
}
@media (min-width: 600px) {
  .feature-btn {
    padding-bottom: 6px;
  }
}
@media (min-width: 1200px) {
  .feature-btn {
    padding-bottom: 0;
  }
}

.feature-btn:hover {
  color: hsl(0, 0%, 30%);
}

.feature-btn[aria-selected=true] {
  color: hsl(0, 0%, 30%);
  position: relative;
}

.feature-btn[aria-selected=true]::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 1px;
  background-color: #9e7f66;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (min-width: 1200px) {
  .feature-btn[aria-selected=true]::after {
    width: 95px;
    bottom: 50%;
    left: -127px;
    transform: translateY(-50%);
  }
}

.feature-btn:focus-visible {
  outline-offset: 4px;
  outline: 2px solid hsl(27, 22%, 51%);
}

.submit-btn {
  background-color: hsl(0, 0%, 7%);
  color: #ffffff;
  font-family: "League Spartan", sans-serif;
  font-size: 17px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid hsl(0, 0%, 7%);
  padding: 17px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #ffffff;
  color: hsl(218, 21%, 18%);
}

.submit-btn:focus-visible {
  outline-offset: 4px;
  outline: 2px solid hsl(27, 22%, 51%);
}

.toast {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border: 2px solid hsl(27, 22%, 80%);
  border-radius: 8px;
  padding: 32px;
  background-color: hsl(27, 22%, 81%);
  max-width: 540px;
  width: 100%;
  box-shadow: 0 75px 100px -50px hsla(219, 20%, 28%, 0.5);
  overflow: hidden;
}

.toast-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  background-color: hsl(0, 0%, 7%);
  width: 0%;
  animation: fill-bar 4s linear forwards;
}

@keyframes fill-bar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.toast-content {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  align-items: center;
}

.toast-text {
  color: hsl(0, 0%, 7%);
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
}

.toast-text span {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.25px;
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 600px) {
  .toast-text span {
    font-family: "League Spartan", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: -0.25px;
  }
}

.toast.visible {
  display: block;
}

.toast-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 15000;
}

.toast-overlay.visible {
  display: block;
}

header h1 span {
  display: block;
}

@media (min-width: 1200px) {
  .hero-container {
    display: grid;
    grid-template-columns: auto 895px;
    background-color: hsl(0, 0%, 7%);
    align-items: start;
    position: relative;
    z-index: 0;
  }
}

.hero-bg-wrapper {
  background-color: #181818;
  height: 220px;
  background-image: url("../images/homepage/hero-bg-mobile.jpg");
  background-image: image-set(url("../images/homepage/hero-bg-mobile.jpg") 1x, url("../images/homepage/hero-bg-mobile@2x.jpg") 2x);
  background-repeat: no-repeat;
  background-position: top center;
}
@media (min-width: 600px) {
  .hero-bg-wrapper {
    height: 373px;
    background-image: url("../images/homepage/hero-bg-tablet.jpg");
    background-image: image-set(url("../images/homepage/hero-bg-tablet.jpg") 1x, url("../images/homepage/hero-bg-tablet@2x.jpg") 2x);
  }
}
@media (min-width: 1200px) {
  .hero-bg-wrapper {
    height: 820px;
    max-width: 895px;
    background-image: url("../images/homepage/hero-bg-desktop.jpg");
    background-image: image-set(url("../images/homepage/hero-bg-desktop.jpg") 1x, url("../images/homepage/hero-bg-desktop@2x.jpg") 2x);
    grid-column: 2;
    grid-row: 1;
    z-index: 1;
  }
}

.hero-content {
  display: grid;
  justify-items: center;
  gap: 36px;
  background-color: hsl(0, 0%, 7%);
  color: #ffffff;
  padding: 12px 24px 152px 24px;
}
@media (min-width: 600px) {
  .hero-content {
    padding: 1px 40px 216px 40px;
    gap: 38px;
  }
}
@media (min-width: 1200px) {
  .hero-content {
    justify-items: left;
    background-color: transparent;
    gap: 153px;
    padding: 0;
    position: absolute;
    top: 65px;
    left: 165px;
    z-index: 2;
  }
}

.hero-text {
  display: grid;
  justify-items: center;
  text-align: center;
}
@media (min-width: 600px) {
  .hero-text {
    max-width: 573px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .hero-text {
    max-width: 507px;
    width: 507px;
    margin: 0;
    text-align: left;
    justify-items: start;
  }
}

.hero-text p {
  margin-top: 21px;
  margin-bottom: 53px;
}
@media (min-width: 600px) {
  .hero-text p {
    margin-top: 20px;
    margin-bottom: 52px;
  }
}
@media (min-width: 1200px) {
  .hero-text p {
    margin-top: 10px;
    margin-bottom: 40px;
  }
}

.intro {
  display: grid;
  padding: 0 24px;
  gap: 101px;
  margin-top: -72px;
  margin-bottom: 101px;
}
@media (min-width: 600px) {
  .intro {
    padding: 0 97.5px;
    gap: 118px;
    margin-top: -96px;
    margin-bottom: 118px;
    position: relative;
    z-index: 4;
  }
}
@media (min-width: 1200px) {
  .intro {
    padding: 0;
    gap: 121px;
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
    margin-top: -70px;
    margin-bottom: 0;
  }
}

.intro-article {
  display: grid;
  gap: 48px;
}
@media (min-width: 600px) {
  .intro-article {
    gap: 56px;
  }
}
@media (min-width: 1200px) {
  .intro-article {
    gap: 125px;
    grid-template-columns: 540px 1fr;
    align-items: center;
  }
}

.intro-article-img {
  width: 100%;
  height: auto;
  box-shadow: 0 75px 100px -50px hsla(219, 20%, 28%, 0.5);
  position: relative;
  z-index: 9;
}

.intro-article-text {
  display: grid;
  gap: 13px;
  text-align: center;
  padding-top: 43px;
  position: relative;
}
@media (min-width: 600px) {
  .intro-article-text {
    gap: 27px;
    padding-top: 46px;
    max-width: 457px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .intro-article-text {
    margin: 0;
    text-align: left;
    padding-top: 62px;
  }
}

.intro-article-text::before {
  content: "";
  position: absolute;
  background: url("../images/patterns/pattern-divide.svg");
  width: 71px;
  height: 7px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .intro-article-text::before {
    left: 0;
    transform: unset;
  }
}

.intro-article-text h3 span {
  display: block;
}

@media (min-width: 1200px) {
  .locally {
    gap: 125px;
    grid-template-columns: 1fr 540px;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .locally .intro-article-text {
    grid-column: 1;
    grid-row: 1;
  }
}

.pattern-curve-top-left {
  display: none;
}
@media (min-width: 768px) {
  .pattern-curve-top-left {
    display: block;
    position: absolute;
    pointer-events: none;
    bottom: -118px;
    right: -511px;
  }
}
@media (min-width: 1200px) {
  .pattern-curve-top-left {
    bottom: 80px;
    right: -165px;
  }
}

.pattern-curve-top-right {
  display: none;
}
@media (min-width: 768px) {
  .pattern-curve-top-right {
    display: block;
    position: absolute;
    top: 196px;
    left: -517px;
    pointer-events: none;
  }
}
@media (min-width: 1200px) {
  .pattern-curve-top-right {
    top: 320px;
    left: -165px;
  }
}

.lines {
  display: none;
}
@media (min-width: 768px) {
  .lines {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 10;
    right: 40px;
    bottom: 371px;
  }
}
@media (min-width: 1200px) {
  .lines {
    bottom: 362px;
    right: -114px;
  }
}

@media (min-width: 1200px) {
  .no-shadow {
    box-shadow: none;
  }
}

.highlights {
  background-color: hsl(0, 0%, 7%);
  color: #ffffff;
  padding: 72px 24px 102px 24px;
  margin-bottom: 80px;
}
@media (min-width: 600px) {
  .highlights {
    margin-bottom: 0;
    padding: 96px 40px;
  }
}
@media (min-width: 768px) {
  .highlights {
    padding: 96px 97.5px;
  }
}
@media (min-width: 1200px) {
  .highlights {
    margin-top: -80px;
    padding: 200px 0 120px 0;
  }
}

.highlights-container {
  position: relative;
  padding-top: 43px;
  display: grid;
  gap: 85px;
}
@media (min-width: 600px) {
  .highlights-container {
    padding-top: 46px;
    gap: 54px;
  }
}
@media (min-width: 1200px) {
  .highlights-container {
    padding-top: 62px;
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: 445px auto;
    gap: 125px;
    align-items: start;
  }
}

.highlights-container::before {
  content: "";
  position: absolute;
  width: 71px;
  height: 7px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("../images/patterns/pattern-divide.svg");
  background-repeat: no-repeat;
}
@media (min-width: 1200px) {
  .highlights-container::before {
    left: 0;
    transform: unset;
  }
}

.highlights-intro {
  display: grid;
  gap: 13px;
  text-align: center;
}
@media (min-width: 600px) {
  .highlights-intro {
    max-width: 445px;
    width: 100%;
    margin: 0 auto;
    gap: 27px;
  }
}
@media (min-width: 1200px) {
  .highlights-intro {
    text-align: left;
  }
}

.highlights-articles-container {
  display: grid;
  gap: 24px;
}

.highlights-article {
  display: grid;
  gap: 36px;
  padding-bottom: 55px;
  position: relative;
}
@media (min-width: 600px) {
  .highlights-article {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    gap: 62px;
    grid-template-columns: 128px minmax(auto, 383px);
    padding-bottom: 25px;
    align-items: start;
  }
}

.highlights-article::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: hsla(0, 0%, 100%, 0.15);
  left: 0;
  bottom: 0;
}

.highlights-article:last-child {
  padding-bottom: 0;
}

.highlights-article:last-child::after {
  content: none;
}

@media (min-width: 600px) {
  .highlights-article picture {
    position: relative;
    z-index: 20;
  }
}

@media (min-width: 600px) {
  .highlights-article picture::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 1px;
    background-color: #9e7f66;
    right: -32px;
    top: 18px;
    z-index: 19;
    pointer-events: none;
  }
}

.highlights-article-img {
  width: 100%;
  height: auto;
}

.hightlight-text {
  display: grid;
  gap: 6px;
  text-align: center;
}
@media (min-width: 600px) {
  .hightlight-text {
    text-align: left;
  }
}

.menu-desc {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 0;
}
@media (min-width: 1200px) {
  .menu-desc {
    font-family: "League Spartan", sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 0;
  }
}

.highlight-heading {
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.25px;
}

.features {
  padding: 0 24px;
  margin-bottom: 124px;
}
@media (min-width: 600px) {
  .features {
    margin-bottom: 120px;
    padding: 120px 40px 0 40px;
    position: relative;
    z-index: 50;
  }
}
@media (min-width: 1200px) {
  .features {
    margin-bottom: 160px;
    padding: 160px 0 0 0;
  }
}

@media (min-width: 1200px) {
  .features-container {
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .feature-article {
    display: grid;
    grid-template-columns: 540px 1fr;
    grid-template-areas: "image content" "image tabs";
    row-gap: 79px;
    column-gap: 125px;
  }
}

.feature-img-wrapper {
  aspect-ratio: 326/400;
}
@media (min-width: 600px) {
  .feature-img-wrapper {
    aspect-ratio: 573/360;
    position: relative;
    z-index: 90;
  }
}
@media (min-width: 1200px) {
  .feature-img-wrapper {
    aspect-ratio: 540/600;
    grid-area: image;
  }
}

@media (min-width: 600px) {
  .feature-img-wrapper::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 76px;
    background-image: url("../images/patterns/pattern-lines.svg");
    background-repeat: no-repeat;
    left: 0;
    top: -38px;
    z-index: 91;
    pointer-events: none;
  }
}
@media (min-width: 1200px) {
  .feature-img-wrapper::before {
    left: -40px;
  }
}

.feature-img {
  width: 100%;
  height: auto;
  box-shadow: 0 75px 100px -50px hsla(219, 20%, 28%, 0.5);
  margin-bottom: 49px;
}
@media (min-width: 600px) {
  .feature-img {
    aspect-ratio: 573/360;
    width: calc(100% - 115px);
    margin: 0 auto;
    margin-bottom: 57px;
    position: relative;
    z-index: 51;
  }
}
@media (min-width: 1200px) {
  .feature-img {
    aspect-ratio: 540/600;
    width: 100%;
    margin-bottom: 0;
  }
}

.feature-contents {
  margin-top: 27px;
  display: grid;
  gap: 27px;
  justify-items: center;
}
@media (min-width: 600px) {
  .feature-contents {
    max-width: 457px;
    width: 100%;
    margin: 0 auto;
    margin-top: 47px;
    gap: 60px;
  }
}
@media (min-width: 1200px) {
  .feature-contents {
    grid-area: content;
    max-width: none;
    margin: 0;
    align-content: end;
    justify-items: start;
  }
}

.feature-article-text {
  display: grid;
  gap: 13px;
  text-align: center;
}
@media (min-width: 600px) {
  .feature-article-text {
    gap: 19px;
  }
}
@media (min-width: 1200px) {
  .feature-article-text {
    text-align: left;
  }
}

.tabs {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (min-width: 1200px) {
  .tabs {
    grid-area: tabs;
    grid-template-columns: 1fr;
    gap: 12px;
    align-content: start;
    justify-items: start;
  }
}

.features-pattern {
  display: none;
}
@media (min-width: 600px) {
  .features-pattern {
    position: absolute;
    display: block;
    top: 0;
    left: -517px;
    pointer-events: none;
    z-index: 49;
  }
}
@media (min-width: 1200px) {
  .features-pattern {
    left: -350px;
  }
}

.features-lines {
  display: none;
}
@media (min-width: 600px) {
  .features-lines {
    display: block;
    position: absolute;
    top: 82px;
    left: 40px;
    pointer-events: none;
    z-index: 52;
  }
}
@media (min-width: 1200px) {
  .features-lines {
    top: 122px;
    left: 0;
  }
}

.cta {
  background-image: url("../images/homepage/ready-bg-mobile.jpg");
  background-image: image-set(url("../images/homepage/ready-bg-mobile.jpg") 1x, url("../images/homepage/ready-bg-mobile@2x.jpg") 2x);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 84px 24px 80px 24px;
}
@media (min-width: 600px) {
  .cta {
    padding: 72px 76.5px 64px 76.5px;
    background-image: url("../images/homepage/ready-bg-tablet.jpg");
    background-image: image-set(url("../images/homepage/ready-bg-tablet.jpg") 1x, url("../images/homepage/ready-bg-tablet@2x.jpg") 2x);
  }
}
@media (min-width: 1200px) {
  .cta {
    background-image: url("../images/homepage/ready-bg-desktop.jpg");
    background-image: image-set(url("../images/homepage/ready-bg-desktop.jpg") 1x, url("../images/homepage/ready-bg-desktop@2x.jpg") 2x);
    padding: 88px 0;
  }
}

.cta-content {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}
@media (min-width: 600px) {
  .cta-content {
    gap: 24px;
  }
}
@media (min-width: 1200px) {
  .cta-content {
    grid-template-columns: 1fr auto;
    gap: unset;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    justify-items: unset;
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
  }
}

.cta-content h2 {
  color: #ffffff;
}

footer {
  background-color: hsl(0, 0%, 7%);
  color: #ffffff;
  padding: 80px 24px 78px 24px;
}
@media (min-width: 600px) {
  footer {
    padding: 64px 40px 62px 40px;
  }
}
@media (min-width: 1200px) {
  footer {
    padding: 78px 0 76px 0;
  }
}

.footer-container {
  display: grid;
  gap: 42px;
  justify-items: center;
}
@media (min-width: 600px) {
  .footer-container {
    grid-template-columns: auto 1fr;
    gap: 130px;
    justify-items: start;
  }
}
@media (min-width: 1200px) {
  .footer-container {
    gap: 193px;
    max-width: 1110px;
    margin: 0 auto;
  }
}

.footer-content {
  display: grid;
  gap: 32px;
  text-align: center;
  font-family: "League Spartan", sans-serif;
  font-size: 14px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 2px;
}
@media (min-width: 600px) {
  .footer-content {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 124px;
  }
}

.home-link {
  display: inline-block;
}

.booking-page-header {
  position: relative;
  z-index: 0;
}

.booking-header {
  height: 600px;
  background-image: url("../images/booking/hero-bg-mobile.jpg");
  background-image: image-set(url("../images/booking/hero-bg-mobile.jpg") 1x, url("../images/booking/hero-bg-mobile@2x.jpg") 2x);
  background-repeat: no-repeat;
  background-position: top center;
}
@media (min-width: 376px) {
  .booking-header {
    background-image: url("../images/booking/hero-bg-tablet.jpg");
    background-image: image-set(url("../images/booking/hero-bg-tablet.jpg") 1x, url("../images/booking/hero-bg-tablet@2x.jpg") 2x);
  }
}
@media (min-width: 769px) {
  .booking-header {
    background-image: url("../images/booking/hero-bg-desktop.jpg");
    background-image: image-set(url("../images/booking/hero-bg-desktop.jpg") 1x, url("../images/booking/hero-bg-desktop@2x.jpg") 2x);
  }
}

.booking-header-container {
  padding: 56px 24px;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 600px) {
  .booking-header-container {
    padding: 56px 40px;
  }
}
@media (min-width: 1200px) {
  .booking-header-container {
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
    padding: 65px 0;
    text-align: left;
  }
}

.booking-header-container img {
  margin: 0 auto;
}
@media (min-width: 600px) {
  .booking-header-container img {
    margin: 0;
  }
}

.booking-header-text {
  display: grid;
  gap: 13px;
  margin-top: 44px;
  margin-bottom: 19px;
}
@media (min-width: 600px) {
  .booking-header-text {
    max-width: 573px;
    width: 100%;
    margin: 0 auto;
    gap: 12px;
    margin-top: 70px;
  }
}
@media (min-width: 1200px) {
  .booking-header-text {
    max-width: 445px;
    width: 100%;
    margin: 0;
    margin-top: 153px;
    gap: 18px;
  }
}

.booking-page {
  padding: 23px 46px;
}
@media (min-width: 600px) {
  .booking-page {
    display: none;
  }
}

.reservation {
  padding: 0 24px;
  margin-top: -137px;
  margin-bottom: 86px;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .reservation {
    margin-top: -230px;
    margin-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .reservation {
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 101px;
    margin-top: -342px;
  }
}

.reservation-form {
  background-color: #ffffff;
  padding: 34px 32px;
  box-shadow: 0 75px 100px -50px hsla(219, 20%, 28%, 0.5);
  display: grid;
  gap: 34px;
}
@media (min-width: 600px) {
  .reservation-form {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
    padding: 48px;
  }
}
@media (min-width: 1200px) {
  .reservation-form {
    margin: 0;
    justify-self: end;
    gap: 32px;
    position: relative;
  }
}

@media (min-width: 1200px) {
  .reservation-form::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 76px;
    background-image: url("../images/patterns/pattern-lines.svg");
    left: -80px;
    bottom: -23px;
    z-index: -1;
    pointer-events: none;
  }
}

@media (min-width: 1200px) {
  .reservation-form::after {
    content: "";
    position: absolute;
    width: 993px;
    height: 320px;
    background-image: url("../images/patterns/pattern-curve-bottom-right.svg");
    right: 282px;
    top: 341px;
    z-index: -2;
    pointer-events: none;
  }
}

label {
  color: hsl(0, 0%, 7%);
}

input {
  outline: none;
  border: none;
  background: none;
  width: 100%;
  padding: 0 15px 15px 15px;
  border-bottom: 1px solid #8e8e8e;
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 28px;
  color: hsl(218, 21%, 18%);
  caret-color: hsl(27, 22%, 51%);
}

input::placeholder {
  color: hsla(0, 0%, 7%, 0.5);
}

input:focus-visible {
  outline-offset: 4px;
  outline: 2px solid hsl(27, 22%, 51%);
}

.people-wrapper {
  position: relative;
  width: 100%;
}

.real-input {
  width: 100%;
  color: transparent;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.people-display {
  position: absolute;
  color: #151515;
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.25px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  cursor: pointer;
}

.people-btn {
  color: #9e7f66;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
}

.people-btn:focus-visible {
  border-radius: 50%;
  outline-offset: 4px;
  outline: 2px solid hsl(27, 22%, 51%);
}

.minus {
  position: absolute;
  top: -12px;
  left: 0;
  z-index: 3;
}

.plus {
  position: absolute;
  top: -12px;
  right: 0;
  z-index: 3;
}

.date-fieldset {
  border: none;
  outline: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 375px) {
  .date-fieldset {
    grid-template-columns: minmax(73px, 1fr) minmax(73px, 1fr) minmax(88px, 1fr);
    grid-template-rows: repeat(2, auto);
    column-gap: 14px;
    row-gap: 8px;
  }
}
@media (min-width: 600px) {
  .date-fieldset {
    grid-template-columns: 1fr 80px 80px 97px;
    gap: 16px;
    align-items: center;
  }
}

@media (min-width: 375px) {
  .date-label-group {
    grid-row: 1;
    grid-column: 1/4;
  }
}
@media (min-width: 600px) {
  .date-label-group {
    grid-column: unset;
  }
}

.time-fieldset {
  border: none;
  outline: none;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}
@media (min-width: 375px) {
  .time-fieldset {
    grid-template-columns: minmax(73px, 1fr) minmax(73px, 1fr) minmax(88px, 1fr);
    grid-template-rows: repeat(2, auto);
    column-gap: 14px;
    row-gap: 8px;
  }
}
@media (min-width: 600px) {
  .time-fieldset {
    grid-template-columns: 1fr 80px 80px 97px;
    gap: 16px;
    align-items: center;
  }
}

@media (min-width: 375px) {
  .time-label-group {
    grid-row: 1;
    grid-column: 1/4;
  }
}
@media (min-width: 600px) {
  .time-label-group {
    grid-column: unset;
  }
}

.ampm-dropdown {
  position: relative;
  z-index: 5;
}

.ampm-toggle {
  border: none;
  outline: none;
  background: none;
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  color: hsl(218, 21%, 18%);
  line-height: 28px;
  width: 100%;
  border-bottom: 1px solid #8e8e8e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px 15px 15px;
  cursor: pointer;
}

.ampm-toggle:focus-visible {
  outline-offset: 4px;
  outline: 2px solid hsl(27, 22%, 51%);
}

.ampm-options {
  background-color: #ffffff;
  box-shadow: 0 15px 25px 0 hsla(219, 20%, 28%, 0.25);
  padding: 18px 30px 13px 16px;
  list-style: none;
  position: absolute;
  top: 51px;
  left: 0;
  z-index: 6;
  font-family: "League Spartan", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 28px;
  text-transform: uppercase;
  cursor: pointer;
}

.ampm-options:focus-visible {
  outline-offset: 4px;
  outline: 2px solid hsl(27, 22%, 51%);
}

.option-time {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  width: 60px;
}

.option-time:last-child {
  margin-bottom: 0;
}

.ampm-options li .check {
  visibility: hidden;
}

.ampm-options li[aria-selected=true] .check {
  visibility: visible;
}

#name-error,
#email-error {
  padding-left: 16px;
  margin-top: 8px;
}

.error-message {
  color: #b54949;
  font-family: "League Spartan", sans-serif;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.13px;
}

.input-error {
  border-color: #b54949;
}

.input-error::placeholder {
  color: hsla(0, 43%, 50%, 0.5);
}

.fieldset-error {
  color: #b54949;
}

.date-label-group,
.time-label-group {
  display: grid;
  gap: 1px;
}

/*# sourceMappingURL=main.css.map */
