﻿/* === SLIDER CONTAINER === */
.slider {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
}

/* === SLIDES === */
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

    .slides img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
    }

        .slides img.active {
            opacity: 1;
            z-index: 1;
        }

/* === NAVIGATION BUTTONS === */
.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 4;
    padding: 0 30px;
}

    .navigation button {
        background-color: rgba(255, 255, 255, 0.3);
        color: gray;
        border: none;
        padding: 12px 18px;
        border-radius: 50%;
        font-size: 28px;
        cursor: pointer;
        transition: 0.3s;
        backdrop-filter: blur(5px);
    }

        .navigation button:hover {
            background-color: rgba(255, 255, 255, 0.7);
            color: #000;
        }
