/* Import d'une police Ã©lÃ©gante (remplacez-la par une police de votre choix) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Déclaration de la police Neuropol Custom */
@font-face {
    font-family: 'Neuropol Custom';
    src: url('https://assets.team-réality.com/assets/fonts/neuropol/Neuropol X Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*,::before,
::after {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    overflow-x: hidden;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --light-grey: #f0f0f0;
}


@media screen and (min-width : 0px) {
    
    /*PARTENAIRES*/
    .partenaires_wrapper {
        padding: 0px 20px 60px 20px;
        background: #000000;
        text-align: center;
    }

    .partenaires_wrapper h1 {
        margin-bottom: 40px;
        color: white;
        font-size: 2rem;
    }

    .partenaires_container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .partenaire_item {
        width: 100%;
        height: auto;
    }

    .partenaire_item>a>img {
        width: 80%;
        margin: 10px;
    }

    /* --- Footer --- */
    .footer {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding: 3rem 2rem;
        font-family: 'Poppins', sans-serif;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 2rem;
    }

    .footer-column,
    .footer-social {
        margin-bottom: 2rem;
    }

    .footer h3 {
        font-weight: 500;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer ul li {
        margin-bottom: 0.75rem;
    }

    .footer a {
        color: var(--secondary-color);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
        font-weight: 300;
    }

    .footer a:hover {
        color: #e0e0e0;
    }

    .social-icons {
        display: flex;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .social-icons a {
        display: flex;
    }

    .social-icons svg {
        width: 24px;
        height: 24px;
        color: var(--secondary-color);
        transition: transform 0.3s ease;
    }

    .social-icons a:hover svg {
        transform: scale(1.1);
    }

    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Styles pour la section newsletter dans le footer */
    .footer-column.newsletter-column h3 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: var(--secondary-color);
    }

    .newsletter-column form {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .newsletter-column label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .newsletter-column input[type="email"] {
        padding: 0.75rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--secondary-color);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .newsletter-column input[type="email"]::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-column input[type="email"]:focus {
        border-color: var(--secondary-color);
        outline: none;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .newsletter-column button {
        padding: 0.75rem 1rem;
        background-color: var(--secondary-color);
        color: var(--primary-color);
        border: none;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .newsletter-column button:hover {
        background-color: #f0f0f0;
        transform: translateY(-2px);
    }

    /* Styles pour les messages de succès et d'erreur */
    #newsletter-message {
        margin-top: 0.5rem;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    /* Vous pouvez ajouter des classes spécifiques pour les messages de succès et d'erreur si vous voulez un style plus poussé */
    #newsletter-message.success {
        color: #4CAF50;
        /* Vert pour le succès */
    }

    #newsletter-message.error {
        color: #F44336;
        /* Rouge pour l'erreur */
    }

}

@media screen and (min-width : 768px) {

    /*PARTENAIRES*/
    .partenaires_wrapper {
         padding: 0px 40px 60px 40px;
        background: #000000;
        text-align: center;
    }

    .partenaires_container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media screen and (min-width : 1024px) {

    /*PARTENAIRES*/
    .partenaire_item>a>img {
        width: 60%;
    }
}