/* Custom styles for Korta.me */

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

/* Custom hover transitions */
.hover-lift {
    transition: all 0.2s ease-in-out;
}

.hover-lift:hover {
    transform: translateY(-2px);
}

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

/* Custom gradient backgrounds */
.gradient-green-yellow {
    background: linear-gradient(135deg, #f0fdf4 0%, #fefce8 100%);
}

/* Loading animation for images */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Print styles */
@media print {
    header, footer {
        display: none;
    }
    
    .no-print {
        display: none;
    }
}