/* SEO and Performance Additions */

/* Text alignment utility */
.text-justify {
    text-align: justify;
}

/* Navigation active state */
.nav-active {
    color: #d20313 !important;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    min-height: 100px;
    background: #f0f0f0;
}

/* Improve accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #d20313;
    outline-offset: 2px;
}

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    background: #d20313;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
