/* recipe_search.css - Styles for recipe search page */

/* Placeholder image styling - subtle effect to highlight real photos */
.recipe-image {
    position: relative;
}

.recipe-image .placeholder-image {
    filter: blur(1px) brightness(0.7) grayscale(0.3);
    opacity: 0.6;
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.recipe-card:hover .placeholder-image {
    filter: blur(0.5px) brightness(0.8) grayscale(0.2);
    opacity: 0.75;
}

.recipe-image .placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Loading indicator */
.loading-indicator {
    display: none;
    text-align: center;
    padding: 20px;
}

.loading-indicator.show {
    display: block;
}

/* Pagination */
.pagination-container {
    text-align: center;
    margin-top: 20px;
}

/* Error message */
.error-message {
    text-align: center;
    color: #dc3545;
    padding: 20px;
}
