/* Fichier styles.css */
@import url("https://fonts.googleapis.com/css2?family=Lexend+Mega&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    height: 100vh;
    background-image: url('IMAGES/Home Page/HomePage_Background.jpg'); /* Remplacez par l'URL de votre image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2); /* Fond sombre transparent */
}

.left h1 a {
    font-size: 4em;
    margin: 0;
    font-family: "Abril Fatface", serif;
    font-weight: bold; /* Applique le style en gras */
    color: white;
}

.left h2 {
    font-size: 1em;
    margin: 10px 0 0 0;
    font-family: 'Lexend Mega', sans-serif;
}

h3 {
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
}


.right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    background: rgba(0, 0, 0, 0.2); /* Fond sombre transparent */
}

.list-container {
    background-color: white;
    padding: 60px;
    border-radius: 30px; /* Coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Ombre pour un effet 3D */
}

.right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    color: #333;
    line-height: 2.5; /* Ajuste l'interligne */
}
/* Style pour les liens au survol (hover) */
a:hover {
    color: #4d3f28; /* Change la couleur du lien au survol */
    
}


.right ul li {
    margin-bottom: 10px;
}

/* Supprimer le soulignement des liens et définir la couleur */
a {
    text-decoration: none; /* Enlève le soulignement */
    color: #8b8273; /* Couleur du texte du lien */
    font-weight: bold; /* Optionnel: rend le texte du lien en gras */
    font-family: 'Lexend Mega', sans-serif;
}

/* Style pour le texte en bas à droite */
.footer-text {
    position: absolute;
    bottom: 0px; /* Espace depuis le bas du conteneur */
    right: 0px; /* Espace depuis la droite du conteneur */
    font-size: 0.6em; /* Taille du texte en petit */
    color: #FFFFFF; /* Couleur du texte */
    font-family: 'Lexend Mega', sans-serif;
    padding: 2px; /* Padding autour du texte */

}

/* Styles pour les téléphones */
@media (max-width: 900px) {
    /* Changement de la disposition en colonnes pour les petits écrans */
    .header-container, .container, .content-containers {
        flex-direction: column;
        align-items: center;
    }

    .header-title-container {
        text-align: center;
        padding-left: 0;
    }

    .left, .right {
        width: 100%;
        height: 100%;
    }

    h1 {
        font-size: 1em;
    }
    a {
        font-size: 0.8em;
    }

    .right ul {

        line-height: 0.7; /* Définit un interligne de 1,5 fois la taille de la police */
        font-size: 1.2em;
    
    }
    .left h1 {
        font-size: 1em;
    }

    .list-container {
        margin-top: -9em;
        padding: 10px;
        width: 70%;
        
    }

    /*.content-containers {
        margin-top: 10px;
    }*/

    .container {
        overflow: hidden; /* Empêche tout débordement vertical non désiré */
    }

    .content-image {
        max-width: 90%;
    }

    .footer-text {
        padding-top: 0px;
        font-size: 0.8em;
    }

}

