/**
 * Reservation Modal
 */

.reservation-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
}
.reservation-modal.js-active {
  display: flex;
}
.reservation-modal__wrapper {
  background-color: white;
  max-width: 1100px;
  width: 100%;
  padding: 3rem 3rem 4rem;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

@media all and (min-width: 1000px) {
  .reservation-modal__wrapper {
    height: initial;
  }
}



.reservation-modal__header.js-hidden {
  display: none;
}
.reservation-modal__header-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.reservation-modal__header-title::before{
  content: "";
  width: 171px;
  height: 169px;
  position: relative;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../images/contact-illu.svg");
}
.reservation-modal__header-title p{
  font-family: "FuturaLT";
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 40.8px */
  letter-spacing: 2px;
  margin: 0;
}
.reservation-modal__trigger-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.reservation-modal__trigger {
  padding: 16px 32px;
  font-size: 20px;
  background-color: var(--brand-primary-color);
  color: var(--brand-white);
  transition: color 0.2s, background-color 0.2s;
  border-radius: 2px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  border: none;
  max-width: 400px;
  min-width: 280px;
}
.reservation-modal__trigger:hover {
  background-color: var(--brand-secondary-color);
  text-decoration: none;
}
.reservation-modal__trigger span {
  font-size: 16px;
  display: inline-block;
}
.reservation-modal__content {
  margin: 0 auto;
}
@media all and (min-width: 1000px) {
  .reservation-modal__trigger-wrapper {
    flex-wrap: nowrap;
  }
}


.reservation-modal__close-btn {
  background-image: url('../../images/close.svg');
  background-color: transparent;
  border: none;
  background-position: center;
  background-size: contain;
  width: 32px;
  height: 32px;
  display: block;
  text-indent: -999px;
  overflow: hidden;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

/**
 * Reservation Modal Item
 */

.reservation-modal__content-item {
  display: none;
}
.reservation-modal__content-item.js-active {
  display: block;
}
.reservation-modal-item {
  margin: 1.5rem 0;
}
.reservation-modal-item__header {
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
.reservation-modal-item__title p{
  font-family: "FuturaLT";
  font-size: 34px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 2px;
  margin: 0;
}
.reservation-modal-item__subtitle p{
  font-family: "FuturaLT-Book";
  font-size: 23px;
  font-weight: 500;
  line-height: 120%;
}
.reservation-modal-item__link a{
  padding: 16px 32px;
  font-size: 20px;
  background-color: var(--brand-primary-color);
  color: var(--brand-white);
  transition: color 0.2s, background-color 0.2s;
  border-radius: 2px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
  border: none;
  margin: 1.5rem 0;
}
.reservation-modal-item__link a:hover {
  background-color: var(--brand-secondary-color);
  text-decoration: none;
}
.reservation-modal-item__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}
.reservation-modal-item__content::before{
  content: "";
  width: 171px;
  height: 169px;
  position: relative;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../../images/contact-illu.svg");
}
.reservation-modal-item__content p {
  color: var(--brand-grey-medium);
}
.reservation-modal-item__content a {
  display: inline-block;
  position: relative;
  font-size: 1rem;
  color: var(--brand-secondary-color);
  z-index: 1;
}
.reservation-modal-item__content a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-bottom: 1px solid var(--brand-primary-color);
}
.reservation-modal-item__content a:hover {
  color: var(--brand-primary-color);
  text-decoration: none;
}
.reservation-modal-item__content a:hover::after {
  background: linear-gradient(180deg, rgba(255, 242, 241, 0) 0%, rgba(255, 134, 116, 0) 0.01%, rgba(255, 242, 241, 0) 46.88%, var(--brand-primary-light-color) 50%, var(--brand-primary-light-color) 100%);
  border: none;
}

/**
 * Reservation Open Button
 */

.reservation-modal__open-btn {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 0.7rem 1rem;
  background: var(--brand-primary-color);
  color: var(--brand-white);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  transition: color 0.2s, background-color 0.2s;
  z-index: 15;
  border: none;
}
.reservation-modal__open-btn::after{
  content: '';
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('../../images/arrow-medium--white.svg');
}
.reservation-modal__open-btn:hover {
  background-color: var(--brand-secondary-color);
  text-decoration: none;
  color: var(--brand-primary-color);
}

@media (min-width: 1000px){
  .reservation-modal__open-btn {
    left: initial;
    bottom: 10%;
    max-width: 210px;
    overflow: hidden;
  }
}


/**
 * Reservation modal Back Btn
 */

.reservation-modal__back-btn {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reservation-modal__back-btn::before {
  content: "";
  display: block;
  position: relative;
  background-image: url('../../images/arrow--primary-color.svg');
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  background-position: center;
  background-size: contain;
  width: 32px;
  height: 20px;
  display: block;
  transform: rotateY(180deg);
}