/* Importation de la police Josefin Sans */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap');


/* Variables CSS */
:root {
    --main-color: #333;
    --secondary-color: #555;
    --highlight-color: #4a90e2;
    --background-color: white;
    --border-color: black;
    --font-main: 'Josefin Sans', sans-serif;
    --font-heading: 'Josefin Sans', sans-serif;

/* Styles généraux */
body {
    font-family: var(--font-main);
    font-weight: 300; /* Application du poids Light */
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--main-color);
}

header, footer {
    background-color: var(--background-color);
    padding: 1rem 2rem;
    border-bottom: 3px solid var(--border-color);
}

footer {
    border-top: 3px solid var(--border-color);
    text-align: center;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.menu li a {
    color: var(--main-color);
    text-decoration: none;
    font-weight: bold;
}

/* Section hero */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.hero-text, .hero p {
    max-width: 600px;
    font-size: 1.2rem;
    font-weight: 300; /* Application du poids Light */
}

/* Boutons */
.btn, button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #357ab7;
}

/* Section services */
section {
    padding: 2rem;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 300px;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.card p {
    font-weight: 300; /* Application du poids Light */
}

/* Formulaires */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

input, textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contactez-nous form .form-group label {
    font-size: 1rem;
}

/* Séparateurs */
.separator {
    height: 3px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

/* Sections spécifiques */
#accompagnement, #confidentialite, #contactez-nous {
    padding: 3rem 2rem;
    border-top: 3px solid var(--border-color);
    text-align: center;
}

#accompagnement h2, #confidentialite h2, #contactez-nous h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

#accompagnement p, #confidentialite p, #contactez-nous p {
    font-size: 1.1rem;
    font-weight: 300; /* Application du poids Light */
    color: var(--secondary-color);
    line-height: 1.6;
    text-align: justify;
}

/* Images */
.laptop-image, .document-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (min-width: 768px) {
    .columns {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
    }
    .column {
        flex: 1;
    }
}
.title-josefin {
    font-family: 'Josefin Sans', sans-serif; /* Utilisation de Josefin Sans */
    font-weight: 300; /* Poids Light */
    font-size: 16px;
    text-transform: uppercase; /* Optionnel pour tout mettre en majuscules */
    color: #000; /* Optionnel, ajustez selon vos besoins */
    margin-bottom: 20px; /* Espacement optionnel */
}
body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300; /* Application du poids Light */
}
/* Police Josefin Sans Light partout */
body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

/* Centrer "Nos Services" */
.title-josefin {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Mise en page des cartes pour être côte à côte */
.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 48%;
    margin-bottom: 2rem;
}

.card h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.card p {
    font-weight: 300;
    font-size: 1rem;
}

/* Sur petit écran, on met les cartes en une seule colonne */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
    }
}
/* Police Josefin Sans Light partout */
body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

/* Centrer "Nos Services" */
.title-josefin {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Mise en page des deux colonnes */
.service-columns {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.service-column {
    width: 48%;
}

.card {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.card h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.card p {
    font-weight: 300;
    font-size: 1rem;
}

/* Sur petit écran, on met les cartes en une seule colonne */
@media (max-width: 768px) {
    .service-columns {
        flex-direction: column;
        align-items: center;
    }

    .service-column {
        width: 80%;
    }
}
/* Police Josefin Sans Light partout */
body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

/* Centrer "Nos Services" */
.title-josefin {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Mise en page des cartes côte à côte */
.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap; /* Permet aux cartes de se réorganiser en ligne ou en colonne si nécessaire */
}

.card {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 22%; /* Ajuster la largeur des cartes pour en avoir 4 sur la même ligne */
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.card h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.card p {
    font-weight: 300;
    font-size: 1rem;
}

/* Sur petit écran, on met les cartes en une seule colonne */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%; /* Ajuste la largeur des cartes sur petits écrans */
    }
}
/* Section Contact - Application de la police Josefin Sans Light */
#contactez-nous {
    border-top: none;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300; /* Applique la version Light de la police */
}

#contactez-nous h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

#contactez-nous p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

#contactez-nous form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

#contactez-nous .form-group label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
}

#contactez-nous input, #contactez-nous textarea {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contactez-nous button {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--highlight-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contactez-nous button:hover {
    background-color: #357ab7;
}
/* Centrer les titres des cartes */
#services .service-cards .card h3 {
    text-align: center;
}

#confidentialite {
    border-top: none;
#confidentialite {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 3px solid var(--border-color); /* Ajout du trait noir séparateur */
}

#confidentialite h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

#confidentialite p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--secondary-color);
    line-height: 1.6;
    text-align: justify;
}
/* Styles pour la section Contactez-nous */
#contactez-nous {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

#contactez-nous h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

#contactez-nous p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.form-group input,
.form-group textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.submit-button {
    background-color: #007bff;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.submit-button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    #contactez-nous {
        padding: 30px 15px;
    }

    #contactez-nous h2 {
        font-size: 2rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
    }

    .submit-button {
        font-size: 1rem;
        padding: 10px;
    }
}