/* Custom styles for Jupy LLC */

/* ── TEKO FONT FOR HEADINGS AND TITLES ── */
h1, h2, h3, h4, h5, h6,
.heading, .title, .headline,
.hero-title, .section-title,
.card-title, .feature-title,
.service-title, .portfolio-title,
.services-headline-line,
.feature-headline,
.testimonial-author,
.stat-label,
.founder-name,
.portfolio-heading,
.portfolio-heading-line,
.portfolio-title-3d,
.cta-headline,
.feature-card-cinema h3,
.stat-card-cinema .text-4xl,
.stat-card-cinema .text-5xl {
    font-family: 'Teko', sans-serif;
}

/* Additional animations */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color - Navy Blue theme */
::selection {
    background: rgba(11, 25, 48, 0.3);
    color: white;
}

/* Focus styles - Navy Blue theme */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #0B1930;
    outline-offset: 2px;
}
