/* =========================================
   CINEMATIC VIDEO SECTION
   ========================================= */

#cinematic-video {
    position: relative;
    width: 100%;
    height: 70vh; /* Takes up 70% of viewport height */
    overflow: hidden;
    padding: 0; /* Removes default padding to allow full stretch */
    display: flex;
    align-items: center; /* Vertically center the content */
}

/* 1. Video Layer */
.video-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
}

/* 2. Premium Gradient Overlay */
/* Only visible if 'Show Overlay' is checked in admin */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Darker at bottom for text readability */
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

/* 3. Content Layout */
.video-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
}

/* 4. Text Styling */
.text-block {
    max-width: 600px;
    color: #fff;
    /* Optional: Slide up animation */
    animation: fadeInUp 1s ease-out;
}

.video-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* The Left Border Design */
.video-desc-wrapper {
    border-left: 3px solid var(--primary-gold); /* Uses your brand gold */
    padding-left: 25px;
    margin-left: 5px;
}

.video-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* --- ANIMATION --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    #cinematic-video { height: 50vh; }
    
    .video-heading { font-size: 2.2rem; }
    
    .video-desc-wrapper {
        border-left-width: 2px;
        padding-left: 15px;
    }
    
    .video-desc { font-size: 0.95rem; }
}