/* Reset and basic styles */
body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    border-right: 4px solid black;
    border-left: 4px solid black;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%; /* Fixed here to fit number of slides */
    height: 100%;
}

.slide-container {
    flex: 0 0 27%; /* Each slide takes up 100% of the screen */
    display: flex;
    overflow: hidden;
    border-right: 2px solid black;
    border-top: 4px solid black;
    border-left: 2px solid black;
    border-bottom: 4px solid black;
}

.slide {
    flex: 0 0 100%;
    width: 100vw;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Controls */
.controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background: rgba(0, 0, 0, 0.7);
}