/* 
  Custom Styles for Sensenig's Bike Shop
  Palette: Plum (Merlot) + Amber
*/

/* Color Variables */
:root {
    --merlot-900: #3d1e4d;
    --merlot-800: #5c2d70;
    --amber-700: #b45309;
    --amber-500: #d97706;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
}

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

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
    animation-fill-mode: forwards;
}

/* Scroll Reveal Utility (Progressive Enhancement) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

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

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

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

::-webkit-scrollbar-thumb {
    background: #5c2d70;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3d1e4d;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Button Focus States for Accessibility */
button:focus, a:focus {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}
