:root {
    /* New site-wide variables - defined in main.css, but for self-containment/readability in videos.css */
    --color-deep-forest: #2d4034;
    --color-earth-brown: #5c4a3c;
    --color-stone-gray: #a0a5a3;
    --color-light-sand: #f5f2ec;
    --color-warm-accent: #d48d3f;
    --color-text-dark: #38302a;
    --color-text-light: #f8f8f8;
    --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 6px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

.hero-section {
    background-color: var(--color-deep-forest);
    color: var(--color-text-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/images/mountainman.png") no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.section-py {
    padding: 5rem 0;
}

.bg-light-gray {
    background-color: var(--color-light-sand);
}

.section-title {
    color: var(--color-deep-forest);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-dark);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 0.75rem;
    background: var(--color-earth-brown); /* Changed to earth brown */
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

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

.video-title {
    font-size: 1.15rem;
    color: var(--color-text-dark); /* Changed to text-color-dark */
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Mobile Responsiveness for Videos Page */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p.lead {
        font-size: 1rem;
    }

    .section-py {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .video-container {
        margin-bottom: 0.5rem;
    }

    .video-title {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 300px;
    }
}
