/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.single-video .video-main {
    width: 100%;
    padding: 200px 0 0 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.single-video .hero-section {
    width: 100%;
    min-height: 300px;
    background-color: #1a1a1a; /* Darker black for hero */
    padding: 40px 0;
}

.single-video .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Side padding for content */
}

.single-video .hero-wrap {
    display: flex;
    align-items: center; /* Vertically center image and text */
    gap: 40px; /* Space between image and title */
    flex-wrap: wrap; /* Wrap on smaller screens */
}

.single-video .hero-image {
    flex: 0 0 auto;
}

.single-video .hero-image img {
    max-width: 400px; /* Match reference image size */
    height: auto;
    border: 5px solid #ff6200; /* Orange border to match theme */
    border-radius: 0; /* Square edges */
}

.single-video .hero-text {
    flex: 1; /* Allow text to take remaining space */
    text-align: left; /* Left-align title */
}

.single-video .hero-title {
    font-size: 2.5em;
    color: #ff6200; /* Orange title */
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Enhance readability */
}

.single-video .details-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.single-video .entry-content {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #000;
    color: #fff;
}

.single-video .video-description {
    margin-bottom: 20px;
}

.single-video .video-description h2 {
    color: #ff6200; /* Orange for heading */
    font-size: 1.8em;
}

.single-video .video-description p {
    line-height: 1.6;
}

.single-video .video-thumbnail {
    margin-bottom: 20px;
}

.single-video .video-thumbnail img {
    max-width: 100%;
    height: auto;
}

.single-video .entry-footer {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-video .hero-wrap {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .single-video .hero-image img {
        max-width: 100%;
    }
    
    .single-video .hero-title {
        font-size: 2em;
    }
}