h1.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 40px 0;
    text-transform: uppercase;
}

.slider-container {
    position: relative;
    width: 100vw;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    flex: 0 0 65vw; 
    height: 60vh;
    position: relative;
    opacity: 0.4; 
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease 0.3s;
}

.slide.active .slide-info {
    opacity: 1;
}

.slide-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-tag {
    background-color: #f38a00;
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #f38a00;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.nav-btn:hover { background-color: #ff9d22; }
.prev-btn { left: 15%; }
.next-btn { right: 15%; }

.nav-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: #f38a00;
}

.counter {
    position: absolute;
    right: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: baseline;
}

.counter-current {
    color: #f38a00;
    font-size: 1.8rem;
}

.counter-total { color: white; }

.all-works-btn {
    display: block;
    margin: 30px auto;
    background: transparent;
    border: 1px solid #f38a00;
    color: white;
    padding: 10px 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.all-works-btn:hover {
    background: #f38a00;
}

@media (max-width: 992px) {
    h1.section-title {
        font-size: 1.8rem !important;
        margin: 30px 0 20px 0 !important;
    }

    .slider-container {
        height: auto !important;
        width: 100vw !important;
    }

    .slide {
        flex: 0 0 100vw !important;
        height: auto !important;
        opacity: 1 !important;
    }

    .slide img {
        height: auto !important;
        aspect-ratio: 16/9;
        border-radius: 0 !important;
    }

    .nav-btn, 
    .counter, 
    .all-works-btn, 
    .slide-info {
        display: none !important;
    }

    .slider-controls {
        margin-top: 15px !important;
        justify-content: center !important;
    }

    .dots {
        gap: 8px !important;
    }

    .dot {
        width: 8px !important;
        height: 8px !important;
    }
}