/* Corps général */
body {
    font-family: Garamond;
    line-height: 1.6;
    background-color: #ffffff;
    color: #48494C;
}

/* Navigation */
.navbar {
    font-family: Garamond;
    font-weight: bold;
    font-size: large;
    text-align: center;
}

.nav-link {
    color: #646C77;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
    background-color: #BD9D7E;
    border-radius: 5px;
}

.navbar-nav {
    justify-content: center;
}

/* En-tête */
.site-header {
    background-color: #3B2715;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.site-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

/* Navigation */
.main-navigation {
    background-color: #595D5F;
    color: #ffffff;
    padding: 10px 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
    background-color: #646C77;
    color: #ffffff;
}

/* Contenu principal */
.content {
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background-color: #E9EAEE ;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 20px;
}

.content-section h2 {
    color: #3B2715;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0;
    font-style: normal;
}

.content-section p {
    color: #48494C ;
    margin: 10px 0;
    font-style: normal;
    font-size: 1.3rem;
    text-align: justify;
    text-indent: 20px;
    line-height: 1.3;
}

.content-section p a {
    color: #BD9D7E;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.7px;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.content-section p a:hover {
    color: #3B2715;
    text-decoration: underline;
}

.main-list li {
    font-style: normal !important;
    font-size: large;
    text-align: justify;
}


/* FOOTER */

footer {
    padding: 40px 0;
    color: white;
}

footer.bg-primary {
    background-color: #48494C !important;
}

footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-style: normal;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
    font-style: normal;
}

footer ul li a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer h5

/*Texte droits d'auteurs */
    {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #ffffff;
    text-underline-offset: 10px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
    font-family: Garamond;
}

/* Section droits d'auteurs */
.footer-copyright {
    text-align: center;
    padding: 20px;
    background-color: #a2a4a8;
    font-weight: bolder;
    color: #E9EAEE;
    display: inline-block;
    background-color: rgba(108, 117, 125, .75);
    border-radius: 50rem;
    padding: 0.25rem 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: #BD9D7E; 
    font-weight: bold;
    text-decoration: none; 
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.footer-copyright a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Section des logos dans le footer */
.logos-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    background: #E9EAEE;
    border: 1px solid #d3c7b5;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.logos-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 100%;
    height: 40px;
    background: #E9EAEE;
    clip-path: polygon (0 0, 50% 100%, 100% 0);
    z-index: -1;
}

.footer-logo {
    max-height: 60px;
    margin: 0 50px;
}

/* Alignement du menu déroulant */

.dropdown-menu-end {
    right: 0;
    left: auto;
}

@media (max-width: 768px) {

    /* Navbar */
    .navbar-brand:hover {
        color: inherit;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
    }

    .nav-link:hover {
        color: inherit;
        background-color: transparent;
        border-radius: 0;
    }

    /* Logos */
    .footer-logo {
        max-height: 50px;
        margin: 0 8px;
    }

}