/* ======================================
    HERO styles
========================================*/

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    min-height: 400px;
    padding: 2rem 4rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--bg) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    gap: 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.15);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 50%;
    padding: 2rem;
}

.hero-image {
    max-width: 25%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 2rem;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
}


@media (max-width: 1000px) {
    .hero {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .hero-image img {
        max-width: 40%;
        mask-image: none; /* optional: remove fade for small screens */
    }

}

@media (max-width: 600px) {
    .hero {
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .hero-image img {
        max-width: 40%;
        mask-image: none; /* optional: remove fade for small screens */
    }

}
