/* KSK Bochum-Werne Custom Styles */

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #002c63;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4A90E2;
}

/* Link hover effects */
a {
    transition: color 0.2s ease;
}

/* Button hover effects */
button, .btn {
    transition: all 0.2s ease;
}

/* Card hover effects */
.shadow-lg:hover {
    transform: translateY(-5px);
}

/* Hero gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Image lazy load placeholder */
img[loading="lazy"] {
    background: #f3f4f6;
}

/* Print styles */
@media print {
    header, footer, .no-print {
        display: none;
    }
}

/* Accessibility improvements */
:focus {
    outline: 2px solid #DAA520;
    outline-offset: 2px;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Can be implemented later if needed */
}
