/* RESET BASIQUE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY AVEC IMAGE DE FOND */
body {
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-image: url("images/home_banner.webp");
    background-size: cover;
    background-position: right 4.375rem;
    background-repeat: no-repeat;
}
body:before {
    background-image: linear-gradient(180deg, rgba(93, 196, 228, .6) 0, transparent 25%);
    bottom: 0;
    content: "";
    left: 0;
    opacity: .31;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
/* HEADER */
.site-header {
    width: 100%;
    min-height: 4.375rem; /* 70px */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* LOGO */
.logo video {
    height: 80px;
    width: auto;
}

/* SECTION HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 3rem;
    padding-top: 4.375rem; /* pour ne pas passer sous le header */
}

/* TEXTE SUR IMAGE */
.hero-text {
    max-width: 600px;
    color: #485469;
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2f5aa6;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
}
.legal-link {
    color: #1a5fd0;
    text-decoration: underline;
    text-decoration-color: #5dc4e4;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.legal-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.legal-link:hover {
    color: #0f3e99;
    text-decoration-color: #ec6665;
}

.legal-link:hover::after {
    transform: scaleX(1);
}
.site-footer {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 1000;
}

/*.site-footer .legal-link {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
    text-decoration: underline;
    text-decoration-color: #5dc4e4;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.site-footer .legal-link:hover {
    text-decoration-color: #ec6665;
    color: rgba(0, 0, 0, 0.7);
}*/
/* ===================== */
/* VERSION MOBILE */
/* ===================== */
@media (max-width: 768px) {

    /* BODY */
    body {
        background-image: none;
    }

    body:before {
        display: none;
    }

    /* HERO devient le conteneur de l'image */
    .hero {
        min-height: auto;
        padding: 0;
        padding-top: 0; /* header */
        flex-direction: column;
        align-items: stretch;
        background-image: url("images/home_banner.webp");
        background-size: 726px;
        background-position: right 76px;
        background-repeat: no-repeat;
    }

    /* Bloc image (hauteur fixe) */
    .hero::before {
        content: "";
        display: block;
        height: 40vh;
    }

    /* TEXTE */
    .hero-text {
        background-color: #ffffff;
        padding: 1.5rem;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 15px;
    }

    /* FOOTER normal (plus fixed) */
    .site-footer {
        position: static;
        padding: 1rem;
        margin-top: 2rem;
    }
}
