/* Importation des polices locales */
@font-face {
    font-family: 'Francy Modern Sans Display';
    src: url('fonts/FrancyModernSansDisplay.woff2') format('woff2'),
         url('fonts/FrancyModernSansDisplay.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Importation de la police Poppins via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Styles généraux */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

/* Styles des titres */
h1, h2, h3, h4, h5 {
    font-family: 'Francy Modern Sans Display', serif !important; 
    font-weight: bold;
}
h1 {
    font-family: 'Francy Modern Sans Display', sans-serif;
    font-size: 35px;
    margin-bottom: 20px;
    color: #000;
}

h2 {
    font-family: 'Francy Modern Sans Display', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

/* Styles pour le texte */
p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.bg-olivine { 
    background-color: #9FBC92;
}
footer p{
    color: #fff;
}

/* navigation */
nav ul {
    gap: 50px;
    font-weight: bold;
}

nav.inverted {
    width: 100%;
    z-index: 10;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0)) !important;
    position: absolute;
    left: 0;
    top: 0;
}

nav.inverted a.nav-link {
    color: white;
}

nav li a:hover, a.nav-link:hover {
    color: #9FBC92 !important;
}

/* carousel */

.carousel-item {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-item img {
    min-height: 100%;
    object-fit: cover;
}

footer p > a {
    color:#fff;
    text-decoration: none;
}

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

.wp-block-embed iframe {
    margin: auto;
    display: block;
}