* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 1px solid red !important; */
}
html {
    height: 100%;
    overflow-x: hidden;
    scrollbar-width: none;
    font-family: 'Roboto', 'IBM Plex Mono', monospace;
    scroll-behavior: smooth;
    background-image: url('Images/AchtergrondLineup.png');
    background-attachment: fixed;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header {
    display: block;
}
main {
    display: flex;
    flex-direction: column;
}
h1 {
    font-weight: 100;
    font-size: 2.5rem;
    color: white;
    margin: 0;
    padding: 0;
}
h2 {
    font-weight: 100;
    font-size: 1.5rem;
    color: white;
    margin: 0;
    padding: 0;
}
h3 {
    font-family: 'IBM Plex Mono';
    font-weight: 100;
    font-size: 6rem;
    color: white;
    margin: 0;
    padding: 0;
}
h4 {
    font-family: 'IBM Plex Mono';
    font-weight: 100;
    font-size: 4rem;
    color: white;
    margin: 0;
    padding: 0;
}
p {
    font-weight: 100;
    font-size: 0.8rem;
    color: white;
    margin: 0;
    padding: 0;
}
#VideoSection {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    min-height: 100vh; /* 100% of viewport */
}
video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    min-height: 100vh;
    width: 100vw;
    object-fit: cover;
}
#Header {
    width: 100%;
    margin-inline: auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.Logo {
    max-width: 2.5rem;
}
.Title h1:hover {
    color: #33A988;
    transition: 0.25s;
}

/* Hamburger button styles */
#Hamburger {
    display: none;
    width: 30px;
    height: 25px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
}
#Hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s ease; /* Smooth transition */
    transform: translate(-50%);
}
#Hamburger .top {
    top: 0;
}
#Hamburger .middle {
    top: 50%;
    transform: translate(-50%, -50%);
}
#Hamburger .bottom {
    bottom: 0;
}

/* Cross transformation when active */
#Hamburger.active .top {
    transform: translate(-20px, 12px) rotate(45deg);
}
#Hamburger.active .middle {
    opacity: 0; /* Hide middle line */
}
#Hamburger.active .bottom {
    transform: translate(-20px, -10px) rotate(-45deg);
}

.ButtonRaise {
    background: transparent;
    color: white;
    margin: 10px;
    padding: 15px 35px;
    font-size: medium;
    font-weight: lighter;
    letter-spacing: +0.10em;
    cursor: pointer;
    transition: 0.25s;
}
.ButtonRaise:hover {
    color: #33A988;
}
.ArrowsContainer {
    padding: 4rem;
    display: flex; /* Flexbox to stack arrows neatly */
    flex-direction: column; /* Stacks them vertically */
    align-items: center; /* Centers arrows horizontally */
    gap: 0px; /* Adds spacing between arrows */
}
.ArrowsContainer span {
    position: relative; /* No need for absolute positioning */
    width: 30px;
    height: 30px;
    display: block;
    box-sizing: border-box;
    transform: rotate(45deg); /* Rotate the square to make an arrow */
    border-right: 3px solid rgba(128, 128, 128, 0.3);
    border-bottom: 3px solid rgba(128, 128, 128, 0.3);
    background: transparent; /* Ensure it's just an arrow */
    margin-bottom: -20px;
    animation: animate 1s linear infinite;
}
@keyframes animate {
    0% {
        border-color: rgb(255, 255, 255, 0.5);
        transform: translate(0px, 0px) rotate(45deg);
    }
    20% {
        border-color: rgb(255, 255, 255, 0.5);
        transform: translate(0px, 10px) rotate(45deg);
    }
    20.1%, 100% {
        border-color: rgba(128, 128, 128, 0.3);
    }
}
.ArrowsContainer span:nth-child(1) {
    animation-delay: 0s;
}
.ArrowsContainer span:nth-child(2) {
    animation-delay: 0.2s;
}
.ArrowsContainer span:nth-child(3) {
    animation-delay: 0.4s;
}
.ArrowsContainer span:nth-child(4) {
    animation-delay: 0.6s;
}
.ArrowsContainer span:nth-child(5) {
    animation-delay: 0.8s;
}

#SaveTheDate {
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    padding-top: 3rem;
}

.tussenstuk {
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 4rem; /* Match height of .cellen */
}
.cellen {
    position: relative;
    z-index: 1;
    background-image: url(Images/cellen_website_balk_transparant.png);
    background-repeat: repeat-x;
    background-size: auto 4rem;
    width: 100vw; /* Match viewport width initially */
    height: 4rem;
    animation: movingline_left 100s linear infinite;
}

@keyframes movingline_left {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: -100vw; /* Moves background left */
    }
}

#TextSection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 5%;
}
#TextSection h1 {
    font-size: clamp(1rem, 2vw, 2.5rem);
    font-weight: 100;
    margin-left: 0;
    margin-right: 0;
    padding: 30px;
    text-align: center;
}

.Footer {
    bottom: 0;
    background-image: url('Images/AchtergrondLineup.png');
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    background-color: transparent;
    color: white;
    font-weight: 100;
    width: 100vw;
}
.Footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    padding: 1rem;
}
.Footer-socials {
    list-style: none;
}
.Footer-socials-link {
    color: white;
}
.Footer-socials-link:hover {
    color: #33A988;
    transition: 0.25s;
}
.Footer-partners-logos {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.logo-Enginear {
    width: 16vw;
    height: auto;
    /* aspect-ratio: 4905 / 1725; */
    padding-left: 1vw;
    padding-right: 1vw;
    padding-top: 1vh;
}
.logo-STUD {
    width: 6vw;
    height: auto;
    /* aspect-ratio: 924 / 783; */
    padding-left: 1vw;
    padding-right: 1vw;
    padding-top: 1vh;
}
.Footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    padding-left: 7%;
    padding-right: 7%;
}
.Footer h1 {
    font-size: clamp(1.25rem, 4vw, 2.5rem);
}
.Footer h2 {
    font-size: clamp(0.75rem, 2vw, 1.5rem);
}
.Footer p {
    font-size: clamp(0.4rem, 1vw, 1rem);
}

.container {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

/* 3xl */
@media (max-width: 1920px) {
    .container {
        max-width: 1800px;
    }
    }

/* 2xl */
@media (max-width: 1800px) {
.container {
    max-width: 1280px;
}
}

/* xl */
@media (max-width: 1280px) {
.container {
    max-width: 1024px;
}
.Title {
    display: none;
}
.ArrowsContainer {
    padding-bottom: 20vh;
}
}

/* l */
@media (max-width: 1024px) {
.container {
    max-width: 768px;
}
}

/* m */
@media (max-width: 768px) {
.container {
    max-width: 640px;
}
#MenuButtons {
    display: none;
    flex-direction: column;
    padding: 1rem;
    z-index: 1;
}
#MenuButtons.show {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    z-index: 3;
}
#VideoBlur.blurred {
    filter: blur(5px);
    position: fixed;
    z-index: 2;
}

#Hamburger {
    display: block;
    transform: translateY(-5px);
    z-index: 3;
}
}

/* s */
@media (max-width: 640px) {
.container {
    max-width: 475px;
}
#SaveTheDate h3 {
    font-size: 14vw;
}
#SaveTheDate h4 {
    font-size: 10vw;
}
}

/* xs */
@media (max-width: 475px) {
.container {
    width: 100%;
}
.Footer-top {
    flex-direction: column;
    align-items: center;
}
.Footer-top h1 {
    font-size: 10vw;
}
.Footer-top p {
    font-size: 3vw;
}
.Footer-column {
    padding-bottom: 20px;
}
.Footer-partners {
    padding-bottom: 20px;
}
.logo-Enginear {
    width: 30vw;
}
.logo-STUD {
    width: 15vw;
}
.Footer-socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
}