/* Accessibility Panel */
.accessibility-panel {
    position: fixed;
    top: 50%;
    left: -250px;
    transform: translateY(-50%);
    background: white;
    padding: 1.5rem;
    border-radius: 0 15px 15px 0;
    box-shadow: 5px 0 20px rgba(0,0,0,0.2);
    z-index: 1001;
    transition: left 0.3s;
}

.accessibility-panel.open {
    left: 0;
}

.accessibility-toggle {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    background: #667eea;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-size: 1.5rem;
}

.accessibility-panel h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.accessibility-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border: 2px solid #667eea;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.accessibility-btn:hover {
    background: #667eea;
    color: white;
}

/* High Contrast Mode */
body.high-contrast {
    background: #000;
    color: #fff;
}

body.high-contrast .navbar,
body.high-contrast .hero,
body.high-contrast .page-header {
    background: #000;
    border-bottom: 3px solid #fff;
}

body.high-contrast .feature-card,
body.high-contrast .news-card,
body.high-contrast .staff-card,
body.high-contrast .notice-item {
    background: #000;
    border: 3px solid #fff;
    color: #fff;
}

body.high-contrast a {
    color: #ffff00;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .accessibility-panel {
        width: 200px;
        left: -200px;
    }
}
