@font-face {
    font-family: Bayon;
    src: url('/fonts/TheVenue/Bayon-Regular.ttf');
}

@font-face {
    font-family: GaretBook;
    src: url('/fonts/TheVenue/garet.book.ttf');
}

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

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    background: #fff;
    color: #121826;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.the-venue-page {
    width: 100%;
    min-height: 100vh;
    padding: 22px 26px 42px;
}

.the-venue-form-panel {
    width: 100%;
    max-width: none;
}

.the-venue-form-panel,
.the-venue-form {
    min-width: 0;
}

.the-venue-title {
    margin: 0 0 34px;
    color: #061326;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 10px;
    line-height: 1.15;
    text-wrap: balance;
    text-transform: uppercase;
    font-family: GaretBook;
}

.the-venue-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.the-venue-field-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.the-venue-field-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.the-venue-date-venue-row {
    align-items: end;
}

.the-venue-field {
    min-width: 0;
}

.the-venue-field label {
    display: block;
    margin: 0 0 4px;
    color: #121826;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.the-venue-field label span {
    margin-left: 4px;
    color: #8c8f96;
    font-size: 12px;
}

.the-venue-field input,
.the-venue-field select,
.the-venue-field textarea {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    border: 1px solid #aaa;
    border-radius: 0;
    background: #f8f8f8;
    color: #121826;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.3;
}

.the-venue-field input,
.the-venue-field select {
    padding: 8px 10px;
}

.the-venue-field select {
    overflow: hidden;
    padding-right: 36px;
    text-overflow: ellipsis;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #121826 50%), linear-gradient(135deg, #121826 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
}

.the-venue-field textarea {
    min-height: 100px;
    padding: 10px;
    resize: vertical;
}

.the-venue-field input:focus-visible,
.the-venue-field select:focus-visible,
.the-venue-field textarea:focus-visible {
    outline: none;
    border-color: #061326;
    box-shadow: 0 0 0 2px rgba(199, 171, 119, 0.28);
}

.the-venue-field.has-error input,
.the-venue-field.has-error select,
.the-venue-field.has-error textarea {
    border-color: #b42318;
    box-shadow: 0 0 0 1px rgba(180, 35, 24, 0.18);
}

.the-venue-error-message {
    display: none;
    margin-top: 5px;
    color: #b42318;
    font-size: 13px;
    line-height: 1.3;
}

.the-venue-field.has-error .the-venue-error-message {
    display: block;
}

.the-venue-error-summary {
    margin: 0 0 18px;
    padding: 10px 12px;
    border-left: 4px solid #b42318;
    background: #fff4f2;
    color: #7a1b13;
    font-size: 14px;
}

.the-venue-error-summary p {
    margin: 0 0 4px;
}

.the-venue-error-summary p:last-child {
    margin-bottom: 0;
}

.the-venue-submit-button {
    width: 138px;
    min-height: 54px;
    margin-top: 4px;
    border: 2px solid #111;
    border-radius: 2px;
    background: #fff;
    color: #061326;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    touch-action: manipulation;
    font-family: GaretBook;
}

.the-venue-submit-button:hover,
.the-venue-submit-button:focus-visible {
    background: #c7ab77;
    color: #fff;
    outline: none;
}

.the-venue-submit-button:focus-visible {
    box-shadow: 0 0 0 3px rgba(199, 171, 119, 0.35);
}

.the-venue-page-success {
    min-height: 240px;
    display: flex;
    align-items: center;
}

.the-venue-success-panel {
    max-width: 720px;
}

.the-venue-success-panel p {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .the-venue-page {
        padding: 20px 16px 34px;
    }

    .the-venue-title {
        margin-bottom: 26px;
        font-size: 30px;
        letter-spacing: 6px;
    }

    .the-venue-field-grid-two {
        grid-template-columns: 1fr;
    }

    .the-venue-form {
        gap: 16px;
    }
}

@media (max-width: 420px) {
    .the-venue-title {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .the-venue-submit-button {
        width: 100%;
    }
}
