@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #050505;
    font-family: 'Outfit', sans-serif;
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: zoomInOut 25s infinite alternate linear;
}

.slide.active {
    opacity: 1;
}

#slide-clay {
    background-image: url('assets/clay.png');
}

#slide-hard {
    background-image: url('assets/hard.png');
}

#slide-grass {
    background-image: url('assets/grass.png');
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%), rgba(0,0,0,0.4);
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.message-container {
    text-align: center;
    position: relative;
    width: 100%;
    height: 100px;
}

.message {
    font-size: 4vw;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease, filter 1s ease;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    filter: blur(4px);
}

.message.visible {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    filter: blur(0px);
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@media (max-width: 768px) {
    .message {
        font-size: 6vw;
        letter-spacing: 0.3em;
    }
}
