/* ===== Arniya Custom Font Load ===== */
@font-face {
    font-family: 'Arniya';
    src: url('Arniya-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===== Hero-title (Optional future use) ===== */
.hero-title {
    font-family: 'Arniya', sans-serif !important;
    font-size: 54px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(90deg, #00f5ff, #0072ff, #8f00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientMove 5s linear infinite;
}

/* ===== Blade hero heading (admin panel safe) ===== */
.h1.mb-4.text-white {
    font-family: 'Arniya', sans-serif !important;
    font-size: 100px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.9px;

    /* Black shadow under text */
    text-shadow: 0 2px 1px rgba(0,0,0,0.1);
}

.h1.mb-4.text-white span {
    background: linear-gradient(
    90deg,
    #00f5ff,
    #00e0ff,
    #00b3ff,
    #0072ff,
    #0047ff,
    #4a00ff,
    #8f00ff,
    #c300ff,
    #ff00c8,
    #ff0066,
    #ff3c00,
    #ff8c00,
    #ffd500
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-size: 100% 100%;
    animation: hue 4s infinite linear;
}

/* hue color shift */
@keyframes hue {
    from {
        filter: hue-rotate(0deg);
    }
    to {
        filter: hue-rotate(-360deg);
    }
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-title,
    .h1.mb-4.text-white {
        font-size: 60px;
    }
}