/* Custom styles and animations */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Floating animation for hero cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

.card-float:nth-child(2) {
    animation-delay: -2s;
}

.card-float:nth-child(3) {
    animation-delay: -4s;
}

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

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

::-webkit-scrollbar-thumb {
    background: #ff6644;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e84d2c;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 3px solid #ff6644;
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .card-float {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}
