/* --- STRUCTURE GÉNÉRALE --- */
body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #f1f1f1;
    font-family: 'Poppins', sans-serif;
}

.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.contact-card {
    background: #0b0b0b;
    border: 1px solid #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(255, 216, 77, 0.08);
    max-width: 550px;
    width: 100%;
    text-align: center;
    padding: 50px 40px;
    animation: fadeInUp 1s ease;
}

/* --- ANIMATION --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- LOGO --- */
.contact-logo {
    width: 160px;
    margin-bottom: 25px;
}

/* --- TITRE ET TEXTE --- */
.contact-card h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f1f1f1;
    margin-bottom: 10px;
}

.contact-card h1 span {
    color: #FFD84D;
}

.intro-text {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* --- FORMULAIRE --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-group {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    background: #111;
    border: 1px solid #FFD84D;
    border-radius: 8px;
    color: #f1f1f1;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 216, 77, 0.4);
}

/* --- BOUTON --- */
.btn-contact {
    background: #FFD84D;
    color: #111;
    font-weight: 600;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-contact:hover {
    background: #111;
    color: #FFD84D;
    box-shadow: 0 0 15px rgba(255, 216, 77, 0.6);
}

/* --- FOOTER TEXTE --- */
.contact-footer {
    margin-top: 25px;
    font-size: 0.9rem;
    color: #aaa;
}

.contact-footer a {
    color: #FFD84D;
    text-decoration: none;
    font-weight: 600;
}

.contact-footer a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .contact-card {
        padding: 40px 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-card h1 {
        font-size: 1.6rem;
    }

    .intro-text {
        font-size: 0.9rem;
    }
}
