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

body {
    font-family: 'Outfit', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Smooth transitions for mobile menu */
.mobile-link {
    transition: color 0.3s ease;
}
.mobile-link:hover {
    color: #3d8c5a;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f7f4eb;
}
::-webkit-scrollbar-thumb {
    background: #1a422a;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #255a3a;
}
