/*
Custom Css
*/
.street-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.street-img {
    width: 100%;
    height: 450px;   /* ارتفاع نمایشی مناسب */
    object-fit: cover;
    display: block;
}

.street-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
}

.street-text {
    position: absolute;
    top: 40px;      /* فاصله از بالا */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.street-text h2 {
    font-size: 28px;
    font-weight: bold;
}

.street-text p {
    font-size: 16px;
}