html{
    scroll-behavior: smooth;
}
.card,
.carousel-inner {
    border-radius: 20px;
}

/* home */
.search {
    background: url('https://watermark.lovepik.com/photo/20211210/large/lovepik-shenzhen-city-shenzhen-bay-park-china-resources-picture_501784219.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.search,
.search-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-search {
    height: 50vh;
}

.search * {
    min-height: 3rem;
}


h1 {
    text-align: center;
    color: #000;
    font-weight: bold;
}

.carousel {
    max-height: 50vh;
}

.carousel img {
    width: 100%;
    height: 50vh;
    object-position: center;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.city-card {
    cursor: pointer;
}

.city-card-hover {
    position: relative;
    overflow: hidden;
}

.city-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.city-card-hover:hover .city-card-overlay,
.city-card-hover:active .city-card-overlay {
    opacity: 1;
}

.city-card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.city-card img {
    min-height: 20vh;
    max-height: 40vh;
}

/*
.search-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: none !important;
    font-size: larger;
}*/

.form-inline.search-control:focus-within {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5) !important;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.show>.btn-primary.dropdown-toggle {
    background-color: #c96810;
    border-color: #c96810;
}

/* category */
#filterbar {
    border-color: rgb(201, 104, 16);
    border-radius: 20px;
    border: 1px solid rgb(201, 104, 16);
}

.btn-outline-primary {
    color: rgb(201, 104, 16);
    border-color: rgb(201, 104, 16);
    cursor: pointer;
    border-radius: 20px;
}

.btn-outline-primary:hover,
.btn:active .btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle {
    color: white;
    background-color: rgb(201, 104, 16);
    border-color: rgb(201, 104, 16);
    cursor: pointer;
}


.activity-card-title {
    height: 60px;
    overflow: hidden;
}

.activity-card {
    border-color: #e27513;
}

.provider-img {
    height: 20px;
    width: 60px;
    object-fit: contain;

}

.form-check {
    margin-top: 20px;
}

.card-img {
    width: 100%;
    height: 203px;
    object-fit: cover;
    border-radius: 20px;
}


.banner {
    position: relative;
    height: 100%;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/5/5f/Shenzhen_Banner_2016.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner .breadcrumb,
.banner h1 {
    position: relative;
    z-index: 2;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white
}

.login-button {
    background: #fb410c;
    border: 1px solid #fb410c;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    font-family: nunito, roboto, proxima-nova, "proxima nova", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 16px;
    min-height: 30px;
    outline: 0;
    padding: 8px 10px;
    text-align: center;
    text-rendering: geometricprecision;
    text-transform: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    transition: background-color 0.3s ease;
}