.center {
    margin: 30px auto;
    width: 60%;
    padding: 40px 30px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.8;
    font-family: 'Segoe UI', sans-serif;
    color: #222;

    /* Style visuel */
    background: linear-gradient(135deg, #f0f6ff, #ffffff);
    border: 2px solid #004AAD;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);

    /* Animation douce */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}


.zoneLogo {
    margin: 20px auto;
    width: 35%;
    height: 100px;
    background-image: url('/style/img/Logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.zoneHashtag {
    margin: 20px auto;
    width: 35%;
    padding: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 2.5rem;
    color: #004AAD;
}

.p {
    color: black;
}

.joliTexte {
    white-space: pre-line;
    background-color: #f8f9fa;
    border-left: 4px solid #004AAD;
    padding: 15px 20px;
    margin: 30px auto;
    width: 70%;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.accueil-texte {
    margin: 40px auto;
    width: 75%;
    padding: 30px 25px;
    background: #ffffff;
    border: 2px solid #004AAD;
    border-radius: 12px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accueil-texte h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #004AAD;
}

.accueil-texte p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.accueil-texte strong {
    color: #004AAD;
    font-weight: 600;
}

.accueil-sous-texte {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

/* 📱 Tablettes (jusqu'à 1024px) */
@media (max-width: 1024px) {
    .center, 
    .zoneLogo, 
    .zoneHashtag, 
    .joliTexte, 
    .accueil-texte {
        width: 85%;
    }

    .center {
        font-size: 1.3rem;
        padding: 30px 20px;
    }

    .zoneHashtag {
        font-size: 2rem;
    }

    .accueil-texte h2 {
        font-size: 1.5rem;
    }

    .accueil-texte p {
        font-size: 1rem;
    }
}

/* 📲 Smartphones (jusqu'à 15vh) */
@media (max-width: 15vh) {
    .center, 
    .zoneLogo, 
    .zoneHashtag, 
    .joliTexte, 
    .accueil-texte {
        width: 95%;
    }

    .center {
        font-size: 1.1rem;
        padding: 25px 15px;
    }

    .zoneLogo {
        height: 80px;
    }

    .zoneHashtag {
        font-size: 1.6rem;
        padding: 10px;
    }

    .joliTexte {
        font-size: 0.9rem;
        padding: 12px 15px;
    }

    .accueil-texte h2 {
        font-size: 1.3rem;
    }

    .accueil-texte p {
        font-size: 0.95rem;
    }

    .accueil-sous-texte {
        font-size: 1rem;
    }
}

/* 📱 Petits smartphones (jusqu'à 480px) */
@media (max-width: 480px) {
    .center {
        font-size: 1rem;
        line-height: 1.5;
        padding: 20px 12px;
    }

    .zoneLogo {
        height: 60px;
    }

    .zoneHashtag {
        font-size: 1.4rem;
    }

    .joliTexte {
        font-size: 0.85rem;
    }

    .accueil-texte h2 {
        font-size: 1.1rem;
    }

    .accueil-texte p {
        font-size: 0.9rem;
    }

    .accueil-sous-texte {
        font-size: 0.95rem;
    }
}
