/* TASK 2: Skip to Content Link Styles */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1b3664;
    color: white;
    padding: 8px 16px;
    z-index: 99999;
    transition: top 0.2s ease-in-out;
}

.skip-to-content:focus {
    top: 0;
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
}

/* TASK 3: Keyboard Focus Visibility */
/* Provide a highly visible focus indicator for interactive elements when navigated via keyboard */
*:focus-visible {
    outline: 2px solid #1b3664 !important; /* Theme dark blue */
    outline-offset: 2px !important;
}

/* Specific overrides for dark backgrounds to ensure contrast */
.bg-dark *:focus-visible,
footer *:focus-visible {
    outline: 2px solid #ffffff !important;
}

/* TASK 4: Screen Reader Only (Visually Hidden) Class */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* TASK 7: Color Contrast Improvements (Minor fallbacks for common low contrast Elementor defaults) */
/* Assuming some generic gray texts need to be slightly darker */
.elementor-text-editor {
    color: #333333; 
}
.xamin-button, .elementor-button, .btn {
    /* Ensure button text has high contrast */
    text-decoration: none;
}
