/* Custom Styles for Cecil's Last Chance */

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

/* Base Typography Overrides */
body {
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Anton', sans-serif;
}

/* Stroke Text Effect */
.stroke-text {
    -webkit-text-stroke: 2px black;
    color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #FFFDD0;
}
::-webkit-scrollbar-thumb {
    background: #800020;
    border: 2px solid #FFFDD0;
}
::-webkit-scrollbar-thumb:hover {
    background: #5a0017;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Hover Effects */
img {
    max-width: 100%;
    height: auto;
}

/* Focus Styles for Accessibility */
a:focus-visible, button:focus-visible {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}
