@import url(../theme.css);

/* Make the hero section take the full viewport height */
.tv-download-hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e1e6;
}

/* Inner card */
.hero-inner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left image/video column */
.hero-image-wrap {
    flex: 0 0 auto;
    width: 50%;
    display: flex;
    justify-content: center;
}

.hero-device-img,
.hero-device-video {
    width: 100%;
    height: 90vh;
    display: block;
}

/* Right text column stays the same */
.hero-content {
    flex: 1 1 auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-logo-box img {
    object-fit: contain;
    margin-bottom: 30px;
}

/* Download Button */
.download-apk-btn {
    border-radius: 50px;
    box-shadow: none;
    background: var(--btn-primary);
    padding: 15px 30px;
    box-shadow: inset 1px 1px 3px var(--white);
    border: 0;
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    border: solid 1px var(--white);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.download-apk-btn:hover {
    background: var(--btn-primary-hover);
    box-shadow: inset 1px 1px 3px var(--white), 0 0 10px var(--brand-ink);
    color: var(--white);
    border: solid 1px var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-image-wrap{
        width: 100%;
    }

    .hero-device-img, .hero-device-video{
        height: 50vh;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 28px;
    }
}