/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page-container[b-zi6bqcm1bi] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-primary);
}

.site-header[b-zi6bqcm1bi] {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.header-video[b-zi6bqcm1bi] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.header-overlay[b-zi6bqcm1bi] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 46, 0.4);
    z-index: 1;
}

.header-content[b-zi6bqcm1bi] {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hamburger-btn[b-zi6bqcm1bi] {
    position: absolute;
    left: 2rem;
    background: none;
    border: none;
    color: var(--color-bg-primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    line-height: 1;
    transition: color 0.2s;
}

.hamburger-btn:hover[b-zi6bqcm1bi] {
    color: var(--color-accent);
}

.header-brand[b-zi6bqcm1bi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo[b-zi6bqcm1bi] {
    height: 300px;
    width: auto;
}

.site-title[b-zi6bqcm1bi] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-actions[b-zi6bqcm1bi] {
    position: absolute;
    right: 2rem;
    display: flex;
    align-items: center;
}

.main-content[b-zi6bqcm1bi] {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.site-footer[b-zi6bqcm1bi] {
    background-color: var(--color-primary);
    text-align: center;
    padding: 2rem 1.5rem;
    border-top: 3px solid var(--color-accent);
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.site-footer p[b-zi6bqcm1bi] {
    margin: 0.5rem 0;
}

.site-footer .footer-links[b-zi6bqcm1bi] {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .header-content[b-zi6bqcm1bi] {
        padding: 1rem;
    }

    .logo[b-zi6bqcm1bi] {
        height: 150px;
    }

    .site-title[b-zi6bqcm1bi] {
        font-size: 1.2rem;
    }

    .main-content[b-zi6bqcm1bi] {
        padding: 1.5rem 1rem;
    }

    .hamburger-btn[b-zi6bqcm1bi] {
        left: 1rem;
    }

    .header-actions[b-zi6bqcm1bi] {
        right: 1rem;
    }
}

#blazor-error-ui[b-zi6bqcm1bi] {
    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-zi6bqcm1bi] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Backdrop semi-transparent */
.nav-overlay[b-i63ug3x1pz] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.nav-overlay.open[b-i63ug3x1pz] {
    opacity: 1;
    pointer-events: all;
}

/* Panneau slide-in depuis la gauche */
.nav-menu[b-i63ug3x1pz] {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--color-primary);
    transition: left 0.3s ease;
    z-index: 101;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.nav-menu.open[b-i63ug3x1pz] {
    left: 0;
}

/* Bouton de fermeture */
.close-btn[b-i63ug3x1pz] {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.8rem;
    cursor: pointer;
    align-self: flex-end;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    line-height: 1;
    transition: color 0.2s;
}

.close-btn:hover[b-i63ug3x1pz] {
    color: var(--color-accent);
}

/* Liens de navigation */
.nav-links[b-i63ug3x1pz] {
    display: flex;
    flex-direction: column;
}

.nav-links[b-i63ug3x1pz]  .nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s, color 0.2s;
    border-left: 3px solid transparent;
}

.nav-links[b-i63ug3x1pz]  a.active {
    background-color: var(--color-bg-secondary-hover);
    border-left-color: var(--color-accent);
    color: var(--color-accent);
}

.nav-links[b-i63ug3x1pz]  .nav-link:hover {
    background-color: var(--color-bg-secondary-hover);
    color: var(--color-accent-light);
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-9fnoxfsnmf],
.components-reconnect-repeated-attempt-visible[b-9fnoxfsnmf],
.components-reconnect-failed-visible[b-9fnoxfsnmf],
.components-pause-visible[b-9fnoxfsnmf],
.components-resume-failed-visible[b-9fnoxfsnmf],
.components-rejoining-animation[b-9fnoxfsnmf] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-9fnoxfsnmf],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-9fnoxfsnmf],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-9fnoxfsnmf],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-9fnoxfsnmf],
#components-reconnect-modal.components-reconnect-retrying[b-9fnoxfsnmf],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-9fnoxfsnmf],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-9fnoxfsnmf],
#components-reconnect-modal.components-reconnect-failed[b-9fnoxfsnmf],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-9fnoxfsnmf] {
    display: block;
}


#components-reconnect-modal[b-9fnoxfsnmf] {
    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-9fnoxfsnmf 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-9fnoxfsnmf 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-9fnoxfsnmf 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-9fnoxfsnmf]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-9fnoxfsnmf 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-9fnoxfsnmf {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-9fnoxfsnmf {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-9fnoxfsnmf {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-9fnoxfsnmf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-9fnoxfsnmf] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-9fnoxfsnmf] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-9fnoxfsnmf] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-9fnoxfsnmf] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-9fnoxfsnmf] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-9fnoxfsnmf] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-9fnoxfsnmf 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-9fnoxfsnmf] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-9fnoxfsnmf {
    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;
    }
}
