/*
Theme Name: Woodmart Child - LightsCameraFood
Theme URI: https://lightscamerafood.com
Description: Child theme for Woodmart - Custom styles for LightsCameraFood
Author: LightsCameraFood
Author URI: https://lightscamerafood.com
Template: woodmart
Version: 1.0.6
Text Domain: woodmart-child
*/

/* ==========================================================================
   Interview Video Section Styles
   ========================================================================== */

.lcf-interview-section {
    padding: 80px 0;
    background-color: transparent;
}

.lcf-interview-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.lcf-interview-section .section-title h2 {
    font-size: 47px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.lcf-interview-section .section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.lcf-video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.lcf-video-container .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

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

/* Accent decoration - matches site's green accent */
.lcf-interview-section .accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #82B735, #C7F962);
    margin: 0 auto 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lcf-interview-section {
        padding: 50px 0;
    }

    .lcf-interview-section .section-title {
        padding: 0 20px;
    }

    .lcf-interview-section .section-title h2 {
        font-size: 32px;
    }

    .lcf-interview-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .lcf-video-container {
        border-radius: 4px;
        box-shadow: none;
        max-width: none;
        width: calc(100vw - 30px);
        margin-left: calc(-50vw + 50% + 15px);
        margin-right: calc(-50vw + 50% + 15px);
    }
}

/* Dark background variant - use class "dark-bg" on section */
.lcf-interview-section.dark-bg {
    background-color: #1a1a1a;
}

.lcf-interview-section.dark-bg .section-title h2 {
    color: #fff;
}

.lcf-interview-section.dark-bg .section-title p {
    color: #ccc;
}

/* ==========================================================================
   Contact Form Fixes
   ========================================================================== */

/* Hide the fieldset that contains hidden fields - it was showing a border */
.wpcf7-form .hidden-fields-container {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
    height: 0;
    overflow: hidden;
}

