/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}


/* VIDEO INTRO SECTION */
#scrolly-video {
    width: 100vw;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

#scrolly-video2 {
    width: 100vw;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

#scrolly-video3 {
    width: 100vw;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

#scrolly-video4 {
    width: 100vw;
    height: 100vh;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* CONTENT SECTIONS */
section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    background: white;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Når sektionen er synlig */
section.show {
    opacity: 1;
    transform: translateY(0);
}

.text-section {
    display: block;      /* Fjern flex */
    padding: 40px;       /* Giv luft */
    height: auto;        /* Lad sektionen vokse med indholdet */
}

ul {
    list-style: disc;
    padding-left: 20px;
}


/* Billeder i sektionerne */
section img {
    width: 80vw;
    height: 98vh;
    border-radius: 20px;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.3);
}

/* Farver (kan fjernes senere) */
.blue { background: #d0e7ff; }
.red { background: #d0e7ff; }
.green { background: #d0ffd8; }
.yellow { background: #d0ffd8; }
.brown { background: #e8d6c0; }
.purple { background: #e8d6c0; }
.teal { background: #d0fff8; }
.pink { background: #d0fff8; }

