/* Custom Styles for Kennedy Stables */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --color-emerald-500: #10b981;
    --color-emerald-700: #047857;
    --color-stone-900: #1c1917;
    --color-stone-950: #0c0a09;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-stone-950);
    color: #e7e5e4; /* stone-200 */
}

h1, h2, h3, h4, .font-cinzel {
    font-family: 'Cinzel', serif;
}

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

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

::-webkit-scrollbar-track {
    background: #0c0a09;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}

/* Navbar Transition */
.nav-scrolled {
    background-color: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}
