/* ============================================
   HERO.CSS — Hero banner section
   ============================================ */

.hero {
    background: linear-gradient(135deg, #fff0f3 0%, #fff8ec 100%);
    border-radius: 16px;
    padding: 32px 40px;
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ffd6e0;
    overflow: hidden;
    position: relative;
}

.hero::after {
    content: '💋';
    position: absolute;
    right: 200px;
    top: -10px;
    font-size: 100px;
    opacity: 0.07;
    transform: rotate(-15deg);
}

/* --- Left Content --- */
.hero-left h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-left h1 em {
    font-style: normal;
    color: var(--red);
}

.hero-left p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    max-width: 440px;
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 10px;
}

/* --- Buttons --- */
.btn-primary {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-secondary {
    background: white;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* --- Stats --- */
.hero-stats {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.hero-stat {
    background: white;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hero-stat .num {
    font-size: 30px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.hero-stat .lbl {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE — Tablet (768px) & Mobile (480px)
   ============================================ */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 28px;
        gap: 24px;
    }

    .hero::after {
        font-size: 80px;
        right: 20px;
    }

    .hero-left h1 {
        font-size: 24px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .hero-stat {
        padding: 16px 18px;
    }

    .hero-stat .num {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 16px;
        gap: 20px;
    }

    .hero-left h1 {
        font-size: 20px;
    }

    .hero-left p {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .hero-stats {
        gap: 8px;
    }

    .hero-stat {
        padding: 14px 14px;
    }

    .hero-stat .num {
        font-size: 20px;
    }

    .hero-stat .lbl {
        font-size: 10px;
    }
}
