/* Window Videos Page Styling */

/* Hero */
.video-hero {
    background: #f8f9fa;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.video-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-hero h1 {
    font-size: 2.75rem;
    color: var(--black, #111);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Breadcrumbs override */
.breadcrumbs {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--green, #5c8018);
}

/* Video Grid */
.video-grid-section {
    padding: 4rem 1.5rem;
    background: #fff;
}

.video-container-width {
    max-width: 1200px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.video-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Responsive Video Wrapper (16:9) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-content {
    padding: 1.75rem;
}

.video-content h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--black, #111);
    line-height: 1.3;
}

.video-content p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-highlights {
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
    color: #374151;
}

.video-highlights li {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.text-link {
    color: var(--green, #5c8018);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.text-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.video-faq-section {
    background: #f3f4f6;
    padding: 5rem 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--black, #111);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--black, #111);
}

.faq-item p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.video-cta {
    background: var(--black, #1a1a1a);
    padding: 5rem 1.5rem;
    text-align: center;
    color: #fff;
}

.video-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.video-cta p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-green {
    background: var(--green, #5c8018);
    color: #fff;
    border: none;
}

.btn-green:hover {
    background: #4a6613;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-hero { padding: 4rem 1rem 3rem; }
    .video-hero h1 { font-size: 2rem; }
    .video-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .video-cta h2 { font-size: 2rem; }
}