/*
* assets/css/pages/single-vlog.css
*/

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

/* Match the dark sidebar widgets to the single blog style */
.single-vlog .sidebar-column .widget {
    background-color: #1e293b; /* Dark slate blue-gray */
    color: #cbd5e1;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    padding: 1.5rem;
}

.single-vlog .sidebar-column .widget-title {
    color: #ffffff;
    border-bottom-color: #475569;
}

.single-vlog .toc-widget .table-of-contents li a {
    color: #cbd5e1;
}

.single-vlog .toc-widget .table-of-contents li a:hover {
    background-color: #334155;
    color: #ffffff;
    border-left-color: #0ea5e9; /* Vlog Blue Accent */
}

.single-vlog .cta-widget p {
    color: #cbd5e1;
}

.single-vlog .social-share-widget a {
    color: #94a3b8;
}

/* Styles for the Single Vlog Video Facade */

.vlog-player-facade {
    background-color: #000; /* Black background as a fallback */
    transition: all 0.3s ease-in-out;
}

.vlog-player-facade:hover .vlog-play-button-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

.vlog-player-facade:hover .vlog-play-button-overlay svg {
    transform: scale(1.1);
}

.vlog-player-facade .vlog-play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease-in-out;
}

.vlog-player-facade .vlog-play-button-overlay svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    transition: transform 0.3s ease-in-out;
}

.vlog-player-facade img {
    transition: transform 0.3s ease-in-out;
}

.vlog-player-facade:hover img {
    transform: scale(1.03);
} 