/* ====================
   HERO SECTION STYLES
   ==================== */
.hero-section {
    text-align: center;
    padding: 4rem 1rem 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: #64748b;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.search-container-hero {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.search-box:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-family: 'Work Sans', sans-serif;
}

.search-box button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-box button:hover {
    background: #1e40af;
}

.hero-tags {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tags span {
    font-weight: 600;
}

.hero-tags a {
    color: #2563eb;
    text-decoration: none;
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    transition: all 0.2s;
}

.hero-tags a:hover {
    background: #2563eb;
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .search-box {
        flex-direction: column;
        padding: 0.8rem;
        border-radius: 24px;
    }

    .search-box input {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 0.5rem;
    }

    .search-box button {
        width: 100%;
        justify-content: center;
    }
}