/* ═══════════════════════════════════════════════════════════════════
   MEHTA PANSARI — GOLDEN SPARKLES
   Theme: Black #0a0a0a · Gold #C9A84C · Bright Gold #f0d060
   Font: Poppins + Noto Sans Devanagari
═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

/* ── Reset ── */
.mhs-wrapper *, .mhs-wrapper *::before, .mhs-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Wrapper ── */
.mhs-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #0a0a0a;
    overflow: hidden;
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Canvas (sparkles layer) ── */
.mhs-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ── Radial glow background ── */
.mhs-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 10%, rgba(201,168,76,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ── Hero content ── */
.mhs-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 32px 72px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* ── Badge ── */
.mhs-badge-row {
    margin-bottom: 28px;
}

.mhs-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A84C;
    border: 1px solid rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.07);
    padding: 7px 22px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
}

/* ── Title ── */
.mhs-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.mhs-title__line1 {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 800;
    color: #ffffff;
    font-family: 'Noto Sans Devanagari', sans-serif;
    text-shadow: 0 0 40px rgba(201,168,76,0.3);
    letter-spacing: -1px;
}

.mhs-title__line2 {
    font-size: clamp(20px, 4vw, 40px);
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.mhs-title__gold {
    font-size: clamp(13px, 2vw, 18px);
    font-weight: 500;
    color: #C9A84C;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    margin-top: 8px;
    background: linear-gradient(90deg, #C9A84C, #f0d060, #C9A84C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: mhs-shimmer 3s linear infinite;
}

@keyframes mhs-shimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ── Tagline ── */
.mhs-tagline {
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.9;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhs-tagline span {
    color: rgba(255,255,255,0.85);
}

.mhs-tagline em {
    color: #C9A84C;
    font-style: normal;
    font-size: 0.9em;
}

/* ── Trust pills ── */
.mhs-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.mhs-pill {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 7px 16px;
    border-radius: 50px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.mhs-pill:hover {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.5);
    color: #C9A84C;
}

/* ── CTA Buttons ── */
.mhs-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 52px;
}

.mhs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    cursor: pointer;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.mhs-btn--gold {
    background: linear-gradient(135deg, #C9A84C 0%, #f0d060 50%, #C9A84C 100%);
    background-size: 200% auto;
    color: #0a0a0a !important;
    box-shadow: 0 4px 24px rgba(201,168,76,0.4), 0 0 0 1px rgba(201,168,76,0.3);
    animation: mhs-btn-shine 3s linear infinite;
}

@keyframes mhs-btn-shine {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.mhs-btn--gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(201,168,76,0.6), 0 0 0 1px rgba(201,168,76,0.5);
}

.mhs-btn--outline {
    background: transparent;
    color: #C9A84C !important;
    border: 1.5px solid rgba(201,168,76,0.5);
}

.mhs-btn--outline:hover {
    background: rgba(201,168,76,0.1);
    border-color: #C9A84C;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.2);
}

/* ── Heritage Stats ── */
.mhs-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding-top: 36px;
}

.mhs-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.mhs-stat__num {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 800;
    color: #C9A84C;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 0 20px rgba(201,168,76,0.4);
}

.mhs-stat__lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.mhs-stat__sep {
    color: rgba(201,168,76,0.4);
    font-size: 18px;
    padding: 0 4px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .mhs-hero {
        padding: 60px 20px 56px;
    }
    .mhs-stat {
        padding: 0 16px;
    }
    .mhs-cta {
        flex-direction: column;
        align-items: center;
    }
    .mhs-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .mhs-stats {
        gap: 8px 0;
    }
}

@media (max-width: 480px) {
    .mhs-stat {
        padding: 8px 12px;
    }
    .mhs-stat__sep {
        display: none;
    }
    .mhs-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        border-top: 1px solid rgba(201,168,76,0.2);
        padding-top: 28px;
    }
}
