/* ===========================
   LUMIÈRES & AMBIANCE VISUELLE
   =========================== */

.lights-section {
    background-color: #0d0d0d;
    color: #f5f5f5;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

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

.lights-section p {
    margin-bottom: 15px;
}

.lights-section ul.lights-list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
}

.lights-section ul.lights-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* FADE-IN ANIMATION */
.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) {
    .lights-section {
        padding: 20px 15px;
    }
    .lights-section ul.lights-list {
        margin-left: 20px;
    }
}
