:root {
    --bs-primary: #0d509c;
    --bs-primary-rgb: 9, 80, 151;
    --bs-danger: #f15a29;
    --bs-danger-rgb: 241, 90, 41;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold !important;
}

.navbar {
    padding: 0px;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: 0.3rem 0;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    border-bottom: 2px solid orange;
}

/* Custom styles */
.banner {
    height: 700px;
    background-image: url('../images/Sans-titre.png');
    background-size: cover;
    background-position: center;
}

.logo-md-text{
    display: block;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.15);
}

.z-index-2 {
    z-index: 2;
}

.container {
    max-width: 1000px;
}

.site-footer {
    background-color: #f15a29;
    color: white;
    padding: 20px 20px;
    font-size: 16px;
    border-top: 2px solid white;
}

.footer-section:not(:first-child) {
    border-left: 1px solid white;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons img {
    width: 50px;
    height: 50px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .banner {
        height: 500px;
    }

    .navbar-brand {
        margin: 10px 0;
    }

    .footer-section {
        text-align: center !important;
    }

    .social-icons {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {

    .logo-md-text{
        display: none;
    }

    .navbar-nav .nav-link {
        padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.show {
        border-width: 0;
    }

    .banner {
        height: 400px;
    }

    h2.display-4 {
        font-size: 2rem;
    }

    p.fs-4 {
        font-size: 1rem !important;
    }

    .footer-section:not(:first-child) {
        border-style: none;
    }
}