/* Corps général */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar */
.navbar {
    background: linear-gradient(to right, #98B46D, #DAE8C5);
    transition: background-color 0.3s;
}
.nav-link:hover {
    color: #51cf66 !important;
    text-decoration: underline;
}

/* Sections */
.section {
    padding: 60px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.section img {
    width: 250px;
    height: 250px;
    align-self: center;
}
/* Boutons */
.btn {
    border-radius: 20px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary {
    background: #51cf66;
    color: white;
    border: none;
}
.btn-primary:hover {
    background: #45b649;
    transform: scale(1.05);
}

/* Images */
.section-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.section-image:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(to right, #98B46D, #DAE8C5);
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
