/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #E7E2D9;
}
::-webkit-scrollbar-thumb {
    background: #A47C54;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #1B2B22;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Font styles */
h1, h2, h3, h4 {
    font-family: 'Manrope', 'Poppins', sans-serif;
    font-weight: 700;
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Delay animations for staggered effect */
.delay-100 {
    animation-delay: 0.1s;
}
.delay-200 {
    animation-delay: 0.2s;
}
.delay-300 {
    animation-delay: 0.3s;
}
.delay-400 {
    animation-delay: 0.4s;
}