/* Styles personnalisés pour améliorer le design */

/* Styles généraux */
body {
    font-family: 'montserrat', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background-color: #f8f9fa;
}

/* Amélioration de la navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    background-color: white !important;
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Amélioration des liens de navigation */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
    margin: 0 10px;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    text-decoration: none !important;
}

/* Amélioration du footer */
footer {
    background: linear-gradient(to right, #f8f9fa, #e9ecef) !important;
    color: var(--primary) !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

footer h6 {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

footer h6::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--secondary) !important;
    text-decoration: none !important;
    transform: translateX(5px);
}

/* Icônes de réseaux sociaux */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--primary);
    margin: 0 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Amélioration du contenu principal */
main {
    min-height: 70vh;
    padding: 2rem 0;
}

/* Animations et transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer h6::after {
        left: 0;
        margin: 0;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        margin: 0 3px;
    }
}