/* -----------------------------------------------------
   3 STEPS SECTION — MAKEMYCV
----------------------------------------------------- */

.mmc-steps {
    padding: 80px 20px;
    background: var(--mmc-bg-cream);
    text-align: center;
}

.mmc-section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--mmc-text-dark);
    font-family: var(--mmc-font-alt);
}

.mmc-section-subtitle {
    font-size: 1.1rem;
    color: var(--mmc-text-dark);
    max-width: 650px;
    margin: 0 auto 50px;
    font-family: var(--mmc-font);
}

/* Step Cards */
.mmc-steps-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mmc-step-card {
    background: var(--mmc-white);
    padding: 30px 25px;
    border-radius: 12px;
    max-width: 330px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
}

.mmc-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.mmc-step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--mmc-blue),
        var(--mmc-blue-grey)
    );
    color: var(--mmc-white);
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mmc-step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mmc-text-dark);
    margin-bottom: 10px;
    font-family: var(--mmc-font-alt);
}

.mmc-step-card p {
    font-size: 0.98rem;
    color: var(--mmc-text-dark);
}





/* -----------------------------------------------------
   RESPONSIVE BREAKPOINTS
----------------------------------------------------- */


/* Tablets (768px – 991px) */
@media (max-width: 992px) {
    .mmc-section-title {
        font-size: 2.1rem;
    }

    .mmc-section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .mmc-step-card {
        max-width: 45%;
    }
}

/* Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
    .mmc-section-title {
        font-size: 1.8rem;
    }

    .mmc-section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .mmc-step-card {
        max-width: 100%;
        padding: 25px 20px;
    }

    .mmc-step-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .mmc-step-card h3 {
        font-size: 1.1rem;
    }

    .mmc-step-card p {
        font-size: 0.9rem;
    }
}

/* Very Small Devices (max-width: 380px) */
@media (max-width: 380px) {
    .mmc-section-title {
        font-size: 1.6rem;
    }
    .mmc-step-card {
        padding: 22px 18px;
    }
}


























/* mmc-templates-start */

.mmc-templates {
    padding: 80px 20px;
    background: var(--mmc-white);
    text-align: center;

}

.mmc-templates-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--mmc-text-dark);
    margin-bottom: 10px;
}

.mmc-templates-subtitle {
    font-size: 1.05rem;
    color: var(--mmc-blue-grey);
    max-width: 600px;
    margin: 0 auto 50px;
}

.mmc-templates-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mmc-template-card {
    background: var(--mmc-bg-cream);
    border-radius: 12px;
    padding: 20px;
    max-width: 300px;
    width: 100%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.mmc-template-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.12);
}

.mmc-template-img {
    width: 100%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--mmc-bg-cream);
}

.mmc-template-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mmc-template-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mmc-text-dark);
    margin-bottom: 15px;
}

/* BUTTON inside template card */
.mmc-template-card .mmc-btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
}

/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 992px) {
    .mmc-templates-title {
        font-size: 2rem;
    }
    .mmc-template-img {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .mmc-template-card {
        max-width: 100%;
    }
    .mmc-template-img {
        height: 280px;
    }
    .mmc-templates-subtitle {
        font-size: 0.95rem;
    }
}

/* mmc-templates-end */



