/* ===== acceuil.css - Apple / Telegram style ===== */

/* Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f4f5f7;
    color: #1c1c1e;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

/* Menu */
.menu {
    display: flex;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 1px solid #ccc;
    justify-content: center;
    align-items: center;
}

.menu a {
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    color: #007aff;
    transition: background 0.2s, color 0.2s;
}

.menu a:hover {
    background: #007aff;
    color: #fff;
}

/* Footer (optionnel) */
footer {
    text-align: center;
    padding: 20px 0;
    background: #fff;
    border-top: 1px solid #ccc;
    color: #1c1c1e;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 10px;
    }
}
