/* ==============================================
   AEROFIELD — FOOTER
   ============================================== */

.footer {
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-text {
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.footer-text em {
    font-style: normal;
    color: var(--glow-amber-dim);
}

.footer-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    opacity: 0.5;
}


/* ==============================================
   SANSKRIT MARQUEE FOOTER STRIP
   ============================================== */

.footer-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    border-top: 1px solid rgba(212, 160, 74, 0.15);
    background: linear-gradient(180deg,
        rgba(10, 10, 14, 0.92) 0%,
        rgba(10, 10, 14, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    height: 38px;
}

.footer-strip-inner {
    padding: 6px 0;
}

.sanskrit-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(90deg,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%);
    -webkit-mask-image: linear-gradient(90deg,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%);
}

.sanskrit-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: sanskrit-scroll 80s linear infinite;
    will-change: transform;
}

.sanskrit-quote {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(212, 160, 74, 0.55);
    padding: 0 12px;
    transition: color 0.4s ease;
}

.sanskrit-sep {
    color: rgba(139, 92, 246, 0.25);
    font-size: 8px;
    padding: 0 6px;
    vertical-align: middle;
}

/* Glow hover effect on the strip */
.footer-strip:hover .sanskrit-quote {
    color: rgba(212, 160, 74, 0.75);
}

.footer-strip:hover .sanskrit-sep {
    color: rgba(139, 92, 246, 0.4);
}

/* Subtle top-edge glow line */
.footer-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 160, 74, 0.2),
        rgba(139, 92, 246, 0.15),
        rgba(45, 212, 168, 0.1),
        transparent);
}

@keyframes sanskrit-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for readability */
.footer-strip:hover .sanskrit-marquee-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sanskrit-quote {
        font-size: 11px;
        letter-spacing: 1px;
        padding: 0 8px;
    }
    .footer-strip-inner {
        padding: 6px 0;
    }
}
