.hero {
    background: url('/static/images/hero.png') center/cover no-repeat;

    width: 100%;
    max-width: 100%;

    height: 60vh;          /* 🔥 better height */
    min-height: 400px;     /* prevents too small on mobile */

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    overflow: hidden;
}
.hero-overlay {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1000px;
    transform: translateY(-30px);
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-content p {
    margin-bottom: 25px;
}

/* SEARCH BAR */
.search-bar {
    display: flex;
    gap: 12px;
    background: white;
    padding: 12px;
    border-radius: 10px;
    align-items: center;
}

/* INPUT + SELECT */
.search-bar input,
.search-bar select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    flex: 1;
    min-width: 150px;
}

/* BUTTON */
.search-bar button {
    background: #ff5a5f;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .hero {
        height: auto;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 28px;
	transform: none;
    }

    .search-bar {
        flex-direction: column;
        width: 90%;
        margin: auto;
    }

    .search-bar input,
    .search-bar select,
    .search-bar button {
        width: 100%;
    }

}
.location-btn{

    height:41px;

    padding:0 20px;

    border:none;

    border-radius:12px;

    background:#ff5a5f;

    color:#ffffff;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    white-space:nowrap;

    font-size: 14px;

}
