/* home-hero.css */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 0;
}

.hero h1 {
    font-size: 64px; /* 4rem equivalent */
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 24px; /* 1.5rem equivalent */
    margin-bottom: 30px;
}

.cta-button {
    background-color: #00b33c;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 19.2px; /* 1.2rem equivalent */
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #009933;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px; /* 2.5rem equivalent */
    }

    .hero p {
        font-size: 16px; /* 1rem equivalent */
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 16px; /* 1rem equivalent */
    }
}
