/* =========================
   Hero Component (Reusable)
   Can be used across multiple pages
========================= */

.mz-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding: 80px 20px;
}

.mz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(55, 214, 255, 0.08), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 59, 212, 0.06), transparent 50%);
    pointer-events: none;
}

.mz-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mz-hero h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #37d6ff, #ff3bd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mz-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .mz-hero {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .mz-hero h1 {
        font-size: 42px;
    }

    .mz-hero p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mz-hero h1 {
        font-size: 32px;
    }
}