/* Logo */
.logo {
    max-height: 80px;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Navbar */
/* Bandeau de navigation avec dégradé + bordure */
.navbar-custom {
    background: linear-gradient(90deg, #005c83, #007fa6);
    border-bottom: 3px solid #00466d;
    padding: 0.5rem 1rem;
    min-height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo + texte de la marque */
.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: none;
}

/* Lien de navigation (menu) */
.navbar-custom .nav-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover / Focus */
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    color: #ffffff;
}

/* Alignement du menu à droite */
.navbar-custom .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Optionnel : bouton hamburger */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Logo texte */
.navbar-brand span {
    color: white;
}

/* En-tête */
.header {
    background-color: #fff;
    padding: 1rem 0;
    text-align: center;
}
.header h1 {
    font-size: 2rem;
    margin: 0.5rem 0;
    color: #005c83;
}

/* Contenu principal */
.main-content {
    padding: 3rem 1rem;
    max-width: 960px;
    margin: auto;
    line-height: 1.6;
}

/* Images */
/*img {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    display: block;*/
/*    margin: 1rem auto;*/
/*}*/

/* Footer */
.footer {
    background-color: #003d56;
    font-size: 0.95rem;
    color: white;
    border-top: 4px solid #007fa6;
}

.footer-link {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
    color: #aad8ff;
    text-decoration: none;
}

/* Responsive : petit écran */
@media (max-width: 600px) {
    .main-content {
        padding: 1rem;
    }

    .navbar-custom .nav-link {
        display: block;
        padding: 1rem;
        text-align: center;
    }
}
