.main-footer {
    background: linear-gradient(to right, #8A00C4, #4A0080);
    color: white;
    padding: 60px 40px 30px;
    position: relative;
    font-family: 'Poppins', sans-serif;
    margin-top: 100px; /* Espace pour la vague */
}

/* Création de l'effet de vague en haut du footer */
.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

/* Style de la partie Newsletter/Boutons */
.newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
}

.newsletter-input input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    background-color: #FFC107; /* Couleur jaune de l'image */
    color: #333;
    font-weight: 500;
}

.btn-subscribe {
    background: linear-gradient(to right, #A000D0, #2E004F);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-organizer {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 12px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-organizer:hover {
    background: white;
    color: #8A00C4;
}

/* Logo spécifique pour le footer */
.brand .logo {
    font-weight: 800;
    font-size: 28px;
    font-style: italic;
    margin-bottom: 10px;
}

.copyright {
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section {
        align-items: center;
    }
}