@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

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

/* Custom hover effects */
.menu-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Custom button effects */
.btn-hover-effect {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-hover-effect:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Custom section spacing */
section {
    padding: 5rem 1rem;
}

@media (min-width: 768px) {
    section {
        padding: 6rem 2rem;
    }
}