/* Global styles and shared components */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.container {
    max-width: 1200px;
}

/* Custom animations and styles (similar to React version) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Hero section animations */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-dashboard {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Floating animation for cards */
.float-card {
    animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(2) {
    animation-delay: -2s;
}

.float-card:nth-child(3) {
    animation-delay: -4s;
}

/* Hover effects for cards */
.shadow-md:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    .lg\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    .flex-col-reverse {
        flex-direction: column-reverse;
    }
    .sm\:flex-row {
        flex-direction: column;
    }
    .sm\:space-x-4 > * + * {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
}


