﻿.reservations-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: left;
}

.reservations-header-secondary-color {
    background-color: var(--secondary-color);
    color: white;
    text-align: left;
}

    .reservations-header li{
        font-size: 1.25rem;
    }

    /* header-inner arranges text and image; stacks on small screens */
    .reservations-header .header-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .reservations-header .header-text {
        flex: 1 1 0; /* flex-grow: 1, flex-shrink: 1, flex-basis: 0 */
        width: 100%;
        text-align: center; /* overridden on larger screens */
        padding: 0 0.5rem;
    }

    .reservations-header .header-media {
        flex: 1 1 0; /* flex-grow: 1, flex-shrink: 1, flex-basis: 0 */
    }

    .reservations-header .header-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.party-reservations-header {
    background-color: var(--primary-color);
}

    .party-reservations-header .ijsbaan-container {
        display: flex;
        gap: 4rem;
        align-items: center;
    }

    .party-reservations-header .ijsbaan-content {
        flex: 1;
    }

    .party-reservations-header .ijsbaan-slider {
        flex: 3;
    }

    .party-reservations-header .section-title {
        text-align: left;
        color: var(--secondary-color);
    }

    .party-reservations-header p {
        font-size: 1.25rem;
        /*line-height: 1.6;*/
        color: var(--secondary-color);
        margin-bottom: 2rem;
    }

    .party-reservations-header .ktlbtn-white {
        color: var(--secondary-color)
    }

.voorwaarden-link {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--secondary-color);
    text-align: center;
}

    .voorwaarden-link a {
        color: var(--secondary-color);
    }

.privacy-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    color: var(--primary-color);
    text-decoration: underline;
    display: inline;
}

@media (max-width: 768px) {
    .party-reservations-header .ijsbaan-container {
        flex-direction: column;
        gap: 2rem;
    }

    .party-reservations-header .ijsbaan-content {
        text-align: center;
    }

    .party-reservations-header .section-title {
        text-align: center;
    }

    .party-reservations-header .ijsbaan-slider {
        width: 100%;
        height: 400px;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .party-reservations-header {
        padding: 2rem 0;
    }

        .party-reservations-header .ijsbaan-slider {
            height: 300px;
            overflow: hidden;
        }
}

/* White section directly under header */
.reservation-info-section {
    background-color: white;
    padding: 1.5rem 0;
    color: var(--secondary-color);
}

/* modern card-style block with specified font color (#666) */
.reservation-info-block {
    max-width: 880px;
    margin: 0 auto;
    font-size: 1rem;
    /*/*line-height: 1.6;*/*/
    color: #666; /* explicit font color requested */
    text-align: left;
    padding: 1.25rem 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(16, 36, 36, 0.06);
    border: 1px solid rgba(16,36,36,0.04);
}

    .reservation-info-block .lead {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #444;
    }

    .reservation-info-block p {
        margin: 0.55rem 0;
    }

    .reservation-info-block h4 {
        margin-top: 1rem;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--primary-color);
    }

.reservation-steps {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0 0;
}

    .reservation-steps li {
        margin: 0.65rem 0;
        padding-left: 1.6rem;
        position: relative;
        font-size: 0.98rem;
    }

        .reservation-steps li::before {
            content: "\2192"; /* arrow */
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary-color);
            font-weight: 700;
            transform: translateY(0);
        }

/* subtle divider for clarity on larger screens */
.reservation-info-block + .note {
    margin-top: 0.75rem;
}

/* Ensure good mobile spacing */
@media (max-width: 576px) {
    .reservation-info-block {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .reservation-steps li {
        padding-left: 1.2rem;
    }
}

.submission-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.submission-spinner-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Larger screens: place image to the right of text */
@media (min-width: 992px) {
    .reservations-header .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .reservations-header .header-text {
        text-align: left;
        padding-right: 1.5rem;
    }
}

.loader-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 6px solid rgba(0,0,0,0.08);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    margin-top: 0.75rem;
    color: #444;
    font-weight: 600;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group .valid.modified {
        outline: 1px solid var(--primary-color);
    }
    /* New visual row styling */
    .form-row-card {
        /* background: linear-gradient(180deg, #ffffff, #fbfcfd);
        border: 1px solid rgba(16, 36, 36, 0.04); */
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1.25rem;
        /* box-shadow: 0 6px 18px rgba(16, 36, 36, 0.04);
        transition: box-shadow 180ms ease, transform 180ms ease; */
    }

    /* subtle alternating tint between adjacent form rows to make the separation more visible */
    .form-row-card:nth-of-type(even) {
        background: linear-gradient(180deg, #fbfcfd, #f7fafb);
    }

    /* .form-row-card:hover {
            box-shadow: 0 10px 28px rgba(16, 36, 36, 0.06);
            transform: translateY(-2px);
        } */

    /* vertical divider between columns for clarity on larger screens */
    .form-row-card > .col-md-5 + .col-md-5 {
        border-left: 1px solid rgba(16, 36, 36, 0.04);
        padding-left: 1.25rem;
    }

    /* slightly lift each individual form control to look like separate fields */
    .form-row-card .form-group {
        background: transparent;
        padding: 0;
    }

    /* make inputs full-width and aligned visually */
    .form-row-card .form-control,
    .form-row-card .form-select,
    .form-row-card textarea {
        width: 100%;
        background: #fff;
        border-radius: 6px;
        border: 1px solid rgba(16, 36, 36, 0.08);
        padding: 0.5rem 0.625rem;
        box-shadow: none;
    }

/* Responsive: remove divider and reduce padding on small screens */
@media (max-width: 768px) {
    .form-row-card > .col-md-5 + .col-md-5 {
        border-left: none;
        padding-left: 0;
    }

    .form-row-card {
        padding: 0.75rem;
    }
}

.selection-card {
    border-radius: 10px;
}

    .selection-card .card-title {
        color: var(--secondary-color);
    }

    .selection-card .muted {
        color: #6c757d;
    }

.price-panel .price-amount {
    color: var(--secondary-color);
    font-weight: 600;
}

.price-panel .total-amount {
    color: var(--secondary-color);
    font-weight: 600;
}
/* rely on Bootstrap grid for responsiveness */
.selection-card .card-body {
    padding: 1rem;
}

.price-row {
    gap: 1rem;
}

.price-block {
    min-width: 120px;
}

    .price-block .price-amount {
        font-size: 1.125rem;
        font-weight: 600;
    }

    .price-block .total-amount {
        font-size: 1.125rem;
        font-weight: 600;
    }


/*reservaties agenda */
.mini-calendar {
    border: 1px solid #e6e6e6;
    padding: 0.5rem;
    border-radius: 6px;
    display: block; /* reduced inline-block appearance for layout */
    width: 100%;
}

.mini-calendar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.mini-calendar-month {
    font-weight: 600;
    text-transform: capitalize;
}

.mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 2rem);
    gap: 4px;
    justify-content: center;
}

.mini-calendar-weekday {
    font-size: 0.7rem;
    text-align: center;
    color: #666;
}

.mini-calendar-day {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: default;
}

    .mini-calendar-day.muted {
        opacity: 0.45;
    }

    .mini-calendar-day.available {
        cursor: pointer;
        border: 1px solid transparent;
        background: #BEF1F0;
    }

        .mini-calendar-day.available:hover {
            transform: translateY(-2px);
            border-color: #cbeed6;
        }

    .mini-calendar-day.selected {
        background: var(--primary-color);
        border: 1px solid var(--primary-color);
        color: white;
    }

    .mini-calendar-day .day-number {
        font-size: 0.85rem;
    }