:root {
    --accent: #bcff00; /* Neon-Lando */
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Versteckt den echten Zeiger */
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* DIE TASCHENLAMPE */
#flashlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background-color: var(--white);
    border-radius: 50%;
    /* WICHTIG: Erlaubt das Klicken durch den Kreis hindurch */
    pointer-events: none; 
    z-index: 9999;
    /* Erzeugt den Reveal-Effekt durch Invertierung */
    mix-blend-mode: difference;
    transform: translate3d(-50%, -50%, 0);
    will-change: transform;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    z-index: 1000;
}

.logo {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
}

.logo span { color: var(--accent); }

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    /* Macht die Links trotz Taschenlampe klickbar */
    pointer-events: auto; 
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-text {
    position: absolute;
    font-size: 30vw;
    font-weight: 900;
    opacity: 0.05;
    z-index: -1;
}

h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 8vw;
    text-align: center;
    line-height: 0.9;
}

.accent-text {
    margin-top: 20px;
    color: var(--accent);
    letter-spacing: 5px;
    font-size: 12px;
}

/* HORIZONTAL SCROLL */
.horizontal-container {
    height: 400vh; /* Scroll-Länge */
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.horizontal-content {
    display: flex;
    padding-left: 10vw;
    will-change: transform;
    transition: transform 0.1s linear;
}

.slide {
    flex: 0 0 60vw;
    margin-right: 15vw;
}

.img-wrap {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: 0.5s ease;
}

.slide:hover img {
    filter: grayscale(0);
}

.info {
    margin-top: 20px;
    font-family: 'Syncopate';
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--accent);
    padding-top: 10px;
}

/* FOOTER */
.footer {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.join-btn {
    padding: 20px 60px;
    background: var(--accent);
    color: #000;
    border: none;
    font-weight: 700;
    letter-spacing: 5px;
    pointer-events: auto;
}
