@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

*{
    box-sizing: border-box;
}

body{
    font-family:'Roboto', sans-serif;
    margin: 0;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222022;
}

.container{
    width: 100%;
    display: flex;
}

.slide {
    flex: 1;
    height: 80vh;
    margin: 0 10px;
    border: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    cursor: pointer;
}

/* Slider styles */
.slider {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    background: #111;
}

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

.slide-image {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.control:hover {
    background: rgba(255,255,255,0.35);
}

.control.prev { left: 12px; }
.control.next { right: 12px; }

.dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
}

.dots button[aria-selected="true"],
.dots button.active {
    background: #fff;
}

.slide h3 {
    font-size: 20px;
    position: absolute;
    bottom: 16px;
    left: 16px;
}