/* Polices et couleurs de base (à personnaliser selon vos goûts) */
:root {
    --primary-color: #6a8e7f; /* Un vert sauge doux et apaisant */
    --secondary-color: #f4f4f4;
    --text-color: #333;

}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    padding-top: 70px; /* Espace pour la navbar fixe */
}

/* Styles pour la barre de navigation */
.navbar-brand {
    font-weight: bold;
}

.navbar-logo {
    max-height: 100px;
    width: auto;
    border-radius: 10px; /* Ajoute des coins arrondis */
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #58786b;
    border-color: #58786b;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
     background-color: var(--primary-color);
     color: white;
}


/* Section Héros avec l'image de fond */
.hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
    background: url('../images/fond.png') no-repeat center center; /* VOTRE IMAGE DE FOND */
    background-size: cover;
    position: relative;
}

/* Ajoute une surcouche sombre pour que le texte blanc soit plus lisible */

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
}

/* Assure que le contenu est au-dessus de la surcouche */

.hero-section .container {
    position: relative;
    z-index: 2;
}





/* Section Présentation */

.presentation-section {
    background-color: #ffffff;
}

.profile-picture {
    max-width: 240px;
    border: 4px solid white;
    /* Transformation de la photo en noir et blanc */
    filter: grayscale(100%);
    transition: filter 0.3s ease-in-out;

}
.profile-picture:hover {
    filter: grayscale(0%); /* La couleur réapparaît au survol */
}



/* Section Approches avec les Cards */
.approches-section {
    background-color: var(--secondary-color);
}
.card-hover {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}
.card-footer {
    text-align: right;
}



/* --- Style du Footer --- */
/* Conteneur principal du footer */

.site-footer {
    background-color: #ceddd7; /* Un vert très clair et doux, à ajuster */
    color: #333;
    padding: 10px 5%; /* Espace intérieur haut/bas et gauche/droite */
    font-size: 12px;
    line-height: 1.6;

}

/* Section principale avec les colonnes */

.footer-main {

    display: flex;
    flex-wrap: wrap; /* Permet aux colonnes de passer à la ligne sur mobile */
    justify-content: space-between;
    gap: 20px; /* Espace entre les colonnes */
    margin-bottom: 10px;
}

/* Style de chaque colonne */

.footer-column {
    flex: 1; /* Permet aux colonnes de prendre une largeur égale */
    min-width: 280px; /* Largeur minimale avant de passer à la ligne */
}

/* Titres des colonnes */

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #005662; /* Un vert foncé pour contraster, à ajuster */
}

/* Listes (contact et navigation) */
.footer-contact-info,
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li,
.footer-nav li {
    margin-bottom: 2px;
}

/* Style des liens dans le footer */

.site-footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #00897b; /* Couleur au survol, à ajuster */
    text-decoration: underline;
}

/* Avertissement */

.footer-disclaimer {
    font-size: 12px;
    font-style: italic;
}

/* Bouton "Prendre RDV" */

.footer-button {

    display: inline-block;

    background-color: #8ee2da; /* Couleur principale du site */
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
    text-decoration: none !important; /* Pour enlever le soulignement */
}

.footer-button:hover {
    background-color: #006a5f; /* Une teinte plus foncée au survol */
    color: #ffffff !important;
}

/* Icônes des réseaux sociaux */

.footer-socials a {
    font-size: 24px; /* Taille des icônes */
    margin-right: 10px;
}

/* Barre légale tout en bas */

.footer-bottom-bar {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 2px;
    font-size: 13px;
    color: #555;
}

.footer-bottom-bar p {
    margin: 2px 0;
}
/* Style pour le logo dans la section contact */
.contact-logo {
    max-width: 150px; /* Ajustez la taille si besoin */
    height: auto;
}

/* On s'assure que le fond de la colonne est bien appliqué */
.contact-text-column {
    background-color: #97a6a0; /* Vert foncé */
}
.profile-picture-email {
    border-radius: 50% !important; /* Force la forme de cercle parfait */
    width: 100px; /* Vous pouvez ajuster la taille */
    height: 100px; /* La même valeur que la largeur pour un cercle parfait */
    object-fit: cover; /* Assure que l'image remplit le cercle sans être déformée */
}