* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* list-style: none; */
    text-decoration: none;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background-color: rgb(250, 250, 250);
    color: #222222;
}

ul, ol {
    list-style: disc;
    margin-left: 1.5rem; /* optional: add indentation */
}


.sticky-header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    background-color: rgb(34, 37, 49);
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    margin: 0 auto;
    z-index: 100000;
    position: relative;
}

.nav-left a {
    text-decoration: none;
    background: none;
    border: none;
    margin-right: 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    color: #222222;
    transition: color 0.2s ease;
}

.nav-left a:hover {
    color: #007BFF;
}

.nav-left #navbar-special {
    margin-right: 3rem;
    color: rgb(255,255,255);
    padding: 5px;
    border-radius: 3px;
    transition: 0.1s;
    font-size: 1.3rem;
    font-weight: 700;
    display: inline-block;
}

.nav-left #navbar-special:hover {
    transform: scale(1.05);
}

.highlight {
  background-color: #0a71e0;
  color: white;
  padding: 2px 4px;
  border-radius: 3px;
}

.highlight-contact {
  background-color: #f5f2f2;
  color: #000000;
  padding: 3px 6px;
  border-radius: 4px;
  font-weight: 500;
  font-family: Arial, sans-serif;
}

.nav-right {
    display: flex;
    flex-wrap: nowrap;
}

.nav-right .flag {
    width: 34px;
    height: auto;
    margin-left: 1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: transform 0.2s ease;
}

.nav-right .flag:hover {
    transform: scale(1.1);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
  position: relative;
  overflow: hidden; /* to crop any overflow from image */
  /* keep your existing flex layout */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  word-break: break-word;
  padding-bottom: 11rem;
}

.hero-bg {
    position: absolute;
    width: 100%;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;  /* ensures image covers the area */
    filter: grayscale(100%) brightness(0.2);
    z-index: -1;  /* behind content */
    pointer-events: none; /* so it doesn’t interfere with clicks */
    mask-image: linear-gradient(to bottom, white 90%, transparent 5%);
}

main .hero h1 {
    margin-top: 5dvh;  
    font-size: clamp(.5rem, 5vw, 2.8rem);
}

@media (min-width: 1000px) {
    .hero h1 {
        margin-top: 10dvh;  
    }
}
main .hero h3 {
    /* margin-top: 5dvh;   */
    font-size: clamp(.7rem, 5vw, 2.3rem);
}

.hero button {
    margin-top: 1rem;
    /* margin-bottom: 25.5dvh; */
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 6vw, 2.6rem);
    font-weight: 600;
    background-color: #0a71e0;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(92, 106, 196, 0.6);
    transition: 0.1s;
}

.hero button:hover {
    background-color: #0965c9;
    transform: scale(1.05);
}

.card {
    margin-top: 1rem;
    margin-bottom: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    width: 80%;
    padding: 1.0rem 2rem 1rem 2rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(59, 66, 109, 0.6);
}

.card-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    text-wrap: wrap;
    word-break: break-word;
    max-width: 100%;  
    align-self: flex-start;
}

.title-container {
    display: flex;
    flex-direction: row;          
    align-items: center;          
    width: 100%;
    gap: 1rem;                    
}

.title-line {
    flex-grow: 1;                 
    height: 6.5px;
    border-radius: 5px;
    background-color: black;
}


@media (min-width: 1400px) {
    .title-container {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .card-title {
        margin-bottom: 0;        
    }

    .title-line {
        flex-grow: 1;
        width: auto;
    }
}

.paragraph-container {
    display: flex;
    flex-wrap: wrap;               
    gap: 2rem;                     
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
}

.special-paragraph-container {
    display: flex;
    flex-wrap: wrap;               
    gap: 2rem;                     
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem;
}

/* #bestuurders-2-paragraph {
    text-wrap: nowrap;
} */

.about-paragraph {
    font-size: 1.3rem;               
    font-weight: 500;
    text-align: left;
    line-height: 1.6;
    flex: 1 1 45%;                 
    min-width: 280px;              
}

.special-paragraph {
    font-weight: 500;
    text-align: left;
    max-width: 100%;
}
.special-paragraph p, .special-paragraph li {
    font-size: clamp(1.0rem, 3vw, 1.3rem);            
}

@media (min-width: 1200px) {
    .special-paragraph {
        max-width: 72%;
    }
}

.event-image {
    flex: 1 1 40%;         
    max-width: 25rem;
    width: 100%;          
    height: auto;
    object-fit: cover;     
    box-sizing: border-box;
}

footer {
    position: static;
    bottom: 0;
    left: 0;
}

.site-footer {
  background-color: rgb(34, 37, 49);
  box-shadow: 0 0 4px 3px rgba(0, 0, 0, 0.3);
  color: #f2f2f2;
  padding: 1rem 0;
  width: 100%;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap; 
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-socials img {
  width: 28px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer-socials img:hover {
  transform: scale(1.1);
}

/* MOBILE */
#mobile-nav {
    padding: 1rem;
    display: flex;
    background-color: rgb(34, 37, 49);
    cursor: pointer;
}

.ham-menu {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
}
.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #6F86FF;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: rgb(228, 20, 20);
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.off-screen-menu {
    z-index: 1;
    background-color:  rgb(34, 37, 49);
    height: 100%;
    width: 100%;
    max-width: 20rem;
    position: fixed;
    top: 0;
    right: -20rem;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-size: 2.5rem;
    transition: .3s ease;
    margin-bottom: 5rem;
}

/* @media (min-width: 800px) {
    .off-screen-menu {
        top: 5rem;
    }
} */
.off-screen-menu.active {
    z-index: 1;
    right: 0;
}

.off-screen-menu ul {
    list-style: none;
    padding: 0;
}

/* @media (min-width: 1400px) {
    .off-screen-menu ul {
        margin-bottom: 7rem;
    }
} */


.off-screen-menu a {
    color: white;
    transition: 0.1s;
}
.off-screen-menu a:visited {
    color: white;
}
.off-screen-menu a:hover {
    color: #6F86FF;
}
