/* Custom Base Styles & Utilities */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f1115;
    color: #e5e7eb;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f1115;
}
::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f97316;
}

/* Typography Tweaks */
h1, h2, h3, .font-serif {
    font-family: 'Cinzel', serif;
}

p, a, button, input, textarea {
    font-family: 'Montserrat', sans-serif;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Utility for image overlay gradients */
.hero-overlay {
    background: linear-gradient(to right, #0f1115 40%, transparent 100%);
}
