/* Custom Styles for Black Potion Sedona */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #FEFCF9; /* sand-50 */
    color: #292524; /* stone-800 */
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Smooth fade-in animation for elements */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar transition */
nav.scrolled {
    background-color: rgba(254, 252, 249, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

::-webkit-scrollbar-track {
    background: #FDF8F0; /* sand-100 */
}

::-webkit-scrollbar-thumb {
    background: #EAB898; /* terracotta-300 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #C05C43; /* terracotta-500 */
}
