/* Custom styles for BlooMN Cannabis Company */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #048A6B;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #048A6B 0%, #026651 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtle pattern overlay */
.pattern-overlay {
    background-image: radial-gradient(circle at 1px 1px, rgba(4, 138, 107, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #048A6B;
    outline-offset: 2px;
}

/* Image loading placeholder */
img {
    background-color: #E8E6E1;
}

/* Mobile menu transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Navbar scroll effect */
.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
