/* Custom styles and overrides */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #841634;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #620f24;
}

/* Fade In Animation for Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle pattern for background */
.bg-pattern {
    background-image: radial-gradient(#841634 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.05;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #841634;
    outline-offset: 2px;
}
