/* Navbar custom */
.navbar-custom {
    background: linear-gradient(90deg, #171718, #024a93);
}


.navbar-brand img {
    max-width: 100%;
    height: auto;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1rem;
}

.navbar-nav .nav-link:hover {
    color: #ccc;
}

/* Section CGV */
#services {
    background-image: url(images/design_9.png);
    background-size: cover;
    padding: 4rem 0;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 2rem;
    text-align: center;
}

.section-title {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 2rem;
    color: #333;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

ul li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {

    
    background: linear-gradient(90deg, #004080, #1e3853);
           /* Dégradé bleu allant de #004080 (bleu foncé) à #0073e6 (bleu clair) */
       
   }
   .footer p {
       margin: 0;
       font-size: 14px;
   }
   
   .footer i {
       font-size: 1.2rem;
       transition: color 0.3s ease-in-out;
   }
   
   .footer i:hover {
       color: #007bff;
   }
   

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    ul li {
        font-size: 0.9rem;
    }
}
/* Footer Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #333; /* Background color of the footer */
}

.footer-links a {
    color: #ffffff; /* White color for text */
    text-decoration: none;
    margin: 5px 10px; /* Spacing between links */
    font-size: 14px; /* Font size */
}

.footer-links a:hover {
    color: #ff6347; /* Hover effect with color change */
    text-decoration: underline; /* Underline on hover */
}

.footer-social-icons {
    margin-top: 10px;
}

.footer-social-icons a {
    color: #ffffff; /* White color for social media icons */
    font-size: 18px; /* Size of the social media icons */
    margin: 0 8px; /* Spacing between social icons */
}

.footer-social-icons a:hover {
    color: #ff6347; /* Hover effect for icons */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .footer-links a {
        margin: 5px 0; /* Adjust margin for mobile view */
    }

    .footer-social-icons a {
        font-size: 16px; /* Adjust icon size for mobile */
    }
}
