/* Section Vidéo */
.video-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.video-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 770px;
    margin: 0 auto 2rem auto;
}

.video-player {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.video-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-description {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

/* Responsive pour la section vidéo */
@media (max-width: 768px) {
    .video-section {
        padding: 2rem 0;
    }

    .video-container h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .video-wrapper {
        margin-bottom: 1.5rem;
    }

    .video-description {
        font-size: 1rem;
        text-align: center;
    }
}