/* ===========================
   SERVICES PAGE - FUSIKAB DJ
   =========================== */

.services-section {
    padding: 60px 15px;
}

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

.services-section p.lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Cartes des services */
.service-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    color: #ffcc00;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #f5f5f5;
    font-size: 1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,204,0,0.4);
}

/* Types d'événements */
.event-types h2 {
    color: #ffcc00;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.event-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 25px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.event-card h4 {
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-card p {
    color: #f5f5f5;
    font-size: 0.95rem;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,204,0,0.4);
}

/* 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) {
    .services-section {
        padding: 40px 10px;
    }

    .service-card, .event-card {
        padding: 20px 15px;
    }
}
