html, body {
    height: 100%;
    margin: 0;
}

.header-bg {
    background-color: #2c3e50;
    color: white;
}

.content-wrap {
    min-height: 100%;
    /* Équivalent à la hauteur du footer */
    margin-bottom: -50px; 
}

.content-wrap:after {
    content: "";
    display: block;
}

footer, .content-wrap:after {
    height: 50px; 
}

footer {
    background: #333; /* Couleur de votre choix */
    color: white;
    text-align: center;
    padding: 20px 0;
    /* Ajouter box-shadow si désiré pour une séparation visuelle */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
}

.body-bg {
    background-color: #FFFFFF;
    color: #2c3e50;
    padding: 50px 0;
}

.footer-bg {
    background-color: #1a252f;
    color: white;
}

h1, h2, h3, .h1, .h2, .h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    line-height: 1.2;
}

h1, .h1 {
    font-size: calc(0.6875rem + 0.75vw);
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: 1.25rem;
    }
}

h2, .h2 {
    font-size: calc(0.6625rem + 0.45vw);
}

@media (min-width: 1200px) {
    h2, .h2 {
        font-size: 1rem;
    }
}

h3, .h3 {
    font-size: calc(0.65rem + 0.3vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 0.875rem;
    }
}

#mainNav .navbar-brand { 
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    color: #fff;
    font-size: 1.75rem;
}

/* Styles pour le lien "CONTACT" */
#mainNav .contact-link {
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
    color: #50C878 !important; /* Vert émeraude */
}

#mainNav .contact-link:hover {
    color: #2c3e50; /* Changer la couleur au survol */
}

/* Styles pour le lien "Mentions légales" */
#contact a {
    color: #50C878; /* Vert émeraude */
}

#contact a:hover {
    color: #2c3e50; /* Changer la couleur au survol */
}

.my-5 {
    margin-top: 0rem !important;
    margin-bottom: 2rem !important;
}
.d-none {
    display: none !important;
}
