body {
    margin: 0;
    overflow: hidden;
    background: #121212; /* Dark background */
}

.screen {
    position: absolute;
    top: 0;
    left: 100vw; /* Off-screen by default */
    width: 100vw;
    height: 100vh;
    transition: left 0.5s ease;
}

.screen.active {
    left: 0; /* Center the active screen */
}

.screen.left {
    left: -100vw;
}

.screen.right {
    left: 100vw;
}

#screen1 {
    background-image: url("kelder.jpg");
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

#screen2 {
    background: linear-gradient(135deg, #1e1e1e, #3e3e3e); /* Darker gradient */
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    padding-top: 100px; /* Add padding to move content down */
}

#screen3 {
    background-image: url("werkplaats.jpg");
    background-size: cover;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.arrow {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
    cursor: pointer;
    user-select: none;
    display: none; /* Hidden by default */
    background: linear-gradient(135deg, #333, #555);
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background 0.3s ease;
}

.arrow:hover {
    background: linear-gradient(135deg, #555, #777);
    transform: translateY(-50%) scale(1.1);
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

.arrow.visible {
    display: block; /* Show when visible */
}

.arrow span {
    font-weight: bold;
}

.arrow svg {
    vertical-align: middle;
    fill: white;
    width: 20px;
    height: 20px;
}

.logo {
    font-size: 72px; /* Bigger font size */
    font-weight: bold;
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Orange gradient */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 1.5s infinite alternate;
    text-shadow: 0 0 10px rgba(255, 126, 95, 0.7), 0 0 20px rgba(255, 126, 95, 0.5), 0 0 30px rgba(255, 126, 95, 0.3);
    margin-bottom: 20px; /* Add margin to create space below the logo */
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 126, 95, 0.7), 0 0 20px rgba(255, 126, 95, 0.5), 0 0 30px rgba(255, 126, 95, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255, 126, 95, 0.7), 0 0 30px rgba(255, 126, 95, 0.5), 0 0 40px rgba(255, 126, 95, 0.3);
    }
}

.description {
    font-size: 18px;
    color: #ccc;
    text-align: center;
    max-width: 600px;
}
