:root {
    --viewport: 1300px;
    --viewport-60: calc( var(--viewport) * 0.6 );
    --primary-color: #FE9E56;
    --secondary-color: #9CA6F6;
    --text-color: #04092F;
    --bg-color: #FCF8F6;
    --white-color: #ffffff;
    --card-shadow: 0 0px 60px rgba(0, 0, 0, 0.05);
}


/* ----------------------------- */
/* RÉINITIALISATION &      */
/* STYLES DE BASE          */
/* ----------------------------- */
body, html {
    margin: 0;
    padding: 0;
    height: 100%; /* Permet aux enfants en % de hauteur de fonctionner correctement */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-color);
}


/* ----------------------------- */
/* MISE EN PAGE FLEXBOX       */
/* ----------------------------- */
.fullpage-section {
    display: flex;
    justify-content: center; /* Centre l'enfant (.content-container) sur l'axe horizontal */
    align-items: center;   /* Centre l'enfant (.content-container) sur l'axe vertical */
    min-height: 100vh;     /* Hauteur minimale de 100% de la fenêtre (viewport height) */
    padding: 2rem;
    box-sizing: border-box; /* Le padding ne s'ajoute pas à la largeur/hauteur totale */
}


/* ----------------------------- */
/* STYLE DU CONTENEUR      */
/* ET CONTENU         */
/* ----------------------------- */
.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white-color);
    padding: 120px;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    text-align: center;
    max-width: var(--viewport-60);
    width: 100%;
    border-radius: 60px;
    gap: 15px;

    /* Astuce de débogage CSS : décommentez pour voir les limites exactes du conteneur */
    /* border: 2px solid red; */
}

.content-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Pour une image ronde */
    object-fit: cover;  /* Assure que l'image remplit l'espace sans se déformer */
    margin-bottom: 1.5rem;
    align-items: center;
}

h1 {
    color: var(--text-color-dark);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2rem;
}

h2 {
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0;
}

p {
    color: text-color;
    margin-bottom: 1rem;
    line-height: 1.6;
}

p.text-s {
    font-size: 13px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    border-radius: 300px;
}

button:hover {
    background-color: var(--secondary-color);
}

@media screen and (max-width:990px) {


.content-container {
    padding: 40px;
    gap: 10px;
}

.content-container img {
    width: 80px;
    height: 80px;
}

.flex-row {
    flex-direction: column;
}

}