/* Hamburger */

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

/* Menu mobile */

.nav-links {
    position: fixed;
    top: 64px;
    left: 0;

    width: 100%;
    height: calc(100vh - 64px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 120px;
    align-items: center;

    gap: 24px;

    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);

    transform: translateX(100%);
    transition: transform .3s ease;

    text-align: center;
}

.nav-links.active {
    transform: translateX(0);
}

.nav-links li {
    list-style: none;
    width: 100%;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;

    color: #1d1d1f;
    text-decoration: none;

    display: block;
    width: 100%;

    padding: 12px 0;
}

.subtitle {
    display: none;
}



.discord-link {
    display: none;
}

.btn-outline {
    display: none;
}

/* ============================================================
   CONTACT — Formulaire (Mobile)
   À ajouter dans contact-mobile.css
   ============================================================ */

.section {
    padding: 40px 0;
}

/* Le conteneur du formulaire passe en pleine largeur */
.section .container>div {
    max-width: 100% !important;
    margin: 0 !important;
}

/* Cartes (message de succès + formulaire) */
.project-card {
    border-radius: 18px;
}

.project-content {
    padding: 24px 20px;
}

.project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 0.88rem;
}

/* Libellés des champs */
form label {
    font-size: 13px !important;
    margin-bottom: 6px !important;
}

/* Champs texte et zone de message
   (styles inline dans le HTML → on surcharge avec !important) */
form input[type="text"],
form input[type="email"],
form textarea {
    padding: 11px 14px !important;
    border-radius: 10px !important;
}

/* Espacement entre les champs */
form>div {
    margin-bottom: 14px !important;
}

form>div:last-of-type {
    margin-bottom: 22px !important;
}

/* Bouton d'envoi */
.btn-main {
    padding: 13px 22px;
    font-size: 0.9rem;
}

/* ==========================================
   FOOTER MOBILE
   ========================================== */

.footer {
    padding: 60px 0 30px;
}

.footer .container {
    padding-left: 20px;
    padding-right: 20px;
}

.footer .footer-brand {
    font-size: 3rem;
    margin-bottom: 24px;
}

.footer-nav {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-col {
    gap: 10px;
}

.footer-col a {
    font-size: 0.95rem;
}

.footer-bottom {
    flex-direction: column;
    gap: 16px;

    text-align: center;

    padding-top: 20px;
}

.footer-legal {
    flex-wrap: wrap;
    justify-content: center;

    gap: 12px;
}

.footer-legal a {
    font-size: 0.75rem;
}

.copyright {
    font-size: 0.75rem;
    line-height: 1.5;
}