/* Custom styles that complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F8F9FA;
}

/* Geometric shape animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(3deg); }
}

.floating-card {
    animation: float 6s ease-in-out infinite;
}

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

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

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

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

/* Hover effects for images */
img {
    transition: transform 0.3s ease;
}

/* Ensure mobile menu is hidden by default */
#mobile-menu {
    display: none;
}

#mobile-menu.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image-container {
        height: 400px;
        order: -1;
    }
}
