/* Welcome Page Styles */
body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 50%, #06b6d4 100%);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Category cards hover effect */
.category-card:hover .category-arrow {
    transform: translateX(8px);
}

.category-arrow {
    transition: transform 0.3s ease;
}

/* CTA button hover effect */
.cta-button:hover {
    transform: scale(1.05);
}

.cta-button {
    transition: transform 0.3s ease;
}

/* Decorative elements animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.decorative-element {
    animation: float 6s ease-in-out infinite;
}

/* Search bar focus effect */
.search-input:focus {
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.search-input {
    transition: box-shadow 0.3s ease;
}

/* Feature card hover effect */
.feature-card:hover {
    transform: translateY(-4px);
}

/* Hero section specific styles */
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
    }
}

/* Additional animations and effects */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #14b8a6;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}