/* ====== LUMIÈRES ROUGES ANIMÉES SUR LES CÔTÉS ====== */
.light-left, .light-right {
    position: fixed;
    top: 0;
    width: 220px;
    height: 100%;
    background: radial-gradient(circle, rgba(255,0,60,0.25), transparent 70%);
    filter: blur(70px);
    z-index: -1;
    animation: sideLight 7s ease-in-out infinite;
}

.light-left { left: -90px; }
.light-right { right: -90px; animation-delay: 1.5s; }

@keyframes sideLight {
    0% { transform: translateY(-40px) scale(1); opacity: 0.4; }
    50% { transform: translateY(40px) scale(1.2); opacity: 0.65; }
    100% { transform: translateY(-40px) scale(1); opacity: 0.4; }
}

/* ====== GRAIN CINÉMA ====== */
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    background: url('photos/grain.png');
    opacity: 0.07;
    mix-blend-mode: overlay;
    z-index: 999;
}

/* ====== SCROLL REVEAL (CSS ONLY) ====== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    animation: revealAnim 1s ease forwards;
}

@keyframes revealAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== CARDS VIDÉO ANIMÉES ====== */
.video-card {
    background: #111;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Halo rouge animé */
.video-card::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,0,60,0.35);
    filter: blur(40px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s ease;
    opacity: 0;
}

.video-card:hover::before {
    width: 260px;
    height: 260px;
    opacity: 1;
}

/* Zoom cinéma */
.video-card video {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: 0.4s ease;
}

.video-card:hover video {
    transform: scale(1.05);
}

/* Aspect ratios */
.vertical video { aspect-ratio: 9/16; }
.horizontal video { aspect-ratio: 16/9; }
.contact-header {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.contact-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
}

.contact-header p {
    margin: 6px 0;
    font-size: 16px;
    line-height: 1.4;
}
.footer {
    text-align: center;
    padding: 40px 0;
    background: #ffffff;
    color: #000;
    font-size: 15px;
    border-top: 1px solid #e5e5e5;
    margin-top: 80px;
}
