/* style.css - Minimal custom styling to augment Tailwind */

/* Smooth scrolling override to ensure it works well across browsers */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header height (h-20) */
}

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; /* slate-100 */
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; /* slate-300 */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; /* slate-400 */
}

/* Simple fade up animation for hero section */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up-element {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

/* Active Navigation Link Styling (used by scrollspy in JS) */
.nav-link.active {
    color: #1e3a8a !important; /* text-primary */
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b45309; /* text-secondary */
    border-radius: 2px;
}
.nav-link {
    position: relative;
}

/* Base input styling removal to prevent weird browser defaults */
input, textarea, select {
    appearance: none;
    -webkit-appearance: none;
}
