.dj-and-show-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;

}

.upcoming-events-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;

}

.dj-and-show {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.section-title {
    margin-left: 45px;
    background: linear-gradient(to bottom,
            #FFF0DA 0%,
            #94641E 20%,
            #FFF2DB 40%,
            #EAC885 45%,
            #FBF5D1 70%,
            #BD9A4B 85%,
            #ECD8A3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #BD9457;
    font-family: 'Alumni Sans SC', sans-serif;
    font-weight: 200;
    font-size: 70px;
    filter: brightness(1.2)
        drop-shadow(0 0 10px rgba(255, 220, 150, 0.4)) drop-shadow(0 0 10px rgba(231, 183, 110, 0.35)) drop-shadow(0 0 10px rgba(219, 172, 102, 0.2)) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
    display: inline-block;
}

.dj-and-show-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 21px;
}

/* NEW */
.slider-viewport {
    overflow: hidden;
    width: 1500px;
    max-width: 1500px;
}

.slider-track {
    display: flex;
    gap: 21px;
    transition: transform 0.4s ease;
}

/* NEW */
.dj-and-show-card {
    flex: 0 0 auto;
    max-width: 390px;
}

.dj-and-show-card img {
    border-radius: 10px;
    width: 390px;
    height: 300px;
    object-fit: cover;
    /* делает картинки одинаковыми */
}

/* ТВОИ КНОПКИ */
.nav-btn {
    background: linear-gradient(200deg,
            #ffc57a 0%,
            #C79A2B 40%,
            #f5c66f 60%,
            #a87300 100%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.nav-btn:hover {
    filter: brightness(1.2) contrast(1.1);
}

.nav-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.upcoming-event-info-block {
    margin-top: -15px;
    border-radius: 6px;
    height: 250px;
    overflow-y: auto;
    padding: 40px 20px;
    border: 1px solid #FFFFFF33;
    max-width: 100%;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.name-and-price {
    display: flex;
    font-weight: 700;
    font-size: 22px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    line-height: 26px;
    color: white;
    font-family: 'Satoshi', sans-serif;
}

.price {
    font-weight: 400;
}

.date-and-time {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    color: white;
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Satoshi', sans-serif;
}

.description {
    text-align: left;
    font-size: 16px;
    max-height: 90px;
    overflow-y: auto;
    font-weight: 400;
    width: 100%;
    color: #FFFFFFB2;
    font-family: 'Satoshi', sans-serif;

}

.event-card-footer {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
}

.sign-up-button {
    background: linear-gradient(200deg,
            #442f01 0%,
            #b97c09 20%,
            #d4ab41 50%,
            #b97c09 80%,
            #442f01 100%) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    width: 150px;
    height: 54px;
    font-weight: 400;
    box-sizing: border-box;
}

.sign-up-button:hover {
    filter: brightness(1.2) contrast(1.1);
}

.sign-up-button>span {
    font-size: 18px;
    font-weight: 500;
    color: white;
    font-family: 'Satoshi', sans-serif;
}

/* Responsive DJs & Shows Adjustments */

@media (max-width: 1600px) {
    .slider-viewport {
        width: 100%; /* Switch from fixed 1500px to fluid */
        max-width: 1200px;
    }
    .dj-and-show {
        width: 90%; /* Give more room on the sides */
    }
    .slider-viewport {
        width: 100%; /* Switch from fixed 1500px to fluid */
        max-width: 1024px;
    }

}

@media (max-width: 1024px) {
    .dj-and-show-container {
        margin-top: 100px; /* Reduce large spacing */
    }
    
    .slider-viewport {
        width: 100%; /* Switch from fixed 1500px to fluid */
        max-width: 760px;
    }

    .slider-viewport {
        width: 100%; /* Switch from fixed 1500px to fluid */
        max-width: 790px;
    }

    .section-title {
        font-size: 50px; /* Scale down the title */
        margin-left: 20px;
    }

    .dj-and-show-card, 
    .dj-and-show-card img {
        width: 300px; /* Scale down cards for tablets */
        height: 230px;
    }
}

@media (max-width: 768px) {
    .dj-and-show-container {
        margin-top: 80px;
    }

    .section-title {
        font-size: 40px;
        margin-left: 0;
        text-align: center;
        display: block; /* Center the title on mobile */
    }

    .dj-and-show {
        align-items: center; /* Center the slider and title */
        width: 95%;
    }

    /* Adjust the slider buttons to be smaller or hidden if using touch-swipe */
    .nav-btn {
        width: 35px; /* Larger hit area for fingers */
        height: 35px;
        position: absolute;
        z-index: 10;
    }
    
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }

    .dj-and-show-slider {
        position: relative;
        width: 100%;
    }

    .dj-and-show-card, 
    .dj-and-show-card img {
        width: 260px; /* Smaller cards for mobile */
        height: 200px;
    }

    .upcoming-event-info-block {
        height: auto; /* Let content dictate height */
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }

    .dj-and-show-card, 
    .dj-and-show-card img {
        width: 220px; /* Even smaller for tiny screens */
        height: 170px;
    }

    .name-and-price {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}