:root {
    --ocb-blue: #0057a8;
    --ocb-red: #d71920;
    --surface: #ffffff;
    --page-bg: #f3f6f8;
    --text: #172033;
}

body {
    min-height: 100vh;
    background: var(--page-bg);
    color: var(--text);
}

.page-shell {
    min-height: 100vh;
}

.site-banner {
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: 3rem 0;
    color: #ffffff;
    background-image: url("../img/banner-final-a4.jpg");
    background-size: cover;
    background-position: center;
/*>    background:
        linear-gradient(90deg, rgba(0, 43, 91, .95), rgba(0, 87, 168, .72)),
        url("../img/banner-final-a4.jpg") center / cover no-repeat;
        */
}

.banner-content {
    max-width: 760px;
}

.banner-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
}

.text-primary {
    color: var(--ocb-blue) !important;
}

.btn-primary {
    --bs-btn-bg: var(--ocb-blue);
    --bs-btn-border-color: var(--ocb-blue);
    --bs-btn-hover-bg: #004987;
    --bs-btn-hover-border-color: #004987;
}

.reservation-card,
.info-panel,
.confirmation,
.login-box,
.admin-table {
    border-radius: 8px;
    background: var(--surface);
}

.zone-list li + li {
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid #e4e9ef;
}

.form-label {
    font-weight: 700;
}

.legal-check {
    padding: 1rem 1rem 1rem 2.75rem;
    border: 1px solid #d9e2ec;
    border-radius: 8px;
    background: #f8fafc;
}

.legal-check .form-check-input {
    margin-left: -1.75rem;
}

.legal-check .form-check-label {
    font-size: .92rem;
    line-height: 1.45;
}

.confirmation,
.login-box {
    max-width: 620px;
}

.table th {
    white-space: nowrap;
}

.image-zoom-link {
    display: block;
    cursor: zoom-in;
}

.image-zoom-link img {
    display: block;
    width: 100%;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.image-lightbox:target {
    display: flex;
}

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 28, .86);
}

.image-lightbox img {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 96vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}

.image-lightbox__close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .24);
}
