/* -----------------------------------------------------
   HOMEPAGE HERO SECTION — Free Online CV Maker
----------------------------------------------------- */

.mmc-hero {
    width: 100%;
    min-height: 85vh;
    background: linear-gradient(
                135deg,
                rgba(31, 58, 95, 0.95) 0%, 
                rgba(45, 74, 111, 0.90) 50%,
                rgba(31, 58, 95, 0.95) 100%
              ),
              var(--light-gray);
    /* If you want background image later, replace above line with: */
    /* url('../images/your-bg.webp') center/cover no-repeat; */
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    color: var(--white);
    position: relative;
}

/* HERO CONTENT */
.mmc-hero-content {
    max-width: 800px;
    animation: fadeUp 1.1s ease-out;
}

.mmc-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.mmc-hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    font-weight: 400;
    color: var(--mmc-white);

}

/* CTA BUTTON */
.mmc-hero-btn {
    background: var(--brand-green);
    color: var(--white);
    padding: 14px 34px;
    font-size: 1.1rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.mmc-hero-btn:hover {
    background: var(--brand-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: var(--white);
}

/* Hero Highlight Text */
.hero-highlight {
    color: var(--brand-green);
    position: relative;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features i {
    color: var(--brand-green);
    font-size: 1.1rem;
}

/* Animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mmc-hero h1 {
        font-size: 2.5rem;
    }
    .mmc-hero p {
        font-size: 1.1rem;
    }
    .hero-features {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .mmc-hero {
        padding: 60px 20px;
        min-height: 70vh;
    }
    .mmc-hero h1 {
        font-size: 2rem;
    }
    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .hero-features span {
        font-size: 0.9rem;
    }
}
