/* =========================
   STYLES POUR MOBILE
   ========================= */

/* Header mobile */
header {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 15px;
}

/* Logo + boutons côte à côte */
header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-buttons {
    display: flex;
    gap: 5px;
    margin: 0;
}

.header-buttons button {
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 4px;
}

/* ===== MENU BURGER ===== */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin-left: 10px;
    cursor: pointer;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

#menu-toggle { display: none; }

/* Cacher le menu par défaut */
header nav {
    display: none;
    width: 100%;
}

header nav ul {
    flex-direction: column;
    gap: 15px;
    background: black;
    padding: 20px 0;
    text-align: center;
    margin: 0;
}

/* Quand on coche le burger → afficher menu */
#menu-toggle:checked ~ nav {
    display: flex;
    flex-direction: column;
}

/* Sections : une seule colonne */
#objectif .objective-grid,
#fonctionnalites .feature-grid,
#partenaires .partners-grid {
    grid-template-columns: 1fr;
}

/* Hero section */
.hero {
    margin-top: 120px;
    padding: 10px;
}

.hero h1 {
    font-size: 2rem;
}

.hero p {
    font-size: 1rem;
}

/* Footer centré */
footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

footer .footer-links {
    text-align: center; /* ✅ centrer A PROPOS */
}

footer .footer-download {
    flex-direction: row;
    gap: 10px;
}
