/* HERO SECTION */

.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* VIDEO */

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* DARK OVERLAY */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.6);
    z-index: 1;
}

/* CONTENT */

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: #fff;
    padding: 20px;
}

/* TEXT */

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* BUTTON */

.hero-content button {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    background: #0ea5e9;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.hero-content button:hover {
    background: #0284c7;
}

/* 📱 MOBILE */

@media (max-width: 768px) {

    .hero-video {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content button {
        font-size: 14px;
        padding: 10px 20px;
    }
}