/* Video Section Styles */

.video-section {
    position: relative;
    width: 100%;
}

.video-section-content {
    width: 100%; 
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button:hover img {
    transform: scale(1.1);
}

/* Hide play button when video is playing */
.video-wrapper.playing .video-play-button {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .video-play-button {
        width: 80px;
        height: 80px;
    }
    
    .video-section-content {
        padding: 0 15px;
    }
}
