/* ===== RJL Bright Orange Text ===== */
/* Headlines, CTAs, Interactive Text */
.rjl-type,
.rjl-wiggle,
.rjl-gradient,
.rjl-link {
font-size: 2.6rem; /* bigger */
font-weight: 800; /* bold */
color: #ff6600 !important; /* BRIGHT ORANGE */
text-shadow: 0 0 6px rgba(255, 102, 0, 0.5); /* orange glow */
}
/* Underline hover links */
.rjl-link::after {
background: #ff6600 !important;
}
/* Stats / Numbers */
.rjl-stat {
font-size: 3rem;
font-weight: 900;
color: #ff6600 !important; /* BRIGHT ORANGE */
text-shadow: 0 0 8px rgba(255, 102, 0, 0.7);
}
/* ===== RJL Site-Wide Bright Orange Text ===== */
/* Headlines, CTAs, Interactive Text */
.rjl-type,
.rjl-wiggle,
.rjl-gradient,
.rjl-link {
font-size: 2.6rem; /* bigger */
font-weight: 800; /* bold */
color: #ff6600 !important; /* BRIGHT ORANGE */
text-shadow: 0 0 6px rgba(255, 102, 0, 0.5); /* subtle orange glow */
}
/* Underline hover links */
.rjl-link::after {
background: #ff6600 !important;
}
/* Stats / Numbers */
.rjl-stat {
font-size: 3rem;
font-weight: 900;
color: #ff6600 !important; /* BRIGHT ORANGE */
text-shadow: 0 0 8px rgba(255, 102, 0, 0.7);
}
/* ===== RJL Typewriter Effect for all H1 ===== */
h1 {
display: inline-block;
border-right: 2px solid #ff6600;
white-space: nowrap;
overflow: hidden;
font-weight: 800;
color: #ff6600 !important; /* bright orange */
text-shadow: 0 0 6px rgba(255, 102, 0, 0.5);
animation: rjl-caret 0.8s steps(1) infinite;
}
@keyframes rjl-caret {
50% { border-color: transparent; }
}