body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.reservering {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-image: url('https://www.vissermediadesign.nl/assets/files/header-livestream-1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.reservering::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.reservering-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    background: #333333; /* Dark gray corners */
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

.reservering-card-inner {
    background-color: #B2D83D; /* The light green color from image */
    width: 100%;
    clip-path: polygon(50% 0, 100% 12%, 100% 88%, 50% 100%, 0 88%, 0 12%);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #111;
    font-family: nimbus-bld, Arial, sans-serif;
    text-align: center;
}

.reservering-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff; /* or whatever background it has */
    margin-bottom: 20px;
    object-fit: contain;
}

.reservering-card-inner h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.reservering-capacity {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.reservering-subtitle {
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.reservering-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.reservering-form span,
.reservering-form label {
    font-size: 0.78rem;
    color: #1a1f10;
    text-align: left;
    margin-bottom: -6px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.reservering-form input[type="text"],
.reservering-form input[type="email"],
.reservering-form input[type="tel"] {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
    background: #f9ffe9;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 16px rgba(17, 17, 17, 0.12);
    height: 44px;
    padding: 0 12px;
    font-family: nimbus-reg, Arial, sans-serif;
    font-size: 1rem;
    color: #1d2310;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

.reservering-form input::placeholder {
    color: #788266;
}

.reservering-form input:focus {
    outline: none;
    border-color: #2c3a10;
    box-shadow: 0 0 0 3px rgba(44, 58, 16, 0.2), 0 8px 18px rgba(17, 17, 17, 0.18);
    transform: translateY(-1px);
}

.reservering-form input[aria-invalid="true"] {
    border-color: #7a1e1e;
    box-shadow: 0 0 0 3px rgba(122, 30, 30, 0.2), 0 8px 18px rgba(17, 17, 17, 0.18);
}

.verify-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
}

.verify-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.verify-col span,
.verify-col label {
    margin-bottom: 5px;
}

.verify-input {
    height: 44px;
    border: 2px solid #2f3a1a !important;
    border-radius: 10px;
    background: #f9ffe9 !important;
    color: #1d2310 !important;
    -webkit-text-fill-color: #1d2310;
    caret-color: #1d2310;
    width: 100%;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-align: center;
    font-size: 1.05rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 16px rgba(17, 17, 17, 0.12);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.verify-input::placeholder {
    color: #788266;
    letter-spacing: 0.2em;
}

.verify-input:focus {
    outline: none;
    border-color: #1d2310 !important;
    box-shadow: 0 0 0 3px rgba(47, 58, 26, 0.2), 0 8px 18px rgba(17, 17, 17, 0.18);
    transform: translateY(-1px);
}

.verify-input:disabled {
    background: #eef4d8 !important;
    border-color: #a8b28a !important;
    color: #6f7a5a !important;
    -webkit-text-fill-color: #6f7a5a;
    box-shadow: none;
    cursor: not-allowed;
}

.active-input {
    animation: verifyPulse 1.1s ease-out;
}

@keyframes verifyPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(215, 239, 149, 0.45), 0 8px 18px rgba(17, 17, 17, 0.22);
    }
    100% {
        box-shadow: 0 0 0 14px rgba(215, 239, 149, 0), 0 8px 18px rgba(17, 17, 17, 0.22);
    }
}

.btn-stuur,
.btn-reserveer {
    position: relative;
    border: none;
    background-color: transparent;
    color: #1d2310;
    font-family: nimbus-bld, Arial, sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-stuur::after,
.btn-reserveer::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: #2f3a1a;
    transform: scaleX(1);
    transform-origin: left center;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), background-color 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-stuur {
    height: 44px;
    padding: 0 2px 10px;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
}

.btn-reserveer {
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    padding: 0 2px 12px;
    margin-top: 20px;
    align-self: center;
}

.btn-stuur:hover:not(:disabled),
.btn-reserveer:hover:not(:disabled) {
    color: #2f3a1a;
    transform: translateY(-1px);
}

.btn-stuur:hover:not(:disabled)::after,
.btn-reserveer:hover:not(:disabled)::after {
    background: #1d2310;
    transform: scaleX(1);
}

.btn-stuur:focus-visible,
.btn-reserveer:focus-visible {
    outline: 2px solid #2f3a1a;
    outline-offset: 2px;
}

.btn-stuur:disabled,
.btn-reserveer:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.btn-stuur:disabled::after,
.btn-reserveer:disabled::after {
    background: rgba(47, 58, 26, 0.5);
}

.form-alert {
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.form-alert-error {
    background: #4a1f1f;
    border: 1px solid #8a3b3b;
    color: #ffd9d9;
}

.form-field-hint {
    text-align: left;
    margin-top: -6px;
    margin-bottom: 2px;
    color: #2d331f;
    font-size: 0.78rem;
}

.form-field-error {
    text-align: left;
    margin-top: -4px;
    margin-bottom: 4px;
    color: #5a1111;
    font-size: 0.82rem;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .reservering {
        padding: 24px 14px;
    }

    .reservering-card {
        padding: 0;
    }

    .reservering-card-inner {
        padding: 40px 20px;
        clip-path: polygon(50% 0, 100% 8%, 100% 92%, 50% 100%, 0 92%, 0 8%);
    }

}
