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

a {
    text-decoration: none;
}

/* MAIN WRAPPER */
.scroll-wrapper {
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
}

/* SECTIONS */
.scroll-section {
    min-height: 100vh;
    min-height: 100dvh;
    scroll-snap-align: start;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 4vw;
}

/* NON-INTRO HEADINGS */
.scroll-section:not(.init) h2 {
    color: white;
    font-size: clamp(2.5rem, 8vw, 10rem);
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        -1px 0px 0 #000,
        1px 0px 0 #000,
        0px -1px 0 #000,
        0px 1px 0 #000;
}

.scroll-section:not(.init) h3 {
    color: white;
    font-size: clamp(1rem, 3vw, 2rem);
    font-family: 'Times New Roman', serif;
    font-style: italic;
    margin-top: 1rem;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        -1px 0px 0 #000,
        1px 0px 0 #000,
        0px -1px 0 #000,
        0px 1px 0 #000;
}

/* INTRO SECTION */
.scroll-section.init {
    background-color: white;
    padding: 10vw 6vw;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.scroll-section.init h2 {
    color: black;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(2rem, 6vw, 4rem);
}

.scroll-section.init h3 {
    color: rgb(134, 134, 134);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: clamp(0.9rem, 3vw, 1.2rem);
    margin-top: 10px;
}

/* BACKGROUND IMAGES */
.scroll-section.atletik {
    background-image: url("https://runeclausen.dk/uploads/54589627272_e395f37a0c_k.jpg");
}

.scroll-section.ukraine {
    background-image: url("https://runeclausen.dk/uploads/54907577196_5ba89bbdad_k.jpg");
}

.scroll-section.dyr {
    background-image: url("https://runeclausen.dk/uploads/020.jpg");
}

.scroll-section.myanmar {
    background-image: url("https://runeclausen.dk/uploads/54363747898_01a612225a_k.jpg");
}

/* MOBILE TWEAKS */
@media (max-width: 768px) {
    .scroll-section {
        background-position: center center;
        padding: 0 6vw;
    }

    .scroll-section.init {
        min-height: 70vh;
        padding: 12vw 6vw;
    }
}

@media (max-width: 480px) {
    .scroll-section.init {
        min-height: 80vh;
    }
}


/* Indicator container */
.scroll-indicator {
    position: fixed;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Each dot */
.scroll-indicator .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.7);
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Active dot */
.scroll-indicator .dot.active {
    background: white;
    transform: scale(1.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-indicator {
        right: 10px;
        gap: 10px;
    }

    .scroll-indicator .dot {
        width: 10px;
        height: 10px;
    }
}