@import url("https://fonts.googleapis.com/css2?family=Baskervville&family=Nunito+Sans:wght@400;700&display=swap");
@font-face {
  font-family: "Avenir Light";
  src: url("../assets/fonts/avenir-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

fieldset,
legend {
  border: none;
  padding: 0;
  margin: 0;
}

.contact-page {
  background-color: #f8f6f4;
  padding: 48px 0;
  text-align: center;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 96px;
}
.contact-header .main-title {
  margin-bottom: 0;
  font-family: Baskervville, serif;
  font-size: 80px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #725a58;
  text-transform: uppercase;
}
.contact-header .line {
  border: 0.5px solid #e3b6b1;
  width: 200px;
  margin-top: 32px;
}
.contact-header .subtitle {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #191919;
  line-height: 1.6;
  margin-top: 32px;
  margin-bottom: 64px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #725a58;
}
.social-links a img {
  width: 24px;
  height: 24px;
}

.form-container {
  background-color: #fae9e7;
  max-width: 768px;
  margin: 96px auto;
  padding: 60px 80px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.form-container legend {
  font-family: Baskervville, serif;
  font-size: 32px;
  font-weight: 400;
  color: #191919;
  margin-bottom: 16px;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: 48px;
}
.tab-nav .tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 96px;
  font-family: Baskervville, serif;
  font-size: 32px;
  cursor: pointer;
  color: #a3a3a3;
}
.tab-nav .tab-btn.active {
  color: #191919;
  border-bottom: 2px solid #191919;
}

.form-section {
  border: none;
  margin-bottom: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.input-field {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #a3a3a3;
  background-color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
}
.input-field:focus {
  outline: none;
  border-color: #b99692;
}

.date-input[type=text] {
  color: #a3a3a3;
  background-image: url("../assets/icons/calendar.svg");
}

.date-input[type=date] {
  background-image: url("../assets/icons/calendar.svg");
  color: #191919;
}
.date-input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.time-select {
  padding-right: 40px;
  background-image: url("../assets/icons/Select.svg");
  background-size: 10px;
  color: #a3a3a3;
}
.time-select:valid {
  color: #191919;
}
.time-select option {
  color: #191919;
}

.tel-input {
  margin: 8px 0 16px 0;
}

.textarea-field {
  height: auto;
  resize: vertical;
  padding-top: 16px;
}

.selection-group {
  display: flex;
  gap: 8px;
}
.selection-group .select-box {
  margin: 0;
  flex: 1;
  background: #fff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid transparent;
}
.selection-group .select-box input {
  display: none;
}
.selection-group .select-box span {
  font-family: Baskervville, serif;
  font-size: 20px;
  font-weight: 400;
  color: #535353;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.selection-group .select-box img {
  width: 24px;
  opacity: 0;
  transition: all 0.3s ease;
}
.selection-group .select-box input:checked + span {
  color: #191919;
}
.selection-group .select-box input:checked + span img {
  opacity: 1;
}
.selection-group .select-box:hover {
  border: 1px solid #b99692;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  color: #191919;
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1px solid #a3a3a3;
  background-color: #fff;
  border-radius: 2px;
  position: relative;
}
.checkbox-label input[type=checkbox]:checked {
  background-color: #e3b6b1;
  border-color: #e3b6b1;
}
.checkbox-label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-options,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #535353;
  cursor: pointer;
}
.radio-label input {
  display: none;
}
.radio-label .radio-dot {
  width: 24px;
  height: 24px;
  border: 2px solid #a3a3a3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.radio-label .radio-dot::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #e3b6b1;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
.radio-label input:checked ~ .radio-dot {
  border-color: #e3b6b1;
}
.radio-label input:checked ~ .radio-dot::after {
  opacity: 1;
}

.btn-next, .receipt-card-footer .btn-home,
.btn-submit,
.btn-home {
  display: block;
  width: 200px;
  margin: 48px auto 0;
  padding: 16px;
  background: none;
  border: 1px solid #535353;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #535353;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.btn-next:hover,
.btn-submit:hover,
.btn-home:hover {
  background-color: #b99692;
  border-color: #b99692;
  color: #fff;
}

.btn-back {
  background: none;
  border: none;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #535353;
  cursor: pointer;
  padding: 0;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
}
.btn-back:hover {
  color: #e3b6b1;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-top: 8px;
}

.guest-services-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  padding-bottom: 16px;
  background-color: #fbfafa;
}
.guest-row:last-child {
  border-bottom: none;
}
.guest-row .guest-type {
  flex: 1;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  color: #191919;
}
.guest-row .guest-options {
  display: flex;
  gap: 24px;
  flex: 1.5;
  justify-content: flex-end;
}
.guest-row .guest-options .checkbox-label {
  margin-top: 0;
}

.counter {
  display: flex;
  align-items: center;
  background-color: #fae9e7;
  height: 40px;
  margin-right: 8px;
}
.counter button {
  background: none;
  border: none;
  width: 35px;
  height: 100%;
  font-size: 20px;
  cursor: pointer;
  color: #535353;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter button:hover {
  background-color: #f8f6f4;
  color: #e3b6b1;
}
.counter .counter-input {
  width: 40px;
  height: 100%;
  background: none;
  text-align: center;
  border: none;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #191919;
  -moz-appearance: textfield;
}
.counter .counter-input::-webkit-outer-spin-button, .counter .counter-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.counter .counter-input:focus {
  outline: none;
}

.separator {
  width: 2px;
  height: 24px;
  margin-left: 16px;
  margin-right: 32px;
  background-color: #e3b6b1;
}

.party-chat-widget {
  position: fixed;
  bottom: 50px;
  right: 0;
  margin-bottom: 48px;
  width: 48px;
}
.party-chat-widget .chat-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.party-chat-widget .chat-trigger img {
  width: 48px;
  height: 48px;
}
.party-chat-widget .chat-trigger:hover {
  opacity: 0.9;
}
.party-chat-widget .chat-trigger.hidden img {
  opacity: 0;
  pointer-events: none;
}
.party-chat-widget .chat-options {
  display: none;
  flex-direction: column;
}
.party-chat-widget .chat-options.is-open {
  display: flex;
}
.party-chat-widget .chat-options .option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.party-chat-widget .chat-options .option-btn img {
  width: 48px;
  height: 48px;
}
.party-chat-widget .chat-options .option-btn:hover {
  opacity: 0.8;
}

#thank-you-screen,
#classes-thank-you-screen {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.thank-you-title {
  font-family: Baskervville, serif;
  font-size: 40px;
  color: #191919;
  margin-bottom: 8px;
  line-height: 1.2;
}

.thank-you-subtitle {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #535353;
  margin-top: 0;
  margin-bottom: 48px;
  line-height: 1.5;
}
.thank-you-subtitle .edit-details-link {
  display: inline-block;
  margin-top: 8px;
  color: #535353;
  text-decoration: none;
}
.thank-you-subtitle .edit-details-link:hover {
  text-decoration: underline;
}

.receipt-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #a06d67;
  background-color: transparent;
}
.receipt-card .receipt-image {
  width: 100%;
  max-width: 600px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 48px;
  display: block;
}
.receipt-card .receipt-price {
  margin-bottom: 48px;
}
.receipt-card .receipt-price p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #191919;
  margin-bottom: 4px;
}
.receipt-card .receipt-price h3 {
  font-family: Baskervville, serif;
  font-size: 36px;
  color: #535353;
  font-weight: 400;
  margin: 0;
}
.receipt-card .receipt-header {
  display: none;
}
.receipt-card .receipt-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  padding: 24px 0;
  text-align: left;
}
.receipt-card .receipt-details .detail-block {
  margin-bottom: 0;
}
.receipt-card .receipt-details .detail-block h5 {
  font-family: Baskervville, serif;
  font-size: 20px;
  font-weight: 400;
  color: #191919;
  margin-bottom: 16px;
}
.receipt-card .receipt-details .detail-block p,
.receipt-card .receipt-details .detail-block ul {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  color: #191919;
  line-height: 1.6;
}
.receipt-card .receipt-details .detail-block ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.receipt-card .receipt-details .detail-block ul li {
  margin-bottom: 8px;
  display: flex;
}
.receipt-card .receipt-details .detail-block ul li::before {
  content: "- ";
  margin-right: 4px;
}

.receipt-card-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 96px;
}
.receipt-card-footer .receipt-card-logos {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.receipt-card-footer .receipt-card-logos .thank-you-footer-logo img {
  width: 60px;
  height: auto;
}
.receipt-card-footer .receipt-card-logos .social-links {
  justify-content: flex-start;
  gap: 24px;
  margin: 0;
}
.receipt-card-footer .receipt-card-logos .social-links a {
  font-size: 14px;
  color: #535353;
}
.receipt-card-footer .btn-home {
  margin: 0;
  width: 160px;
}

#classes-thank-you-screen .classes-receipt-card {
  padding: 0;
  border: none;
  background-color: transparent;
}
#classes-thank-you-screen .classes-thank-you-screen-img {
  width: 100%;
  max-width: 608px;
  height: 383px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 48px;
  display: block;
}

@media (max-width: 868px) {
  .party-chat-widget {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .contact-header {
    padding: 0 24px;
  }
  .contact-header .main-title {
    font-size: 32px;
    letter-spacing: 0.05em;
  }
  .contact-header .line {
    width: 150px;
    margin-top: 24px;
  }
  .contact-header .subtitle {
    font-size: 16px;
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .social-links {
    flex-direction: row;
    gap: 24px;
    padding: 0 24px;
    justify-content: center;
  }
  .social-links a {
    font-size: 0;
    gap: 0;
  }
  .social-links a img {
    width: 28px;
    height: 28px;
  }
  .social-links.footer-social-links a {
    font-size: 16px;
    gap: 8px;
  }
  .form-container {
    margin: 24px 8px;
    padding: 24px 16px;
    gap: 24px;
  }
  .form-container legend {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .tab-nav {
    margin-bottom: 16px;
  }
  .tab-nav .tab-btn {
    padding: 8px 16px;
    font-size: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .input-field {
    padding: 0 8px;
    font-size: 16px;
  }
  .selection-group {
    flex-direction: column;
    gap: 8px;
  }
  .selection-group .select-box {
    padding: 10px 12px;
    font-size: 14px;
  }
  .premium-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .btn-next, .receipt-card-footer .btn-home,
  .btn-submit,
  .btn-home {
    width: 100%;
    margin-top: 24px;
    padding: 8px 16px;
  }
  .guest-row {
    flex-wrap: wrap;
    gap: 16px;
  }
  .guest-row .guest-type {
    flex: 1 1 48%;
  }
  .guest-row .separator {
    display: none;
  }
  .guest-row .guest-options {
    flex: 1 1 100%;
    justify-content: flex-start;
    margin-top: 16px;
    padding-left: 0;
  }
  .receipt-card {
    padding: 24px 16px;
    background-color: transparent;
  }
  .receipt-card .receipt-header h4 {
    font-size: 20px;
  }
  .receipt-card .receipt-price h3 {
    font-size: 28px;
  }
  .receipt-card .receipt-details {
    padding: 24px 0;
  }
  .receipt-card .receipt-details {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }
  .receipt-card-footer {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .receipt-card-footer .receipt-card-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
@keyframes fadeInInput {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tel-input,
.email-input {
  animation: fadeInInput 0.3s ease-out forwards !important;
  margin: 8px 0 16px 0;
  transition: border-color all 0.3s ease;
}

.date-input,
.time-select,
.location-input {
  transition: opacity 0.5s ease, background-color 0.5s ease, filter 0.5s ease, border-color 0.5s ease;
  opacity: 1;
  filter: grayscale(0%);
}
.date-input:disabled,
.time-select:disabled,
.location-input:disabled {
  opacity: 0.5;
  background-color: #f8f6f4;
  filter: grayscale(100%);
  cursor: not-allowed;
  border-color: #a3a3a3;
}

.address-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.location-input {
  background-image: url("../assets/icons/search.svg");
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: right 16px center;
  padding-right: 48px !important;
}/*# sourceMappingURL=contact.css.map */