/* Custom CSS for Tea Aed OÜ - Modern Version */

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

/* Custom background patterns */
.pattern-dots {
    background-image: radial-gradient(circle, rgba(34, 197, 94, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced hover effects */
.hover-lift:hover {
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom gradient text */
.gradient-text {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation blur effect */
.nav-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Enhanced focus states */
.focus-ring:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(34, 197, 94, 0.1),
        0 0 0 6px rgba(34, 197, 94, 0.05);
}
