/* Custom Styles for PawTreatKitchen */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Recipe modal animations */
#recipe-modal {
    animation: fadeIn 0.3s ease-in-out;
}

#recipe-modal .bg-white {
    animation: slideUp 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom button hover effects */
.recipe-btn {
    transition: all 0.3s ease;
}

.recipe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 64, 14, 0.3);
}

/* Card hover effects */
.bg-white.rounded-xl.shadow-lg {
    transition: all 0.3s ease;
}

.bg-white.rounded-xl.shadow-lg:hover {
    transform: translateY(-4px);
}

/* Mobile menu animation */
#mobile-menu {
    transition: max-height 0.3s ease-in-out;
}

#mobile-menu.hidden {
    max-height: 0;
    overflow: hidden;
}

#mobile-menu:not(.hidden) {
    max-height: 500px;
}

/* Content spacing */
section {
    scroll-margin-top: 80px;
}

/* Print styles */
@media print {
    nav, footer, .recipe-btn {
        display: none;
    }
}
