.hero {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://ylejllriwgtrpuzkcpek.supabase.co/storage/v1/object/public/recipe-images/recipes/spencer-davis-5UeN8VrCxvs-unsplash.jpg');
    background-size: cover;
    background-position: center;
    padding: calc(var(--spacing-xl) * 2) 0;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp var(--transition-base);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.search-input-wrapper {
    display: flex;
    gap: var(--spacing-xs);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex;
    gap: var(--spacing-xs);
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1.1rem;
}

.search-input-wrapper button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.search-input-wrapper button:hover {
    background: #ff4f4f;
    transform: translateY(-2px);
}

.popular-tags {
    margin-top: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    margin: 0 var(--spacing-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: var(--border-radius-full);
    color: white;
    transition: all var(--transition-base);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    
}
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}



.section-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    margin-top: var(--spacing-md);
}
.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}