.hero-bg {
    background-color: #F0EBE5; /* Placeholder earthy background */
    /* We will replace this with a proper image */
}

#mobile-menu {
    animation: fadeIn 0.3s ease-in-out;
}

.text-shadow-dark {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F0EBE5;
}

::-webkit-scrollbar-thumb {
    background: #C8A876; /* Gold shade */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bda06c;
}
