@font-face {
    font-family: "DomaineSansText";
    src: url("/fonts/domaine/DomaineSansTextBlack.ttf") format("truetype");
    font-weight: 900;
    /* Black */
    font-style: normal;
    /* Regular */
}

@font-face {
    font-family: "DomaineSansText";
    src: url("/fonts/domaine/DomaineSansTextRegular.ttf") format("truetype");
    font-weight: 400;
    /* Black */
    font-style: normal;
    /* Regular */
}

@font-face {
    font-family: "DomaineSansText";
    src: url("/fonts/domaine/DomaineSansTextBlackItalic.otf") format("opentype");
    font-weight: 900;
    /* Black */
    font-style: italic;
    /* Italic */
}

@font-face {
    font-family: "DomaineSansText";
    src: url("/fonts/domaine/DomaineSansTextLight.ttf") format("truetype");
    font-weight: 300;
    /* Light */
    font-style: normal;
    /* Regular */
}

@font-face {
    font-family: "DomaineSansText";
    src: url("/fonts/domaine/DomaineSansTextLightItalic.ttf") format("truetype");
    font-weight: 300;
    /* Light */
    font-style: italic;
    /* Italic */
}

@font-face {
    font-family: "DomaineSansText";
    src: url("/fonts/domaine/DomaineSansTextMedium.ttf") format("truetype");
    font-weight: 500;
    /* Medium */
    font-style: normal;
    /* Regular */
}

* {
    font-family: "DomaineSansText", "Montserrat", "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 0;
    color: black;
}

/* Container */
.container {
    width: 100%;
    max-width: min(1600px, 90vw);
    margin: 0 auto;
}

.booking-wrapper {
    width: 100%;
}

/* --- Keep Venue Header Styles --- */
.venue-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ec8658, #f7b199);
    color: #fff;
    padding: 1.5rem 2rem;
}

.venue-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.venue-name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.venue-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.venue-detail-item .icon {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

@media (max-width: 768px) {
    .venue-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .venue-logo {
        width: 60px;
        height: 60px;
    }

    .venue-name {
        font-size: 1.5rem;
    }

    .venue-detail-item {
        font-size: 0.95rem;
    }
}

/* --- Form Styles --- */
form {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    width: 100%;
    max-width: 920px;
    margin: auto;
}

.two-columns {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.two-columns>div {
    width: 50%;
}

label {
    font-size: 13px;
    letter-spacing: .65px;
    margin-bottom: 9px;
    padding-left: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-input,
textarea.form-input {
    font-size: 15px;
    letter-spacing: .45px;
    line-height: 28px;
    margin-bottom: 30px;
    padding-left: 10px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    font-weight: 300;
    outline: transparent;
    width: 100%;
}

textarea.form-input {
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 8px;
    line-height: 22px;
    padding: 10px;
    height: 66px;
    margin-top: 5px;
}

.form-input:focus,
textarea.form-input:focus {
    outline: none;
    /* border-color: #ec8658;
    box-shadow: 0 0 0 3px rgba(236, 134, 88, 0.15); */
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
}

.custom-select-selected {
    font-size: 15px;
    letter-spacing: .45px;
    line-height: 28px;
    margin-bottom: 30px;
    padding-left: 10px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    font-weight: 300;
    outline: transparent;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE/Edge */
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.custom-select-option {
    padding: 0.75rem 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-align: center;
    font-size: 15px;
     user-select: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none;     /* IE/Edge */
}

.custom-select-wrapper.open .custom-select-options {
    display: block;
}

/* Time Slots */
.time-slot {
    flex: 0 0 auto;
    padding: 8px 15px;
    border: 1px solid black;
    background: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: black;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.time-slot:hover {
    border-color: black;
    background: black;
    color: #fff;
}

.time-slot.active {
    border-color: black;
    background: black;
    color: #fff;
    font-weight: 500;
}

/* Buttons */
.submit-button,
.canceled-notice {
    background: #ec8658;
    color: #fff;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: 11px;
    height: 36px;
    line-height: 16px;
    min-width: 160px;
    padding: 0 88px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 10px 10px 20px #0000001A;
    margin: 18px auto 0;
}

.canceled-notice {
    background: white;
    color: black;
    border: 1px solid black;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-button:active {
    transform: translateY(0);
}

/* Info Box */
.info-box {
    min-height: 17px;
    font-size: 13px;
    width: 50%;
    margin: auto;
    text-align: center;
    margin-bottom: 10px;
}

/* Radio Buttons */
.form-radio {
    height: 34px;
    display: flex;
    border-radius: 17px;
    overflow: hidden;
}

.form-radio input {
    height: 0;
    visibility: hidden;
    width: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

.form-radio label {
    align-items: center;
    background-color: #fecbac;
    color: hsla(0, 0%, 100%, .4);
    cursor: pointer;
    display: flex;
    font-size: 11px !important;
    height: 34px;
    justify-content: center;
    margin: 0 !important;
    padding: 0 20px !important;
    text-shadow: 10px 10px 20px rgba(144, 122, 70, .4);
    -webkit-tap-highlight-color: transparent;
}

.form-group {
    position: relative;
}

.form-radio input:checked+label {
    background-color: #ec8759;
    color: #fff;
    border-radius: 50px;
}

.radio-group {
    background-color: #fecbac;
    border-radius: 50px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .102);
    display: flex;
    margin-left: 15px;
    width: fit-content;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(57, 57, 57, 0.15) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: #ec8658 !important;
    border-color: #ec8658 !important;
    color: #fff !important;
}

/* Responsive */
@media (max-width: 640px) {
    .venue-name {
        font-size: 1.5rem;
    }
}

.smoking-preference {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    margin-top: -6px;
}

.smoking-preference label {
    margin-bottom: 0;
}


.alert {
    display: none;
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    position: sticky;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.alert-error {
    background-color: #ffe4e4;
    color: #b20000;
    border: 1px solid #ffb3b3;
}

.alert-success {
    background-color: #e9ffe9;
    color: #006600;
    border: 1px solid #a8e6a8;
}

.form-note {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: black;
    background-color: transparent;
    pointer-events: none;
    /* lets user click input freely */
    transition: opacity 0.2s ease;
    margin-top: -5px;
}

.form-note.hidden {
    opacity: 0;
    visibility: hidden;
}

.icon-angle-down {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* icon won’t block clicks */
    color: black;
    transition: transform 0.2s ease;
}

.custom-select-wrapper.open .icon-angle-down {
    transform: translateY(-50%) rotate(180deg);
}

.disclaimer {
    width: 50%;
    margin: auto;
    font-size: 10px;
    text-align: center;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.6);
}

.open #arrival-times.custom-select-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.custom-select-wrapper.open .custom-select-options.guest-options {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
    max-height: 300px;
    overflow-y: auto;
}

.active {
    font-weight: 700;
}

.error-field {
    border-color: #CE0232 !important;
    color: #CE0232 !important;
}

.error-field::placeholder {
    color: #CE0232 !important;
}

.iti input.error-field {
    border-color: #CE0232 !important;
}

.iti {
    display: block !important;
    margin-bottom: 30px !important;

}

.iti__search-input {
    font-size: 15px !important;
    letter-spacing: .45px !important;
    line-height: 35px !important;
}

.main-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 50px;
    color: black;
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
}

.section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.section-icon {
    color: #f97316;
    flex-shrink: 0;
}

.submit-link {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

.submit-link button {
    margin: 0;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 58px;
}

.field-row {
    display: flex;
    gap: 12px;
    font-size: 13px;
    letter-spacing: -0.6px;
    line-height: normal;
}

.field-label {
    font-weight: 400;
    color: black;
}

.field-value {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    word-break: break-word;
}

.custom-select-selected.error-field~.icon-angle-down {
    display: none;
}

html {
    display: flex;
    flex-direction: column;
}

.location-options {
    padding: 10px 20px;
}

.location-options .custom-select-option {
    text-align: left;
    padding: 10px;
}

.location-options .custom-select-option:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.phone-value {
    color: rgba(0, 0, 0, 0.5) !important;
    pointer-events: none !important;
    -webkit-touch-callout: none !important;
    text-decoration: none !important;
    cursor: default !important;
}

@media screen and (max-width: 670px) {
    .two-columns {
        flex-direction: column;
        gap: 0;
    }

    .two-columns>div {
        width: 100%;
    }

    .disclaimer,
    .info-box {
        width: 90%;
    }


}