/* Custom Animations and Fine-tuning */

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes staggerFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-slow-zoom {
    animation: slowZoom 30s ease-in-out infinite alternate;
}

.animate-stagger-fade > * {
    animation: staggerFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.animate-stagger-fade header { animation-delay: 0.1s; }
.animate-stagger-fade .flex-col > a:nth-child(1) { animation-delay: 0.3s; }
.animate-stagger-fade .flex-col > a:nth-child(2) { animation-delay: 0.4s; }
.animate-stagger-fade .flex-col > a:nth-child(3) { animation-delay: 0.5s; }
.animate-stagger-fade footer { animation-delay: 0.8s; }

/* Custom Glass Effect for potential use */
.glass-overlay {
    background: rgba(245, 245, 220, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #F5F5DC;
}
::-webkit-scrollbar-thumb {
    background: #8B451320;
}
::-webkit-scrollbar-thumb:hover {
    background: #8B451340;
}
