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

body {
    background-color: #f8fafc; /* Slate-50 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #C5A065;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0F172A;
}

/* Animations */
.hero-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.hero-reveal:nth-child(1) { animation-delay: 0.1s; }
.hero-reveal:nth-child(2) { animation-delay: 0.3s; }
.hero-reveal:nth-child(3) { animation-delay: 0.5s; }
.hero-reveal:nth-child(4) { animation-delay: 0.7s; }

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

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

/* Input Focus States */
input:focus {
    border-bottom-color: #C5A065;
}

/* Image Placeholder Fallback */
img {
    image-rendering: -webkit-optimize-contrast;
}
