/* Custom Fonts */
.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-lora {
    font-family: 'Lora', serif;
}

/* Global Styles */
body {
    scroll-behavior: smooth;
}

/* Section Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.blur-in {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out;
}

/* Animation Trigger */
.animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
    filter: blur(0);
}

/* Staggered Children */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.stagger.animate > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger.animate > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.animate > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.animate > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.animate > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.animate > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.animate > *:nth-child(6) { transition-delay: 0.6s; }

/* Hero Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Menu Item Hover Effects */
.menu-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(61, 35, 20, 0.1);
}

/* Gallery Image Hover */
.gallery-image {
    transition: transform 0.4s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

/* Button Pulse Effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 167, 125, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(196, 167, 125, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(196, 167, 125, 0);
    }
}

.pulse-effect:hover {
    animation: pulse 1.5s infinite;
}