/* Custom styles for St. Casimir's School */

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

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

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

::-webkit-scrollbar-thumb {
    background: #8a2525;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #711f1f;
}

/* Selection color */
::selection {
    background-color: #fce7e7;
    color: #5e1a1a;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Form focus styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Card hover effect */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Print styles */
@media print {
    nav,
    #contact-form,
    .hover\:shadow-xl,
    button {
        display: none !important;
    }
}
