@charset "utf-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
    text-align: center; /* Centre le texte par défaut */
}

header img {
    max-width: 150px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #d3d3d3; /* Ligne fine en haut */
    border-bottom: 1px solid #d3d3d3; /* Ligne fine en bas */
    padding: 10px 0;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    font-size: 18px;
    color: #000080; /* Bleu marine */
    text-transform: uppercase; /* Texte en majuscules */
    font-family: 'Raleway', sans-serif; /* Police Raleway */
    font-weight: 300; /* Raleway fin */
    padding: 10px 15px;
    position: relative;
}

.nav-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 50%;
    background-color: #d3d3d3;
    transform: translateY(-50%);
}

.nav-link:last-child::before {
    display: none; /* Pas de bordure à droite du dernier lien */
}

.nav-link:hover {
    text-decoration: underline;
}

.container {
    max-width: 1400px;
}

.presentation-section {
    background-image: url('img/bg-presentation.png'); /* Chemin de l'image de fond */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

.presentation-text {
    padding: 20px;
    text-align: left; /* Réinitialise le texte à gauche si nécessaire */
}

.presentation-image img {
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-top: 20px;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.card {
    margin: 10px 0;
}

.raleway-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .presentation-text, .presentation-image {
        text-align: center;
    }

    .presentation-image img {
        margin-top: 0;
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 576px) {
    .presentation-text {
        padding: 10px;
    }

    .presentation-image img {
        width: 300px;
        height: 300px;
    }
}
