/* Styles pour la section paysage avec animation au survol */
.landscape-section-container {
    display: flex;
    justify-content: center;
    padding: 2rem 0 5rem;
    background-color: #FFFFFF;
    position: relative;
    z-index: 5;
    margin-bottom: -3rem;
}

.landscape-section {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 11, 16, 0.12), 0 10px 20px rgba(124, 137, 255, 0.08);
    position: relative;
}

.landscape-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1557838923-2985c318be48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: brightness(0.9);
}

/* Gardons un léger effet sur l'arrière-plan au survol */
.landscape-section:hover .landscape-background {
    transform: scale(1.02);
    filter: brightness(0.8);
}

/* Suppression du contenu texte qui a été retiré */


/* Cercle central */
/* Conteneur global pour le cercle et l'étiquette */
.video-preview-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 5;
    width: auto;
    white-space: nowrap;
}

.center-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #5f69cc 0%, #7C89FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(124, 137, 255, 0.3), 0 0 0 8px rgba(233, 231, 255, 0.5);
    transition: all 0.3s ease;
}

.center-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(124, 137, 255, 0.4), 0 0 0 12px rgba(233, 231, 255, 0.6);
}

.center-circle svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Lignes décoratives modernes autour de l'image */
.landscape-section::before,
.landscape-section::after {
    content: '';
    position: absolute;
    background: #7C89FF;
    opacity: 0.7;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Ligne horizontale supérieure */
.landscape-section::before {
    top: 20px;
    left: 50px;
    width: 120px;
    height: 3px;
    transform: translateX(-30px);
}

/* Ligne verticale gauche */
.landscape-section::after {
    top: 50px;
    left: 20px;
    width: 3px;
    height: 80px;
    transform: translateY(-30px);
}

/* Effet de brouillard en bas qui dépasse sur la section suivante */
.landscape-section-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: linear-gradient(to bottom, transparent 0%, #FFFFFF 100%);
    z-index: 4;
    pointer-events: none;
}

/* Animation de pulsation pour le cercle central */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 137, 255, 0.5), 0 0 0 8px rgba(233, 231, 255, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(124, 137, 255, 0), 0 0 0 16px rgba(233, 231, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(124, 137, 255, 0), 0 0 0 8px rgba(233, 231, 255, 0.5);
    }
}

.center-circle {
    animation: pulse 2.5s infinite;
}

/* Style pour l'étiquette vidéo en dessous du cercle */
.video-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 12px 30px 12px 60px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 0;
    width: auto;
    white-space: nowrap;
}

.video-title {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    color: #000B10;
    margin: 0 15px 0 0;
    white-space: nowrap;
}

.video-duration {
    font-size: 0.85rem;
    color: #888;
    margin: 0 15px 0 0;
    white-space: nowrap;
}

.video-avatar {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.video-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landscape-section {
        height: 400px;
    }
    
    .landscape-title {
        font-size: 2rem;
    }
    
    .landscape-description {
        font-size: 1rem;
    }
    
    .player-container {
        width: 90%;
        height: 60%;
    }
    
    .player-controls {
        height: 60px;
    }
    
    .player-progress {
        bottom: 60px;
    }
    
    .player-volume-slider {
        width: 60px;
    }
    
    .play-button-large {
        width: 60px;
        height: 60px;
    }
    
    .video-preview-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .video-label {
        padding: 10px 25px 10px 50px;
    }
    
    .video-title {
        font-size: 0.95rem;
        margin: 0 10px 0 0;
    }
    
    .video-duration {
        font-size: 0.8rem;
        margin: 0 10px 0 0;
    }
    
    .video-avatar {
        width: 35px;
        height: 35px;
        left: -15px;
    }
}

@media (max-width: 576px) {
    .player-volume-slider {
        display: none;
    }
    
    .player-controls-right {
        gap: 10px;
    }
}

/* Animation de pulsation pour le bouton play */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 137, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(124, 137, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(124, 137, 255, 0);
    }
}

.landscape-section:not(:hover) .play-button-large {
    animation: pulse 2s infinite;
}
