/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* GV Website - full-width layout, no sidebar */

#blazor-error-ui[b-gf3z2zaav7] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-gf3z2zaav7] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-waahqnr8qu],
.components-reconnect-repeated-attempt-visible[b-waahqnr8qu],
.components-reconnect-failed-visible[b-waahqnr8qu],
.components-pause-visible[b-waahqnr8qu],
.components-resume-failed-visible[b-waahqnr8qu],
.components-rejoining-animation[b-waahqnr8qu] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-retrying[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-failed[b-waahqnr8qu],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-waahqnr8qu] {
    display: block;
}


#components-reconnect-modal[b-waahqnr8qu] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-waahqnr8qu 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-waahqnr8qu 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-waahqnr8qu 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-waahqnr8qu]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-waahqnr8qu 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-waahqnr8qu {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-waahqnr8qu {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-waahqnr8qu {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-waahqnr8qu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-waahqnr8qu] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-waahqnr8qu] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-waahqnr8qu] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-waahqnr8qu] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-waahqnr8qu] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-waahqnr8qu] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-waahqnr8qu 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-waahqnr8qu] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-waahqnr8qu {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/EngineeringContactPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-jgajirvk9l] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-jgajirvk9l] {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-jgajirvk9l] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-jgajirvk9l 1s ease-in-out;
}

/* ── CONTACT SECTIE ── */
.gv-content-section[b-jgajirvk9l] {
    padding: 40px 30px;
}

.gv-content-contact[b-jgajirvk9l] {
    background-color: #f5f5f5;
    color: black;
}

.gv-contact-container[b-jgajirvk9l] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── CONTACT INFO ── */
.gv-contact-info h2[b-jgajirvk9l] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.gv-contact-text[b-jgajirvk9l] {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.gv-contact-item[b-jgajirvk9l] {
    margin-bottom: 30px;
}

.gv-contact-item h3[b-jgajirvk9l] {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.gv-contact-item p[b-jgajirvk9l] {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0 1rem;
}

.gv-contact-item a[b-jgajirvk9l] {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gv-contact-item a:hover[b-jgajirvk9l] {
    color: #D2B48C;
}

/* ── GOOGLE MAPS ── */
.gv-contact-map[b-jgajirvk9l] {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gv-contact-map iframe[b-jgajirvk9l] {
    display: block;
}

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-jgajirvk9l {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .gv-contact-container[b-jgajirvk9l] {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gv-contact-map[b-jgajirvk9l] {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gv-hero-content h1[b-jgajirvk9l] {
        font-size: 30px;
    }

    .gv-content-section[b-jgajirvk9l] {
        padding: 50px 25px;
    }

    .gv-contact-info h2[b-jgajirvk9l] {
        font-size: 2rem;
    }

    .gv-contact-map[b-jgajirvk9l] {
        height: 300px;
    }
}
/* /Components/Pages/EngineeringPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-ojr8548ag8] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-ojr8548ag8] {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-ojr8548ag8] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-ojr8548ag8 1s ease-in-out;
}

/* ── INHOUD ── */
.gv-content-section[b-ojr8548ag8] {
    padding: 40px 30px;
}

.gv-content-engineering[b-ojr8548ag8] {
    background-color: var(--gv-engineering);
    color: black;
}

.gv-content-hotel[b-ojr8548ag8] {
    background-color: var(--gv-hotel);
    color: black;
}

.gv-content-inner[b-ojr8548ag8] {
    max-width: 1400px;
    margin: 0 auto;
}

.gv-content-inner h2[b-ojr8548ag8] {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.gv-content-inner p[b-ojr8548ag8] {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* ── CONTACT KNOP ── */
.gv-contact-button-container[b-ojr8548ag8] {
    margin-top: 40px;
    text-align: center;
}

.gv-contact-button[b-ojr8548ag8] {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gv-contact-button:hover[b-ojr8548ag8] {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Footer stijlen staan in GvFooter.razor.css */

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-ojr8548ag8 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gv-hero-content h1[b-ojr8548ag8] {
        font-size: 30px;
    }

    .gv-content-section[b-ojr8548ag8] {
        padding: 50px 25px;
    }
}
/* /Components/Pages/HomePage.razor.rz.scp.css */
/* CSS variables are defined globally in app.css */


.gv-loading[b-9gt9kal8a0] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* Header en navigatie stijlen staan in NavMenu.razor.css */

/* ── HERO ── */
.gv-hero[b-9gt9kal8a0] {
    height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-9gt9kal8a0] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    animation: gvFadeIn-b-9gt9kal8a0 1s ease-in-out;
    color: white;
}

/* Option 2: Rough scissor cut edges */
.gv-hero-content img[b-9gt9kal8a0] {
    margin-bottom: 20px;
    width: 400px;
    transform: rotate(-8deg);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
    clip-path: polygon( 2% 0%, 5% 1%, 8% 0%, 12% 2%, 15% 1%, 20% 0%, 25% 1%, 30% 0%, 35% 2%, 40% 0%, 45% 1%, 50% 0%, 55% 2%, 60% 0%, 65% 1%, 70% 0%, 75% 2%, 80% 1%, 85% 0%, 90% 1%, 95% 0%, 98% 1%, 100% 3%, 100% 97%, 98% 99%, 95% 98%, 90% 100%, 85% 99%, 80% 100%, 75% 98%, 70% 100%, 65% 99%, 60% 100%, 55% 98%, 50% 100%, 45% 99%, 40% 100%, 35% 98%, 30% 100%, 25% 99%, 20% 100%, 15% 99%, 10% 100%, 5% 99%, 2% 100%, 0% 97% );
}

.gv-hero-buttons[b-9gt9kal8a0] {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.gv-btn[b-9gt9kal8a0] {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
    color: black;
}

.gv-btn:hover[b-9gt9kal8a0] {
    transform: scale(1.05);
    color: black;
}

.gv-btn-engineering[b-9gt9kal8a0] {
    background-color: var(--gv-engineering);
}

.gv-btn-hotel[b-9gt9kal8a0] {
    background-color: var(--gv-hotel);
}

/* ── SPLIT BLOKKEN ── */
.gv-split[b-9gt9kal8a0] {
    display: flex;
    flex-wrap: wrap;
}

.gv-block[b-9gt9kal8a0] {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.gv-block.visible[b-9gt9kal8a0] {
    opacity: 1;
    transform: translateY(0);
}

.gv-block:hover[b-9gt9kal8a0] {
    transform: scale(1.03);
}

.gv-engineering[b-9gt9kal8a0] {
    background-color: var(--gv-engineering);
    color: black;
}

.gv-hotel[b-9gt9kal8a0] {
    background-color: var(--gv-hotel);
    color: black;
}

.gv-block h2[b-9gt9kal8a0] {
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.gv-block-btn[b-9gt9kal8a0] {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.15);
    color: black;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.gv-block-btn:hover[b-9gt9kal8a0] {
    background-color: rgba(0, 0, 0, 0.3);
    color: black;
}

/* Footer stijlen staan in GvFooter.razor.css */

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-9gt9kal8a0 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gv-hero-content h1[b-9gt9kal8a0] {
        font-size: 30px;
    }
}
/* /Components/Pages/HotelAvailabilityPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-yguzbt3tmh] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-yguzbt3tmh] {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-availability-hero[b-yguzbt3tmh] {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), linear-gradient(135deg, var(--gv-hotel), #3d6470);
}

.gv-hero-content h1[b-yguzbt3tmh] {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-yguzbt3tmh 1s ease-in-out;
}

/* ── SECTIES ── */
.gv-content-section[b-yguzbt3tmh] {
    padding: 40px 30px;
}

.gv-content-hotel[b-yguzbt3tmh] {
    background-color: var(--gv-hotel);
    color: black;
}

.gv-content-inner[b-yguzbt3tmh] {
    max-width: 1400px;
    margin: 0 auto;
}

.gv-content-inner h2[b-yguzbt3tmh] {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.gv-content-inner p[b-yguzbt3tmh] {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* ── ZOEKFORMULIER ── */
.gv-availability-form[b-yguzbt3tmh] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    margin-top: 24px;
}

.gv-availability-field[b-yguzbt3tmh] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gv-availability-field label[b-yguzbt3tmh] {
    font-weight: 600;
    font-size: 0.95rem;
}

.gv-availability-input[b-yguzbt3tmh] {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
    color: #1a1a1a;
    min-width: 180px;
}

.gv-availability-field-action[b-yguzbt3tmh] {
    justify-content: flex-end;
}

.gv-availability-button[b-yguzbt3tmh] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gv-availability-button:hover:not(:disabled)[b-yguzbt3tmh] {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.gv-availability-button:disabled[b-yguzbt3tmh] {
    opacity: 0.7;
    cursor: not-allowed;
}

.gv-availability-error[b-yguzbt3tmh] {
    margin-top: 16px;
    padding: 12px 16px;
    background-color: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 6px;
    color: #7a1620;
    font-weight: 500;
}

/* ── RESULTATEN ── */
.gv-availability-results[b-yguzbt3tmh] {
    background-color: #f5f5f5;
}

.gv-availability-results-inner[b-yguzbt3tmh] {
    max-width: 1200px;
    margin: 0 auto;
}

.gv-availability-results-title[b-yguzbt3tmh] {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
}

.gv-availability-empty[b-yguzbt3tmh] {
    text-align: center;
    background-color: white;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gv-availability-empty h3[b-yguzbt3tmh] {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.gv-availability-empty p[b-yguzbt3tmh] {
    margin-bottom: 24px;
    color: #444;
}

/* ── KAMER KAARTEN ── */
.gv-availability-grid[b-yguzbt3tmh] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gv-room-card[b-yguzbt3tmh] {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gv-room-card:hover[b-yguzbt3tmh] {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.gv-room-card.expanded[b-yguzbt3tmh] {
    grid-column: 1 / -1;
}

.gv-room-card-media[b-yguzbt3tmh] {
    position: relative;
    height: 220px;
    background-color: #e3e3e3;
}

.gv-room-card-media img[b-yguzbt3tmh] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gv-room-card-noimage[b-yguzbt3tmh] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-style: italic;
}

.gv-room-card-badge[b-yguzbt3tmh] {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #2e7d32;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.gv-room-card-body[b-yguzbt3tmh] {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gv-room-card-title[b-yguzbt3tmh] {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.gv-room-card-meta[b-yguzbt3tmh] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    color: #555;
    font-size: 0.9rem;
}

.gv-room-card-meta span[b-yguzbt3tmh] {
    display: inline-flex;
    align-items: center;
}

.gv-room-card-text[b-yguzbt3tmh] {
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.gv-room-card-text-full[b-yguzbt3tmh] {
    flex: none;
}

/* ── GALERIJ ── */
.gv-room-gallery[b-yguzbt3tmh] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.gv-room-gallery img[b-yguzbt3tmh] {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gv-room-gallery img:hover[b-yguzbt3tmh] {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── VOORZIENINGEN ── */
.gv-room-amenities[b-yguzbt3tmh] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.gv-room-amenities li[b-yguzbt3tmh] {
    background-color: var(--gv-hotel);
    color: white;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.82rem;
}

/* ── BESCHIKBAARHEIDSPERIODES ── */
.gv-room-availability-periods[b-yguzbt3tmh] {
    margin: 20px 0;
    padding: 16px;
    background-color: #f0f4f5;
    border-radius: 8px;
    border-left: 4px solid var(--gv-hotel);
}

.gv-room-availability-periods h4[b-yguzbt3tmh] {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #1a1a1a;
}

.gv-availability-table[b-yguzbt3tmh] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gv-availability-row[b-yguzbt3tmh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.gv-availability-dates[b-yguzbt3tmh] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.gv-availability-date[b-yguzbt3tmh] {
    font-weight: 600;
    color: #2c5963;
    font-size: 0.95rem;
}

.gv-availability-separator[b-yguzbt3tmh] {
    color: #888;
    font-size: 1.2rem;
}

.gv-availability-count[b-yguzbt3tmh] {
    display: flex;
    align-items: center;
}

.gv-count-badge[b-yguzbt3tmh] {
    background-color: #2e7d32;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── BOEKINGSINFO ── */
.gv-room-booking-info[b-yguzbt3tmh] {
    background-color: #f0f4f5;
    border-left: 4px solid var(--gv-hotel);
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.gv-room-booking-info h4[b-yguzbt3tmh] {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.gv-room-booking-info p[b-yguzbt3tmh] {
    margin: 0 0 12px;
    color: #444;
}

.gv-room-booking-contact[b-yguzbt3tmh] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.gv-room-booking-contact a[b-yguzbt3tmh] {
    color: #2c5963;
    text-decoration: none;
}

.gv-room-booking-contact a:hover[b-yguzbt3tmh] {
    text-decoration: underline;
}

.gv-room-booking-link[b-yguzbt3tmh] {
    display: inline-block;
    padding: 9px 18px;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.gv-room-booking-link:hover[b-yguzbt3tmh] {
    background-color: #333;
    color: white;
}

/* ── TOGGLE KNOP ── */
.gv-room-card-toggle[b-yguzbt3tmh] {
    margin-top: auto;
    align-self: flex-start;
    background: none;
    border: 2px solid var(--gv-hotel);
    color: #2c5963;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gv-room-card-toggle:hover[b-yguzbt3tmh] {
    background-color: var(--gv-hotel);
    color: white;
}

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-yguzbt3tmh {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes gvZoomIn-b-yguzbt3tmh {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── LIGHTBOX ── */
.gv-lightbox-overlay[b-yguzbt3tmh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    animation: gvFadeIn-b-yguzbt3tmh 0.2s ease;
}

.gv-lightbox-modal[b-yguzbt3tmh] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: gvZoomIn-b-yguzbt3tmh 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-lightbox-content[b-yguzbt3tmh] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-lightbox-image[b-yguzbt3tmh] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gv-lightbox-close[b-yguzbt3tmh] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 1002;
}

.gv-lightbox-close:hover[b-yguzbt3tmh] {
    background-color: white;
    transform: scale(1.1);
}

.gv-lightbox-counter[b-yguzbt3tmh] {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 1002;
}

.gv-lightbox-button[b-yguzbt3tmh] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #1a1a1a;
    font-size: 28px;
    line-height: 1;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    z-index: 1002;
}

.gv-lightbox-button:hover[b-yguzbt3tmh] {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.gv-lightbox-prev[b-yguzbt3tmh] {
    left: 16px;
}

.gv-lightbox-next[b-yguzbt3tmh] {
    right: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gv-hero-content h1[b-yguzbt3tmh] {
        font-size: 30px;
    }

    .gv-content-section[b-yguzbt3tmh] {
        padding: 40px 20px;
    }

    .gv-availability-form[b-yguzbt3tmh] {
        flex-direction: column;
        align-items: stretch;
    }

    .gv-availability-input[b-yguzbt3tmh] {
        width: 100%;
    }

    .gv-availability-button[b-yguzbt3tmh] {
        width: 100%;
        justify-content: center;
    }

    /* Lightbox responsive */
    .gv-lightbox-modal[b-yguzbt3tmh] {
        max-width: 95vw;
        max-height: 85vh;
        border-radius: 6px;
    }

    .gv-lightbox-button[b-yguzbt3tmh] {
        padding: 10px 12px;
        font-size: 22px;
    }

    .gv-lightbox-prev[b-yguzbt3tmh] {
        left: 8px;
    }

    .gv-lightbox-next[b-yguzbt3tmh] {
        right: 8px;
    }

    .gv-lightbox-close[b-yguzbt3tmh] {
        width: 36px;
        height: 36px;
        font-size: 28px;
        top: 8px;
        right: 8px;
    }

    .gv-lightbox-counter[b-yguzbt3tmh] {
        font-size: 0.8rem;
        padding: 6px 12px;
        bottom: 12px;
    }
}

@media (max-width: 600px) {
    /* Availability periods responsive */
    .gv-availability-row[b-yguzbt3tmh] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gv-availability-dates[b-yguzbt3tmh] {
        width: 100%;
    }

    .gv-availability-count[b-yguzbt3tmh] {
        width: 100%;
    }
}
/* /Components/Pages/HotelContactPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-j294ushkz0] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-j294ushkz0] {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-j294ushkz0] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 0;
    animation: gvFadeIn-b-j294ushkz0 1s ease-in-out;
}

/* ── CONTACT SECTIE ── */
.gv-content-section[b-j294ushkz0] {
    padding: 40px 30px;
}

.gv-content-contact[b-j294ushkz0] {
    background-color: #f5f5f5;
    color: black;
}

.gv-contact-container[b-j294ushkz0] {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ── CONTACT INFO ── */
.gv-contact-info h2[b-j294ushkz0] {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.gv-contact-text[b-j294ushkz0] {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.gv-contact-item[b-j294ushkz0] {
    margin-bottom: 30px;
}

    .gv-contact-item h3[b-j294ushkz0] {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: #333;
    }

    .gv-contact-item p[b-j294ushkz0] {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0 0 0 1rem;
    }

    .gv-contact-item a[b-j294ushkz0] {
        color: #1a1a1a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .gv-contact-item a:hover[b-j294ushkz0] {
            color: #ADD8E6;
        }

/* ── GOOGLE MAPS ── */
.gv-contact-map[b-j294ushkz0] {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .gv-contact-map iframe[b-j294ushkz0] {
        display: block;
    }



/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-j294ushkz0 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .gv-contact-container[b-j294ushkz0] {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gv-contact-map[b-j294ushkz0] {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gv-hero-content h1[b-j294ushkz0] {
        font-size: 30px;
    }

    .gv-content-section[b-j294ushkz0] {
        padding: 50px 25px;
    }

    .gv-contact-info h2[b-j294ushkz0] {
        font-size: 2rem;
    }

    .gv-contact-map[b-j294ushkz0] {
        height: 300px;
    }
}
/* /Components/Pages/HotelPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-efsg5i1du9] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-efsg5i1du9] {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-hero-content h1[b-efsg5i1du9] {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-efsg5i1du9 1s ease-in-out;
}

/* ── INHOUD ── */
.gv-content-section[b-efsg5i1du9] {
    padding: 40px 30px;
}

.gv-content-engineering[b-efsg5i1du9] {
    background-color: var(--gv-engineering);
    color: black;
}

.gv-content-hotel[b-efsg5i1du9] {
    background-color: var(--gv-hotel);
    color: black;
}

.gv-content-inner[b-efsg5i1du9] {
    max-width: 1400px;
    margin: 0 auto;
}

.gv-content-inner h2[b-efsg5i1du9] {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.gv-content-inner p[b-efsg5i1du9] {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* ── CONTACT KNOP ── */
.gv-contact-button-container[b-efsg5i1du9] {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.gv-contact-button[b-efsg5i1du9] {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gv-contact-button:hover[b-efsg5i1du9] {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Footer stijlen staan in GvFooter.razor.css */

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-efsg5i1du9 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gv-hero-content h1[b-efsg5i1du9] {
        font-size: 30px;
    }

    .gv-content-section[b-efsg5i1du9] {
        padding: 50px 25px;
    }
}
/* /Components/Pages/HotelRoomsPage.razor.rz.scp.css */
/* ── LOADING ── */
.gv-loading[b-jlli56cjdi] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #1a1a1a;
}

/* ── HERO ── */
.gv-hero[b-jlli56cjdi] {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background-size: cover;
    background-position: center;
}

.gv-availability-hero[b-jlli56cjdi] {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), linear-gradient(135deg, var(--gv-hotel), #3d6470);
}

.gv-hero-content h1[b-jlli56cjdi] {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    margin-bottom: 0;
    color: white;
    animation: gvFadeIn-b-jlli56cjdi 1s ease-in-out;
}

/* ── SECTIES ── */
.gv-content-section[b-jlli56cjdi] {
    padding: 40px 30px;
}

.gv-content-hotel[b-jlli56cjdi] {
    background-color: var(--gv-hotel);
    color: black;
}

.gv-content-inner[b-jlli56cjdi] {
    max-width: 1400px;
    margin: 0 auto;
}

.gv-content-inner h2[b-jlli56cjdi] {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.gv-content-inner p[b-jlli56cjdi] {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* ── ZOEKFORMULIER ── */
.gv-availability-form[b-jlli56cjdi] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    margin-top: 24px;
}

.gv-availability-field[b-jlli56cjdi] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gv-availability-field label[b-jlli56cjdi] {
    font-weight: 600;
    font-size: 0.95rem;
}

.gv-availability-input[b-jlli56cjdi] {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 1rem;
    background-color: white;
    color: #1a1a1a;
    min-width: 180px;
}

.gv-availability-field-action[b-jlli56cjdi] {
    justify-content: flex-end;
}

.gv-availability-button[b-jlli56cjdi] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gv-availability-button:hover:not(:disabled)[b-jlli56cjdi] {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.gv-availability-button:disabled[b-jlli56cjdi] {
    opacity: 0.7;
    cursor: not-allowed;
}

.gv-availability-error[b-jlli56cjdi] {
    margin-top: 16px;
    padding: 12px 16px;
    background-color: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 6px;
    color: #7a1620;
    font-weight: 500;
}

/* ── RESULTATEN ── */
.gv-availability-results[b-jlli56cjdi] {
    background-color: #f5f5f5;
}

.gv-availability-results-inner[b-jlli56cjdi] {
    max-width: 1200px;
    margin: 0 auto;
}

.gv-availability-results-title[b-jlli56cjdi] {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
}

.gv-availability-empty[b-jlli56cjdi] {
    text-align: center;
    background-color: white;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gv-availability-empty h3[b-jlli56cjdi] {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.gv-availability-empty p[b-jlli56cjdi] {
    margin-bottom: 24px;
    color: #444;
}

/* ── KAMER KAARTEN ── */
.gv-availability-grid[b-jlli56cjdi] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gv-room-card[b-jlli56cjdi] {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gv-room-card:hover[b-jlli56cjdi] {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.gv-room-card.expanded[b-jlli56cjdi] {
    grid-column: 1 / -1;
}

.gv-room-card-media[b-jlli56cjdi] {
    position: relative;
    height: 220px;
    background-color: #e3e3e3;
}

.gv-room-card-media img[b-jlli56cjdi] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gv-room-card-noimage[b-jlli56cjdi] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-style: italic;
}

.gv-room-card-badge[b-jlli56cjdi] {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #2e7d32;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.gv-room-card-body[b-jlli56cjdi] {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.gv-room-card-title[b-jlli56cjdi] {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.gv-room-card-meta[b-jlli56cjdi] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    color: #555;
    font-size: 0.9rem;
}

.gv-room-card-meta span[b-jlli56cjdi] {
    display: inline-flex;
    align-items: center;
}

.gv-room-card-text[b-jlli56cjdi] {
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.gv-room-card-text-full[b-jlli56cjdi] {
    flex: none;
}

/* ── GALERIJ ── */
.gv-room-gallery[b-jlli56cjdi] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.gv-room-gallery img[b-jlli56cjdi] {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gv-room-gallery img:hover[b-jlli56cjdi] {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── VOORZIENINGEN ── */
.gv-room-amenities[b-jlli56cjdi] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.gv-room-amenities li[b-jlli56cjdi] {
    background-color: var(--gv-hotel);
    color: white;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.82rem;
}

/* ── BESCHIKBAARHEIDSPERIODES ── */
.gv-room-availability-periods[b-jlli56cjdi] {
    margin: 20px 0;
    padding: 16px;
    background-color: #f0f4f5;
    border-radius: 8px;
    border-left: 4px solid var(--gv-hotel);
}

.gv-room-availability-periods h4[b-jlli56cjdi] {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #1a1a1a;
}

.gv-availability-table[b-jlli56cjdi] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gv-availability-row[b-jlli56cjdi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.gv-availability-dates[b-jlli56cjdi] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.gv-availability-date[b-jlli56cjdi] {
    font-weight: 600;
    color: #2c5963;
    font-size: 0.95rem;
}

.gv-availability-separator[b-jlli56cjdi] {
    color: #888;
    font-size: 1.2rem;
}

.gv-availability-count[b-jlli56cjdi] {
    display: flex;
    align-items: center;
}

.gv-count-badge[b-jlli56cjdi] {
    background-color: #2e7d32;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── BOEKINGSINFO ── */
.gv-room-booking-info[b-jlli56cjdi] {
    background-color: #f0f4f5;
    border-left: 4px solid var(--gv-hotel);
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 18px;
}

.gv-room-booking-info h4[b-jlli56cjdi] {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.gv-room-booking-info p[b-jlli56cjdi] {
    margin: 0 0 12px;
    color: #444;
}

.gv-room-booking-contact[b-jlli56cjdi] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.gv-room-booking-contact a[b-jlli56cjdi] {
    color: #2c5963;
    text-decoration: none;
}

.gv-room-booking-contact a:hover[b-jlli56cjdi] {
    text-decoration: underline;
}

.gv-room-booking-link[b-jlli56cjdi] {
    display: inline-block;
    padding: 9px 18px;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.gv-room-booking-link:hover[b-jlli56cjdi] {
    background-color: #333;
    color: white;
}

/* ── TOGGLE KNOP ── */
.gv-room-card-toggle[b-jlli56cjdi] {
    margin-top: auto;
    align-self: flex-start;
    background: none;
    border: 2px solid var(--gv-hotel);
    color: #2c5963;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gv-room-card-toggle:hover[b-jlli56cjdi] {
    background-color: var(--gv-hotel);
    color: white;
}

/* ── ANIMATIE ── */
@keyframes gvFadeIn-b-jlli56cjdi {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes gvZoomIn-b-jlli56cjdi {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── LIGHTBOX ── */
.gv-lightbox-overlay[b-jlli56cjdi] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    animation: gvFadeIn-b-jlli56cjdi 0.2s ease;
}

.gv-lightbox-modal[b-jlli56cjdi] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: gvZoomIn-b-jlli56cjdi 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-lightbox-content[b-jlli56cjdi] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-lightbox-image[b-jlli56cjdi] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gv-lightbox-close[b-jlli56cjdi] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 1002;
}

.gv-lightbox-close:hover[b-jlli56cjdi] {
    background-color: white;
    transform: scale(1.1);
}

.gv-lightbox-counter[b-jlli56cjdi] {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 1002;
}

.gv-lightbox-button[b-jlli56cjdi] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #1a1a1a;
    font-size: 28px;
    line-height: 1;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    z-index: 1002;
}

.gv-lightbox-button:hover[b-jlli56cjdi] {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.gv-lightbox-prev[b-jlli56cjdi] {
    left: 16px;
}

.gv-lightbox-next[b-jlli56cjdi] {
    right: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .gv-hero-content h1[b-jlli56cjdi] {
        font-size: 30px;
    }

    .gv-content-section[b-jlli56cjdi] {
        padding: 40px 20px;
    }

    .gv-availability-form[b-jlli56cjdi] {
        flex-direction: column;
        align-items: stretch;
    }

    .gv-availability-input[b-jlli56cjdi] {
        width: 100%;
    }

    .gv-availability-button[b-jlli56cjdi] {
        width: 100%;
        justify-content: center;
    }

    /* Lightbox responsive */
    .gv-lightbox-modal[b-jlli56cjdi] {
        max-width: 95vw;
        max-height: 85vh;
        border-radius: 6px;
    }

    .gv-lightbox-button[b-jlli56cjdi] {
        padding: 10px 12px;
        font-size: 22px;
    }

    .gv-lightbox-prev[b-jlli56cjdi] {
        left: 8px;
    }

    .gv-lightbox-next[b-jlli56cjdi] {
        right: 8px;
    }

    .gv-lightbox-close[b-jlli56cjdi] {
        width: 36px;
        height: 36px;
        font-size: 28px;
        top: 8px;
        right: 8px;
    }

    .gv-lightbox-counter[b-jlli56cjdi] {
        font-size: 0.8rem;
        padding: 6px 12px;
        bottom: 12px;
    }
}

@media (max-width: 600px) {
    /* Availability periods responsive */
    .gv-availability-row[b-jlli56cjdi] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gv-availability-dates[b-jlli56cjdi] {
        width: 100%;
    }

    .gv-availability-count[b-jlli56cjdi] {
        width: 100%;
    }
}
/* /Components/Shared/GvFooter.razor.rz.scp.css */
.gv-footer[b-an54997ao8] {
    background-color: #111;
    text-align: center;
    padding: 40px 25px 25px;
    color: #ccc;
    font-size: 0.9rem;
}

.gv-footer-logo[b-an54997ao8] {
    height: 100px;
    width: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto 20px;
}
/* /Components/Shared/LanguageSelector.razor.rz.scp.css */
.language-selector[b-be4bk0urnf] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.language-label[b-be4bk0urnf] {
    font-size: 0.85rem;
    margin-right: 4px;
    opacity: 0.7;
}

.language-button[b-be4bk0urnf] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.language-button:hover:not(:disabled)[b-be4bk0urnf] {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.language-button.active[b-be4bk0urnf] {
    background: #ADD8E6;
    border-color: #ADD8E6;
    color: #111;
    cursor: default;
}

@media (max-width: 768px) {
    .language-selector[b-be4bk0urnf] {
        margin-left: 15px;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 12px;
        margin-top: 5px;
    }
}
/* /Components/Shared/NavMenu.razor.rz.scp.css */
.gv-header[b-fd942jyuw1] {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
}

.gv-logo[b-fd942jyuw1] {
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
}

.gv-logo-img[b-fd942jyuw1] {
    height: 45px;
    width: 45px;
    display: block;
    object-fit: contain;
}

.gv-nav[b-fd942jyuw1] {
    display: flex;
    align-items: center;
}

.gv-nav a[b-fd942jyuw1] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 25px;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.gv-nav a:hover[b-fd942jyuw1] {
    color: white;
}

.gv-nav a[b-fd942jyuw1]::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ADD8E6;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.gv-nav a:hover[b-fd942jyuw1]::after {
    width: 100%;
}

.gv-menu-toggle[b-fd942jyuw1] {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .gv-nav[b-fd942jyuw1] {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 200px;
        display: none;
    }

    .gv-nav.active[b-fd942jyuw1] {
        display: flex;
    }

    .gv-nav a[b-fd942jyuw1] {
        margin: 15px;
    }

    .gv-menu-toggle[b-fd942jyuw1] {
        display: block;
    }
}
