/* Footer caché sur mobile */
.footer {
    display: none; /* Masqué par défaut */
}

/* Responsive : affichage sur écrans larges */
@media (width > 40rem) {
/* Conteneur principal du footer */
    .footer {
        display: flex;
        flex-direction: row; /* Colonnes alignées horizontalement */
        gap: 5rem; /* Espacement entre colonnes */
        background-color: #000; /* Fond noir */

    }

/* Titre / logo Launchly */
    .launchly-title {
        color: #009688;
    }

/* Texte descriptif Launchly */
    .launchly-subtext {
        color: #ffffff;;
    }

/* Bloc Launchly */
    .launchly {
        margin-left: 2rem;
    }

/* Titres des sections */
    .company-title {
        color: #009688;
        font-weight: bold;
    }

    .support-title {
        color: #009688;
        font-weight: bold;
    }

    .subscribe-title {
        color: #009688;
        font-weight: bold;
    }
/* Textes de la section Company */
    .company-text {
        padding: 0;
        color: #ffffff;
    }
 /* Textes de la section Support */
    .support-text {
        padding: 0;
        color: #ffff;
    }
 /* Zone email + bouton */
    .space-subscribe {
        display: flex;
        gap: 2rem;
    }
 /* Bouton subscribe */
    .btn-subscribe {
        margin-top: 1rem;
        border: solid 1px #009688;
        color: #ffffff;
        background-color: #009688;
        cursor: pointer;
    }
/* Champ email */
    .subscribe-mail {
        background-color: #ffffff;
        padding-right: 3rem;
        border: solid #ffffff;
    }
/* Texte souscription */
    .subscribe-subtext {
        color: #ffffff;

    }
}