/* CSS file for sc_hero_video.php */
.hero-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 700px;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Dark Overlay */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3; /* Place content above overlay */
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    margin-top: 200px;
    font-size: 5em;
    color: white;
}

.hero_subtitle {
    font-size: 5em;
    color: white;
    text-decoration:underline;
}

/* Mobile adjustments */
@media only screen and (max-width: 768px) {
    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 5.0em;
    }

    .hero-content p {
        font-size: 4.0em;
    }
}
