/* Custom styles */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Inter:wght@400;500;600&display=swap');

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

h1, h2 {
    font-family: 'Merriweather', serif;
}

.hero-image {
    background-image: url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    pointer-events: none;
}

/* Hover effects */
.recipe-card:hover {
    transform: translateY(-4px);
    transition: transform 0.2s ease-in-out;
}

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

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

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

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

/* Posts Content */

.content h2 {
    font-size: 2.5em !important;
}

.content h3 {
    font-size: 1.17em !important;
}
