

.discount-banner {
    width: 100%;
    max-width: 800px;
    height: 200px;
    background-color: #f3d250; /* Yellow background color */
    display: flex;
    position: relative;
    overflow: hidden;
}

.banner-content {
    width: 50%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discount-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.discount-description {
    font-size: 12px;
    color: #333;
}

.book-now-btn {
    margin-top: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 5px 15px;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    width: fit-content;
}

.banner-image {
    width: 50%;
    background-image: url('../../assets/images/background/barber.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    filter: blur(3px);
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .discount-banner {
        height: auto;
        flex-direction: column;
    }
    
    .banner-content {
        width: 100%;
        padding: 15px;
    }
    
    .banner-image {
        width: 100%;
        height: 100px;
    }
}
