/* Stiluri pentru carusel */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 700px;
    overflow: hidden;
    z-index: 1;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Face ca imaginea să umple spațiul */
    flex-shrink: 0;
}

/* Butoane navigație */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1300px) {
    .prev-btn, .next-btn {
        display: none;
    }
}




/* Media Queries pentru responsivitate */
@media screen and (max-width: 1530px) {
    .carousel-container {
        height: 550px;
    }
}

@media screen and (max-width: 1300px) {
    .carousel-container {
        height: 500px;
    }
}

@media screen and (max-width: 890px) {
    .carousel-container {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .carousel-container {
        height: 300px;
    }
}


