/**
 * ACCID Recipe Site - Custom Styles
 */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* Recipe card hover effects */
.recipe-card {
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-4px);
}

/* Print styles (for later phases) */
@media print {
    nav {
        display: none;
    }
    
    .no-print {
        display: none;
    }
}

