/* Video Showcase Styles */

.video-showcase {
    padding: 80px 0;
    background-color: var(--vca-white);
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-overlay-wrapper {
    position: relative;
}

.video-overlay-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 30px 20px 20px;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    z-index: 5;
    pointer-events: none; /* Allow clicks to pass through to the video */
}

.featured-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Play button styling */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(230, 57, 70, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background-color: var(--vca-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
    color: white;
    font-size: 30px;
    margin-left: 8px; /* Slight offset for play icon */
}

/* Responsive styles */
@media (max-width: 768px) {
    .video-showcase {
        padding: 60px 0;
    }
    
    .video-overlay-title {
        font-size: 1.3rem;
        padding: 25px 15px 15px;
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 24px;
    }
}
