/* Custom styles for Valley Fuel */

html {
    scroll-behavior: smooth;
}

body {
    /* Custom background texture if needed */
    background-image: radial-gradient(circle at 1px 1px, rgba(120, 53, 68, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

/* Blob animation for hero background */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

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

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

::-webkit-scrollbar-thumb {
    background: #e6b3c6;
    border-radius: 5px;
}

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

/* Mobile menu transitions */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
