body {
    font-family: Arial, sans-serif;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700 !important;  /* ⬅️ CORRIGÉ : !important */
}



.nav-link.active {
    font-weight: bold;
    color: #ffd700 !important;  /* ⬅️ CORRIGÉ : !important */
}
/* Section Hero */
.hero {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 100px 0;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .btn {
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Section Cartes */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}
/* Footer */
footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffd700 !important;
}

footer ul li {
    margin-bottom: 8px;
}