/* /Components/Layout/Footer.razor.rz.scp.css */
.site-footer[b-w8xzr2s3lv] {
    position: relative;
    margin-top: 2rem;
}

/* The footer tint used to be a flat rectangle on .site-footer, whose top edge
   drew a hard horizontal line straight across the divider. Carrying it on a
   masked layer instead lets the tint start along the curve, so the page and the
   footer meet at the wave. The path mirrors CurveDivider's flipped silhouette —
   change one and change the other. */
.site-footer[b-w8xzr2s3lv]::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: rgba(10, 12, 18, 0.45);

    --wave-h: clamp(56px, 8vw, 110px);
    --wave-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 110' preserveAspectRatio='none'%3E%3Cfilter id='f' x='-20%25' y='-60%25' width='140%25' height='220%25'%3E%3CfeGaussianBlur stdDeviation='9'/%3E%3C/filter%3E%3Cpath d='M0,62 C200,96 440,48 680,26 C920,4 1200,96 1440,44 L1440,170 L0,170 Z' fill='white' filter='url(%23f)'/%3E%3C/svg%3E");

    -webkit-mask-image: var(--wave-mask), linear-gradient(#000, #000);
    mask-image: var(--wave-mask), linear-gradient(#000, #000);
    -webkit-mask-size: 100% var(--wave-h), 100% calc(100% - var(--wave-h) + 1px);
    mask-size: 100% var(--wave-h), 100% calc(100% - var(--wave-h) + 1px);
    -webkit-mask-position: top left, bottom left;
    mask-position: top left, bottom left;
    -webkit-mask-repeat: no-repeat, no-repeat;
    mask-repeat: no-repeat, no-repeat;
}

/* The tint layer is positioned, so everything it sits behind must be too. */
.site-footer[b-w8xzr2s3lv]  .curve-divider.standalone,
.footer-inner[b-w8xzr2s3lv],
.footer-base[b-w8xzr2s3lv] {
    position: relative;
    z-index: 1;
}

.footer-inner[b-w8xzr2s3lv] {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.footer-brand p[b-w8xzr2s3lv] {
    margin: 1.25rem 0 0;
    max-width: 34ch;
    color: var(--text-secondary);
}

.footer-heading[b-w8xzr2s3lv] {
    margin: 0 0 1.1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-violet-300);
}

.footer-nav[b-w8xzr2s3lv] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

    .footer-nav a[b-w8xzr2s3lv] {
        position: relative;
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

        .footer-nav a:hover[b-w8xzr2s3lv] {
            color: #fff;
            transform: translateX(4px);
        }

.footer-contact .btn[b-w8xzr2s3lv] {
    margin-bottom: 1.5rem;
}

.social-links[b-w8xzr2s3lv] {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

    .social-links a[b-w8xzr2s3lv] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        color: var(--text-secondary);
        border: 1px solid var(--border);
        background-color: var(--surface-1);
        transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
                    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

        .social-links a:hover[b-w8xzr2s3lv] {
            color: #fff;
            border-color: transparent;
            background-image: linear-gradient(120deg, var(--brand-violet-600) 0%, var(--brand-magenta-600) 100%);
            transform: scale(1.1) translateY(-2px);
            box-shadow: 0 10px 24px rgba(124, 58, 237, 0.4);
        }

        .social-links a:active[b-w8xzr2s3lv] {
            transform: scale(0.9);
            transition-duration: 0.06s;
        }

    .social-links svg[b-w8xzr2s3lv] {
        width: 22px;
        height: 22px;
        display: block;
    }

.footer-base[b-w8xzr2s3lv] {
    border-top: 1px solid var(--border);
}

.footer-base-inner[b-w8xzr2s3lv] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

    .footer-base-inner p[b-w8xzr2s3lv] {
        margin: 0;
        font-size: 0.85rem;
        color: var(--text-muted);
    }

/* Credit reads as a quiet line, with the name doing the work rather than link styling. */
.footer-credit a[b-w8xzr2s3lv] {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

    .footer-credit a:hover[b-w8xzr2s3lv],
    .footer-credit a:focus-visible[b-w8xzr2s3lv] {
        color: #fff;
        border-bottom-color: var(--brand-violet-500);
    }

@media (max-width: 820px) {
    .footer-inner[b-w8xzr2s3lv] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-top: 3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-nav a[b-w8xzr2s3lv],
    .footer-nav a:hover[b-w8xzr2s3lv],
    .social-links a[b-w8xzr2s3lv],
    .social-links a:hover[b-w8xzr2s3lv],
    .social-links a:active[b-w8xzr2s3lv] {
        transform: none;
        transition: color 0.2s ease, border-color 0.2s ease;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-dej5hjs1sq] {
    position: relative;
    background-color: var(--surface-0);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    /* Blue drifting into violet into magenta across the whole page. Fixed, so it
       stays put while the content scrolls over it. The x positions climb steadily
       while y alternates high/low, which is what makes the merge read as a wave. */
    .page[b-dej5hjs1sq]::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background:
            radial-gradient(42% 58% at 2% 26%, rgba(106, 155, 255, 0.30) 0%, transparent 62%),
            radial-gradient(38% 52% at 20% 76%, rgba(106, 155, 255, 0.23) 0%, transparent 62%),
            radial-gradient(44% 60% at 40% 20%, rgba(124, 58, 237, 0.29) 0%, transparent 62%),
            radial-gradient(40% 54% at 58% 80%, rgba(124, 58, 237, 0.24) 0%, transparent 62%),
            radial-gradient(44% 60% at 78% 24%, rgba(232, 64, 154, 0.27) 0%, transparent 62%),
            radial-gradient(42% 56% at 99% 74%, rgba(232, 64, 154, 0.24) 0%, transparent 62%);
    }

/* Filled from the top of the page rather than fading in once scrolled. */
.topbar[b-dej5hjs1sq] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--brand-blue-900);
    background-image: linear-gradient(90deg, var(--brand-blue-900) 0%, var(--brand-violet-900) 55%, var(--brand-magenta-900) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: box-shadow 0.25s ease;
}

    .topbar[b-dej5hjs1sq]::after {
        content: "";
        display: block;
        height: 2px;
        margin-bottom: -1px;
        background: linear-gradient(90deg, var(--brand-blue-600) 0%, var(--brand-violet-600) 50%, var(--brand-magenta-600) 100%);
    }

/* Colour no longer changes on scroll — only the lift off the page does. */
.topbar.scrolled[b-dej5hjs1sq] {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

/* Positioned but deliberately z-index: auto. Being positioned is enough to paint above
   .page::before, which sits at z-index 0 earlier in tree order — and staying out of a
   stacking context of its own lets a page raise something above the topbar, which the
   booking drawer needs to do. */
main[b-dej5hjs1sq] {
    position: relative;
    flex: 1;
}

#blazor-error-ui[b-dej5hjs1sq] {
    background: var(--surface-2);
    color: var(--text-primary);
    border-top: 1px solid var(--brand-violet-600);
    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-dej5hjs1sq] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Slim centred bar. Nothing but the links — no brand column, no rule, no
   chrome of their own. */
.navbar[b-xilggtkxql] {
    width: 100%;
    padding: 1rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

.navbar-stack[b-xilggtkxql] {
    display: flex;
    flex-direction: column;
}

.nav-links[b-xilggtkxql] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.nav-links[b-xilggtkxql]  .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 2.25rem;
    padding: 0 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease;
}

    /* Solid rule that grows out from the centre. Insetting by the padding keeps
       it under the word rather than the whole hit area. */
    .nav-links[b-xilggtkxql]  .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        right: 50%;
        bottom: 0.3rem;
        height: 2px;
        border-radius: 1px;
        opacity: 0;
        background-color: var(--brand-blue-500);
        transition: left 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
                    right 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
                    opacity 0.2s ease;
    }

    .nav-links[b-xilggtkxql]  .nav-link:hover {
        color: #fff;
    }

        .nav-links[b-xilggtkxql]  .nav-link:hover::after,
        .nav-links[b-xilggtkxql]  .nav-link.active::after {
            left: 0.9rem;
            right: 0.9rem;
            opacity: 1;
        }

    .nav-links[b-xilggtkxql]  .nav-link:active {
        color: rgba(255, 255, 255, 0.6);
    }

    /* The current page holds the underline permanently and takes the same blue. */
    .nav-links[b-xilggtkxql]  .nav-link.active {
        color: var(--brand-blue-500);
    }

    .nav-links[b-xilggtkxql]  .nav-link:focus-visible {
        outline: 2px solid var(--brand-blue-500);
        outline-offset: 3px;
        border-radius: 4px;
    }

.navbar-toggler[b-xilggtkxql] {
    display: none;
}

.navbar-toggler-icon[b-xilggtkxql] {
    display: none;
    width: 2.75rem;
    height: 2.5rem;
    cursor: pointer;
    border-radius: 6px;
    border: 1px solid var(--border-strong);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.5rem;
}

@media (max-width: 820px) {
    /* Spacer column keeps the toggler hard right now that no brand precedes it. */
    .navbar[b-xilggtkxql] {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 0.75rem 1.25rem;
    }

    .navbar-toggler-icon[b-xilggtkxql] {
        display: block;
        grid-column: 2;
    }

    .navbar-stack[b-xilggtkxql] {
        grid-column: 1 / -1;
        width: 100%;
    }

    .nav-links[b-xilggtkxql] {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        padding-bottom: 0.75rem;
    }

    .navbar-toggler:checked ~ .navbar-stack .nav-links[b-xilggtkxql] {
        display: flex;
    }

    /* Stacked, so the links read left-aligned and the underline anchors left. */
    .nav-links[b-xilggtkxql]  .nav-link {
        height: 2.75rem;
        padding: 0;
    }

        .nav-links[b-xilggtkxql]  .nav-link:hover::after,
        .nav-links[b-xilggtkxql]  .nav-link.active::after {
            left: 0;
            right: 0;
        }
}

/* The underline still appears, it just snaps to width instead of sliding. */
@media (prefers-reduced-motion: reduce) {
    .nav-links[b-xilggtkxql]  .nav-link::after {
        transition: opacity 0.2s ease;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-hpq8018rd0],
.components-reconnect-repeated-attempt-visible[b-hpq8018rd0],
.components-reconnect-failed-visible[b-hpq8018rd0],
.components-pause-visible[b-hpq8018rd0],
.components-resume-failed-visible[b-hpq8018rd0],
.components-rejoining-animation[b-hpq8018rd0] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-hpq8018rd0],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-hpq8018rd0],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-hpq8018rd0],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-hpq8018rd0],
#components-reconnect-modal.components-reconnect-retrying[b-hpq8018rd0],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-hpq8018rd0],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-hpq8018rd0],
#components-reconnect-modal.components-reconnect-failed[b-hpq8018rd0],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-hpq8018rd0] {
    display: block;
}


#components-reconnect-modal[b-hpq8018rd0] {
    background-color: var(--surface-2);
    color: var(--text-primary);
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid var(--border-strong);
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px 2px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-hpq8018rd0 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-hpq8018rd0 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-hpq8018rd0 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-hpq8018rd0]::backdrop {
    background-color: rgba(5, 6, 15, 0.7);
    animation: components-reconnect-modal-fadeInOpacity-b-hpq8018rd0 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-hpq8018rd0 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-hpq8018rd0 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-hpq8018rd0 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-hpq8018rd0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-hpq8018rd0] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-hpq8018rd0] {
    border: 0;
    background-color: var(--brand-violet-600);
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-hpq8018rd0] {
        background-color: var(--brand-violet-500);
    }

    #components-reconnect-modal button:active[b-hpq8018rd0] {
        background-color: var(--brand-violet-600);
    }

.components-rejoining-animation[b-hpq8018rd0] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-hpq8018rd0] {
        position: absolute;
        border: 3px solid var(--brand-violet-500);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-hpq8018rd0 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-hpq8018rd0] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-hpq8018rd0 {
    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;
    }
}
