/* Tilia — Pomáháme dětem | Custom Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Smooth transitions for links */
a {
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Card hover effects */
.hover\:shadow-lg:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Mobile menu animation */
#mobileMenu {
    transition: max-height 0.3s ease;
}

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

/* Button press effect */
a[class*="rounded-full"]:active {
    transform: scale(0.98);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #84cc16;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #65a30d;
}
