/* ========================================
   Inner Page Hero — Standardized Styles
   ======================================== */

/* Override default hero for inner pages */
.hero-inner {
    min-height: 65vh !important;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-inner .container {
    position: relative;
    z-index: 2;
}

/* ── Inner Hero Canvas ─────────────────── */
.hero-inner-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ── Accent Text Shine Effect ──────────── */
.hero-inner .accent {
    background: linear-gradient(90deg,
            var(--accent-blue) 0%,
            var(--accent-blue) 35%,
            #a8d0ff 48%,
            #ffffff 50%,
            #a8d0ff 52%,
            var(--accent-blue) 65%,
            var(--accent-blue) 100%);
    background-size: 250% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s ease-in-out infinite;
}

@keyframes shineText {
    0% {
        background-position: 100% 0;
    }

    50% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

/* Light mode adjustments */
[data-theme="light"] .hero-inner .accent {
    background: linear-gradient(90deg,
            #3b5eed 0%,
            #3b5eed 35%,
            #7ba3f7 48%,
            #b8d4ff 50%,
            #7ba3f7 52%,
            #3b5eed 65%,
            #3b5eed 100%);
    background-size: 250% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s ease-in-out infinite;
}

/* ── Responsive ────────────────────────── */
@media (max-width: 768px) {
    .hero-inner {
        min-height: 55vh !important;
        padding-top: 7rem;
    }
}