/* ===========================
   STYLE CONTACT PAGE - FUSIKAB DJ
   =========================== */

.contact-section {
    padding: 60px 0;
}

.contact-section h1 {
    color: #ffcc00;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-section p.lead {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Formulaire */
.contact-form .form-label {
    font-weight: 500;
    color: #f5f5f5;
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
    background-color: #1a1a1a;
    border: 1px solid #ffcc00;
    color: #f5f5f5;
    border-radius: 10px;
    padding: 10px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
    border-color: #ffcc00;
    outline: none;
}

.contact-form .form-check-label {
    color: #f5f5f5;
    margin-left: 5px;
}

.contact-form .form-check-input:checked {
    background-color: #ffcc00;
    border-color: #ffcc00;
}

.contact-form .btn-warning {
    background-color: #ffcc00;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 40px;
    transition: all 0.3s ease;
}

.contact-form .btn-warning:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 1.5rem;
    }
}
