/* Ton background existant (conservé) */
body.waiting-page {
    background-image: url('/images/chapito-attente-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    /* évite les blancs */
    margin: 0 !important;
    min-height: 100vh;

    /* optionnel (lisibilité) */
    color: #fff;
}

/* Sur mobile, background-attachment: fixed est souvent mal géré */
@media (min-width: 992px) {
    body.waiting-page {
        background-attachment: fixed;
    }
}

@media (max-width: 991.98px) {
    body.waiting-page {
        background-attachment: scroll;
    }
}

/* Logo responsive */
.waiting-logo {
    width: min(192px, 70vw);
    height: auto;
    display: inline-block;
}

/* Texte responsive */
.waiting-text {
    font-weight: 400;
    line-height: 1.2;
    font-size: clamp(1.4rem, 3.2vw, 2.4rem);
    text-align: center;
    font-family: "Roboto", sans-serif;

    /* optionnel: améliore la lisibilité sur photo */
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.waiting-coord{
    font-weight: 400;
    line-height: 1.2;
    font-size: clamp(1rem, 3.2vw, 1.4rem);
    text-align: center;
    font-family: "Roboto", sans-serif;

    /* optionnel: améliore la lisibilité sur photo */
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.waiting-tel{
    color: #ffffff;
    text-decoration: none;
}