/* Hero Text - Black & White / Monochrome Override */
.hero h1 {
    color: #ffffff;
    /* Text remains white for contrast on dark bg, or if user wants black text on white bg specifically? */
    /* User said "buranın rengi siyaj beaz. yap" referring to "Bursa'nın En İyi Balık Sofraları". 
       Context: The hero has a dark image background. fast way is white text. 
       If they want the SECTION to be black and white, I might need to desaturate the image.
       Let's assume they want high contrast Black/White vibes. */
    text-shadow: 2px 2px 0px #000000;
}

.hero-overlay {
    /* Make the overlay purely black/white gradient instead of blueish */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
}

/* Popular Searches Tags */
.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.tag-pill {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #334155;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    display: inline-block;
}

.tag-pill:hover {
    background: #000;
    /* Black hover */
    color: #fff;
    transform: translateY(-2px);
    border-color: #000;
}

/* Mobile Logo Adjustments */
@media (max-width: 768px) {
    .logo-svg {
        width: 32px;
        height: 32px;
    }

    .brand {
        font-size: 1.2rem !important;
    }

    .subline {
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
    }
}