@import url('./fonts.css');

body,html{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

*{
    box-sizing: border-box;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a{
    text-decoration: none;
    color: inherit;
}

.site_card{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 200px;
    border-radius: 100px 100px 0px 0px;
    margin-top: -100px;
}

.site_card_content{
    padding: 0px 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.site_card_content.centered{
    text-align: center;
}

/*//////////////////////////////////////////////////////////////*/
/* COLORS */
/*//////////////////////////////////////////////////////////////*/

:root{
    --purple: #604696;
    --pink: #CE5188;
    --pink_hover: #af3f70;
    --green: #5AB379;
    --blue: #54A7DC;
    --orange: #E8904E;
    --yellow: #FFF464;

    --greys_100: #18092E;
    --greys_80: #463A58;
    --greys_60: #746B81;
    --greys_40: #A39CAB;
    --greys_20: #D1CED5;
    --greys_5: #F3F3F5;

    --black: #000000;
    --white: #FFFFFF;

    --gold: #C4A572;
}

/*//////////////////////////////////////////////////////////////*/
/* FONTS */
/*//////////////////////////////////////////////////////////////*/

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.938rem;
    line-height: 1.5rem;
    font-weight: 500;
}

h1{
    font-family: 'Raisonne', sans-serif;
    font-weight: bold;
    font-size: 3.1rem;
    line-height: 3.75rem;
}

h2{
    font-family: 'Raisonne', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 2.1rem;
}

h3{
    font-family: 'Raisonne', sans-serif;
    font-weight: bold;
    font-size: 1.75rem;
    line-height: 2.1rem;
}



/*//////////////////////////////////////////////////////////////*/
/* PAGECONTENT STYLES */
/*//////////////////////////////////////////////////////////////*/


.pagestyle_light h1,
.pagestyle_light h2,
.pagestyle_light h3,
.pagestyle_light p,
.pagestyle_light a{
    color: var(--white);
}

.pagestyle_dark h1,
.pagestyle_dark h2,
.pagestyle_dark h3,
.pagestyle_dark a{
    color: var(--greys_100);
}

.pagestyle_dark p{
    color: var(--greys_80);
}

.pagecontent .buttons{
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}


/*//////////////////////////////////////////////////////////////*/
/* BUTTONS */
/*//////////////////////////////////////////////////////////////*/

.button{
    padding: 20px 30px;
    border-radius: 1000px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    outline: none;
    cursor: pointer;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: inherit;
    transition: filter 0.3s ease;
    z-index: -1;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.button:hover::before {
    filter: brightness(0.8);
}

.button_white{
    background-color: var(--white);
    color: var(--purple) !important;
}

.button_purple{
    background-color: var(--purple);
    color: var(--white) !important;
}

.button_pink{
    background-color: var(--pink);
    color: var(--white) !important;
}

.button_container{
    display: flex;
    gap: 20px;
}

.button_icon_right{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.button_container.buttons_center{
    justify-content: center;
}

/*//////////////////////////////////////////////////////////////*/
/* HAMBURGER MENU */
/*//////////////////////////////////////////////////////////////*/

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 30px;
    right: 0px;
    z-index: 9999;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    margin-right: 60px;
    transform: scale(1.2);
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 2px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/*//////////////////////////////////////////////////////////////*/
/* NAV */
/*//////////////////////////////////////////////////////////////*/

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(24, 9, 46, 0.95);
    z-index: 100;
    backdrop-filter: blur(40px);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
}

nav .nav_container{
    padding: 5% 5%;
    display: flex;
    flex-direction: row;
    gap: 10%;
    align-items: flex-start;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 150px;
}

nav .left {
    width: 300px;
    flex-shrink: 0;
}

nav .right {
    flex: 1;
    min-width: 0;
}

nav .left_menu_big{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

nav .left_menu_big li{
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--pink);
    opacity: 0;
    transform: translateX(-30px);
}

nav .left_menu_big li a {
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

nav .left_menu_big li a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: var(--pink);
    transition: width 0.3s ease;
}

nav .left_menu_big li a:hover::before {
    width: 15px;
}

nav .left_menu_big li a:hover {
    transform: translateX(10px);
    color: var(--white);
}

nav .left_menu_small{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

nav .left_menu_small li{
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(250, 201, 222, 0.6);
    opacity: 0;
    transform: translateX(-20px);
}

nav .left_menu_small li a {
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

nav .left_menu_small li a:hover {
    color: var(--pink);
    transform: translateX(5px);
}

nav .right .grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px 30px;
    opacity: 0;
    transform: translateY(30px);
}

nav .right .grid .col{
    display: block;
    opacity: 0;
    transform: translateY(20px);
}

nav .right .grid .col .header{
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

nav .right .grid .col .icon{
    width: 24px;
    flex-shrink: 0;
}

nav .right .grid .col .icon [data-lucide]{
    font-size: 1.5rem;
    color: var(--pink);
    transition: transform 0.3s ease, color 0.3s ease;
    width: 24px;
    height: 24px;
}

nav .right .grid .col .title{
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--pink);
    margin: 0px;
    padding: 0px;
}

nav .right .grid .col .linklist{
    margin: 0px;
    padding: 0px;
    margin-left: 39px;
    list-style: none;
    padding-left: 0;
}

nav .right .grid .col .linklist li{
    margin-bottom: 10px;
    color: var(--white);
    font-size: 0.85rem;
}

nav .right .grid .col .linklist li:last-of-type{
    margin-bottom: 0px;
}

nav .right .grid .col .linklist li a{
    margin-left: 0px;
    transition: margin-left 0.3s ease, color 0.3s ease;
    position: relative;
    display: block;
    padding: 3px 0;
}

nav .right .grid .col .linklist li a::before{
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23CE5188' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m9 18 6-6-6-6'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

nav .right .grid .col .linklist li:hover a{
    color: var(--pink);
    margin-left: 5px;
}

nav .right .grid .col .linklist li:hover a::before{
    opacity: 1;
}



/*//////////////////////////////////////////////////////////////*/
/* HEADER */
/*//////////////////////////////////////////////////////////////*/

header{
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 3;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(70, 58, 88, 0.6) 0%, rgba(70, 58, 88, 0.8) 100%);
    z-index: 1;
    transform-origin: bottom left;
    transform: skewY(-3deg);
    border-bottom: 10px solid var(--pink);
}

header .header_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform-origin: bottom left;
    transform: skewY(-3deg);
}

header .header_image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    z-index: 0;
    transform-origin: bottom left;
    transform: skewY(-3deg);
}

header.header_xl{
    display: flex;
    flex-direction: column;
    height: 80vh;
    min-height: 600px;
    position: relative;
}

header.header_l{
    display: flex;
    flex-direction: column;
    height: 60vh;
    min-height: 500px;
    position: relative;
}

header.header_m{
    display: flex;
    flex-direction: column;
    height: 50vh;
    min-height: 400px;
    position: relative;
}

header.header_s{
    display: flex;
    flex-direction: column;
    height: 40vh;
    min-height: 400px;
    position: relative;
}



header .navbar{
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 70px;
    padding-bottom: 0px;
}

header .navbar .center .logo{
    display: flex;
    flex-direction: column;
    align-items: center;
}

header .navbar .center .logo img{
    width: 300px;
    height: auto;
    z-index: 2;
}

header .navbar .center .logo .subtitle{
    background-color: var(--greys_5);
    color: var(--greys_100);
    font-family: 'Raisonne', sans-serif;
    font-weight: bold;
    padding: 8px 15px;
    font-size: 1rem;
    box-shadow: 0px 4px 3px -3px rgba(0,0,0,0.5);
    transform: rotate(-3deg);
    z-index: 1;
    margin-top: 3px;
    font-size: 1.2rem;
}

header .header_content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 3%;
}

header .header_content h1{
    color: var(--white);
    max-width: 1200px;
    text-align: center;
}

header.header_xl .header_content h1{
    max-width: 620px;
}

header .header_content .buttons{
    display: flex;
    gap: 20px;
}

header .header_ticker{
    width: 120%;
    height: 60px;
    background-color: var(--pink);
    overflow: hidden;
    position: relative;
    z-index: 3;
    transform-origin: top left;
    transform: rotate(-3deg) translateX(-10%);
    margin-top: -20px;
}

header .header_ticker .ticker_list{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    transform: translateX(0);
    left: 0;
    width: 100%;
}
header .header_ticker .ticker_list li{
    font-family: 'Raisonne', sans-serif;
    font-weight: bold;
    color: var(--white);
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 30px;
    position: relative;
    flex-shrink: 0;
    margin-top: 5px;
}

header .header_ticker .ticker_list li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-image: url('../../assets/images/ticker_seperator.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.first_section{
    position: relative;
    z-index: 1;
    margin-top: -10vh;
    padding-top: 10vh;
    padding-bottom: 140px;
}


/*//////////////////////////////////////////////////////////////*/
/* SPONSOR CAROUSEL */
/*//////////////////////////////////////////////////////////////*/

#sponsorcarousel{
    background-color: var(--white);
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0px -2px 15px rgba(0, 0, 0, 0.1);
}

#sponsorcarousel h1{
    color: var(--greys_100);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

#sponsorcarousel .sponsorlogo_slider{
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 100px;
}

#sponsorcarousel #sponsorlogo_carousel{
    display: flex;
    flex-direction: row;
    gap: 100px;
    will-change: transform;
    width: max-content;
}

#sponsorcarousel #sponsorlogo_carousel .sponsor{
    width: 200px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 20px;
}

#sponsorcarousel #sponsorlogo_carousel .sponsor img{
    width: 100%;
    height: 100%;
    max-height: 120px;
    object-fit: contain;
}

#sponsorcarousel #sponsorlogo_carousel .sponsor img{
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

#sponsorcarousel #sponsorlogo_carousel:hover .sponsor img{
    filter: grayscale(100%);
    opacity: 0.5;
}

#sponsorcarousel #sponsorlogo_carousel .sponsor:hover img{
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

/*//////////////////////////////////////////////////////////////*/
/* NIEUWS SINGLE */
/*//////////////////////////////////////////////////////////////*/

.nieuws_single_image{
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -250px;
    border: 5px solid var(--white);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    aspect-ratio: 16/9;
}

.nieuws_single_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#nieuws_single{
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: var(--white);
}

#nieuws_single .site_card_content{
    padding-top: 50px;
    max-width: 900px;
}

#nieuws_single .news_title{
    font-size: 2rem;
    color: var(--pink);
    width: 100%;
    text-align: center;
    margin: 0px;
    padding: 0px;
    line-height: 2.5rem;
}

#nieuws_single .post_meta{
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

#nieuws_single .post_meta .post_date,
#nieuws_single .post_meta .post_author{
    display: flex;
    flex-direction: row;
    gap: 0px;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--greys_60);
}

#nieuws_single .post_meta .post_date [data-lucide],
#nieuws_single .post_meta .post_author [data-lucide]{
    height: 16px;
}

#nieuws_single .post_content h1{font-size: 2rem; color: var(--pink);}
#nieuws_single .post_content h2{font-size: 1.8rem; color: var(--pink);}
#nieuws_single .post_content h3{font-size: 1.6rem; color: var(--pink);}
#nieuws_single .post_content h4{font-size: 1.4rem; color: var(--pink);}
#nieuws_single .post_content h5{font-size: 1rem; color: var(--pink);}
#nieuws_single .post_content h6{font-size: 0.8rem; color: var(--pink);}
#nieuws_single .post_content a{color: var(--pink); text-decoration: underline; transition: color 0.3s ease;}
#nieuws_single .post_content a:hover{color: var(--pink_hover);}
#nieuws_single .post_content em{font-style: italic;}



#nieuws_single .post_content ul,
#nieuws_single .post_content ol{
    padding-left: 15px;
}

#nieuws_single .post_content ul li,
#nieuws_single .post_content ol li{
    font-family: 'Montserrat', sans-serif;
    font-size: 0.938rem;
    line-height: 1.5rem;
    font-weight: 500;
}

#nieuws_single .post_content img.alignright {float:right; margin:0 0 1em 1em}
#nieuws_single .post_content img.alignleft {float:left; margin:0 1em 1em 0}
#nieuws_single .post_content img.aligncenter {display: block; margin-left: auto; margin-right: auto}
#nieuws_single .post_content a img.alignright {float:right; margin:0 0 1em 1em}
#nieuws_single .post_content a img.alignleft {float:left; margin:0 1em 1em 0}
#nieuws_single .post_content a img.aligncenter {display: block; margin-left: auto; margin-right: auto}

#related_posts{
    width: 100%;
    position: relative;
    z-index: 2;
    background-color: var(--greys_5);
}

#related_posts .related_posts_title{
    color: var(--purple);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

#related_posts .posts_container{
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

#related_posts .posts_container::-webkit-scrollbar {
    display: none;
}

#related_posts .posts_container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#related_posts .posts_container .post{
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#related_posts .posts_container .post .thumbnail{
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    background-color: var(--greys_10);
    overflow: hidden;
    border-radius: 15px;
}

#related_posts .posts_container .post .thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#related_posts .posts_container .post .thumbnail img:hover{
    transform: scale(1.05);
}

#related_posts .posts_container .post .date{
    font-size: 0.8rem;
    color: var(--greys_60);
    font-weight: 500;
}

#related_posts .posts_container .post .title a{
    font-size: 1.2rem;
    color: var(--greys_100);
    font-weight: 700;
    transition: color 0.3s ease;
}

#related_posts .posts_container .post .title a:hover{
    color: var(--purple);
}


/*//////////////////////////////////////////////////////////////*/
/* FOOTER */
/*//////////////////////////////////////////////////////////////*/

footer{
    position: relative;
    z-index: 2;
    overflow: hidden;
    font-size: 0.8rem;
    color: var(--greys_80);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/pattern_bw.svg');
    background-size: cover;
    background-position: top;
    opacity: 0.1;
    z-index: -1;
}

footer .site_card_content{
    display: flex;
    flex-direction: row;
    gap: 80px;
}

footer .left{
    width: 20%;
}

footer .left .logo{
    width: 100%;
}

footer .left p{
    font-size: 0.8rem;
    margin-top: 30px;
    margin-bottom: 30px;
}

footer .left .logo img{
    width: 100%;
    height: auto;
}

footer .left .socials{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

footer .left .socials a{
    color: var(--greys_80);
}

footer .left .socials a [data-lucide]{
    font-size: 1.5rem;
    color: var(--purple);
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .left .socials a:hover [data-lucide]{
    transform: translateY(-3px);
    color: var(--pink);
}

footer .right .grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

footer .right .grid .col{
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

footer .right .grid .col{
    display: block;
}

footer .right .grid .col .header{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 10px;
}

/* Desktop nav - verberg chevrons */
nav .right .grid .col .header .chevron {
    display: none;
}

footer .right .grid .col .header .chevron {
    display: none;
}

footer .right .grid .col .icon{
    width: 20px;
    flex-shrink: 0;
}

footer .right .grid .col .icon [data-lucide]{
    font-size: 1.5rem;
    color: var(--pink);
    transition: transform 0.3s ease, color 0.3s ease;
    width: 20px;
}

footer .right .grid .col .title{
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--pink);
    margin: 0px;
    padding: 0px;
}

footer .right .grid .col .linklist{
    margin: 0px;
    padding: 0px;
    margin-left: 40px;
    list-style: none;
    padding-left: 0;
}

footer .right .grid .col .linklist li{
    margin-bottom: 8px;
}

footer .right .grid .col .linklist li:last-of-type{
    margin-bottom: 0px;
}

footer .right .grid .col .linklist li a{
    margin-left: 0px;
    transition: margin-left 0.3s ease, color 0.3s ease;
    position: relative;
}

footer .right .grid .col .linklist li a::before{
    content: '';
    position: absolute;
    left: -20px;
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23CE5188' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m9 18 6-6-6-6'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

footer .right .grid .col .linklist li:hover a{
    color: var(--pink);
    margin-left: 3px;
}

footer .right .grid .col .linklist li:hover a::before{
    opacity: 1;
}

/*//////////////////////////////////////////////////////////////*/
/* CLOSER */
/*//////////////////////////////////////////////////////////////*/


#closer{
    position: relative;
    z-index: 2;
    overflow: hidden;
    font-size: 0.8rem;
    background-color: var(--greys_80);
}

#closer.site_card{
    padding-top: 30px;
    padding-bottom: 30px;
}

#closer .site_card_content{
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
}

#closer p{
    font-size: 0.8rem;
    color: var(--greys_40);
}

#closer p a{
    text-decoration: underline;
    color: var(--greys_40);
    transition: color 0.3s ease;
}

#closer p a:hover{
    color: var(--white);
}

#closer .right{
    text-align: right;
    margin-top: -10px;
}

#closer .right [data-lucide]{
    color: var(--pink);
    fill: var(--pink);
    stroke: var(--pink);
    width: 18px;
    transform: translateY(7px);
    margin-left: 5px;
    margin-right: 5px;
}


/*//////////////////////////////////////////////////////////////*/
/* RESPONSIVE DESIGN */
/*//////////////////////////////////////////////////////////////*/

/* Navigation - 1200px */
@media (max-width: 1200px) {
    nav .nav_container {
        flex-direction: column;
        gap: 40px;
        padding-top: 120px;
        align-items: stretch;
    }
    
    nav .left {
        width: 100%;
        text-align: center;
    }
    
    nav .right {
        width: 100%;
    }
    
    nav .right .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 25px;
    }
    
    nav .left_menu_big li {
        font-size: 1.8rem;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    /* Navigation */
    nav .right .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 25px;
    }
    
    /* Header */
    header h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    header .header_content .buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    header .header_content .buttons .button {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    footer .site_card_content {
        flex-direction: column;
        gap: 40px;
    }
    
    footer .left {
        width: 100%;
        text-align: center;
    }
    
    footer .right .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* Global Typography */
    h1 {
        font-size: 2rem;
        line-height: 2.4rem;
    }
    
    h2 {
        font-size: 1.6rem;
        line-height: 2rem;
    }
    
    h3 {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
    
    /* Hamburger */
    .hamburger {
        position: fixed;
        top: 30px;
        right: 50px;
        width: 45px;
        height: 45px;
        z-index: 10000;
        margin-right: 0;
    }
    
    .hamburger-line {
        width: 25px;
        height: 2px;
        margin: 2.5px 0;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5.5px, 5.5px);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5.5px, -5.5px);
    }

    .site_card{
        border-radius: 30px 30px 0px 0px;
    }
    
    /* Header */
    header.header_xl {
        justify-content: center;
    }
    
    header .header_content {
        margin-bottom: 0;
        padding: 0 20px;
    }
    
    header h1 {
        font-size: 2.4rem;
        line-height: 2.8rem;
        margin-bottom: 30px;
    }
    
    header .header_content .buttons .button {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
    
    /* Logo positionering op mobiel */
    header .navbar .center {
        position: absolute;
        left: 20px;
        transform: none;
    }
    
    header .navbar .center .logo {
        align-items: flex-start;
        text-align: left;
    }
    
    header .navbar .center .logo .subtitle {
        font-size: 0.8rem;
        padding: 5px 10px;
        margin-top: 2px;
    }
    
    /* Navigation */
    nav {
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    nav .nav_container {
        padding: 4%;
        padding-top: 100px;
        gap: 0;
        min-height: 100vh;
        overflow-y: auto;
        flex-direction: column;
    }
    
    /* Verberg de hele linker sectie op mobiel */
    nav .left {
        display: none;
    }
    
    /* Right sectie neemt volle breedte over */
    nav .right {
        width: 100%;
    }
    
    nav .right .grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Voeg Home toe als eerste item van de grid */
    nav .right .grid::before {
        content: 'Home';
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--pink);
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        order: -1;
    }
    
    nav .right .grid::before:hover {
        color: var(--white);
    }
    
    /* Verberg iconen in navigatie op mobiel */
    nav .right .grid .col .header .icon {
        display: none;
    }
    
    nav .right .grid .col .header {
        cursor: pointer;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        margin-bottom: 0;
        position: relative;
    }
    
    nav .right .grid .col .header .title {
        text-align: center;
        font-size: 1.2rem;
    }
    
    nav .right .grid .col .header .chevron {
        display: flex;
        transition: transform 0.3s ease;
    }
    
    nav .right .grid .col .header .chevron [data-lucide] {
        width: 20px;
        height: 20px;
        color: var(--pink);
    }
    
    nav .right .grid .col.active .header .chevron {
        transform: rotate(180deg);
    }
    
    nav .right .grid .col .linklist {
        margin-left: 0;
        margin-top: 0;
        height: 0;
        overflow: hidden;
        opacity: 0;
        padding-bottom: 0;
        text-align: center;
    }
    
    nav .right .grid .col .linklist li {
        margin-bottom: 10px;
        text-align: center;
    }
    
    nav .right .grid .col .linklist li a {
        display: block;
        padding: 8px 0;
        color: var(--white);
        transition: color 0.3s ease;
    }
    
    nav .right .grid .col .linklist li a:hover {
        color: var(--pink);
    }
    
    nav .left_menu_big li {
        font-size: 1.6rem;
    }
    
    nav .left_menu_small {
        display: none;
    }

    /* General Site Cards */
    .site_card{
        padding-left: 25px;
        padding-right: 25px;
        margin-top: -60px;
    }
    
    .site_card .site_card_content {
        padding: 0 50px;
        padding-bottom: 40px !important;
    }

    /* Sponsor Carousel */
    #sponsorcarousel h1{
        font-size: 1.5rem;
        margin: 0; padding: 0;
    }

    #sponsorcarousel.site_card{
        padding-left: 0px;
        padding-right: 0px;
    }

    #sponsorcarousel.site_card .site_card_content {
        padding: 0px !important;
    }

    #sponsorcarousel .sponsorlogo_slider{
        margin-top: 40px;
        margin-bottom: 40px;
    }

    #sponsorcarousel .button_container{
        margin-bottom: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }

    #sponsorcarousel #sponsorlogo_carousel {
        gap: 20px;
    }

    header .header_ticker{
        height: 40px;
    }

    header .header_ticker .ticker_list li{
        font-size: 1rem;
        padding: 25px;
    }

    .first_section{
        margin-top: -6vh;
    }

    /* Footer */
    footer .right .grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0px;
    }
    
    footer .right .grid .col {
        padding: 0;
    }
    
    footer .right .grid .col .header {
        cursor: pointer;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        padding: 15px 0;
    }
    
    footer .right .grid .col .header .chevron {
        display: flex;
        margin-left: auto;
    }
    
    footer .right .grid .col .header .chevron [data-lucide] {
        width: 16px;
        height: 16px;
        color: var(--pink);
    }
    
    footer .right .grid .col .linklist {
        margin-left: 40px;
        margin-top: 0;
        height: 0;
        overflow: hidden;
        opacity: 0;
    }
    
    footer .right .grid .col.active .header .chevron {
        transform: rotate(180deg);
    }
    
    footer .left {
        text-align: center;
    }
    
    footer .left .socials {
        justify-content: center;
    }
    
    .site_card .site_card_content {
        padding: 0 20px;
    }
    
    .site_card {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    footer .left .logo{
        margin-bottom: 40px;
    }

    footer .left .adres{
        display: none;
    }

    /* Closer */
    #closer p{
        margin: 0; padding: 0;
    }

    #sponsorcarousel #sponsorlogo_carousel{
        gap: 20px;
    }

    #sponsorcarousel #sponsorlogo_carousel .sponsor{
        width: 170px;
        height: 140px;
        padding: 10px;
    }

    #closer .site_card_content{
        margin-bottom: -40px;
    }

    #closer .right p span{
        display: block;
    }

    header.header_s{
        height: 20vh;
        min-height: 300px;
    }

    .nieuws_single_image{
        margin-top: -140px;
        width: 90%;
    }

    #nieuws_single .site_card_content {
        padding-top: 10px;
    }

    /* Related Posts Mobile */
    #related_posts .posts_container {
        margin-left: -50px;
        margin-right: -50px;
        padding-left: 50px;
        padding-right: 50px;
        gap: 20px;
    }
    
    #related_posts .posts_container .post {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    #related_posts .posts_container .post:last-child {
        margin-right: 50px;
    }

    .first_section{
        padding-bottom: 100px;
    }

}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    /* Global Typography */
    h1 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }
    
    /* Hamburger */
    .hamburger {
        width: 40px;
        height: 40px;
        right: 20px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
        margin: 2px 0;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
    }
    
    /* Header */
    header h1 {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    header .navbar{
        height: 0px;
        padding-top: 50px;
    }
    
    header .navbar .center .logo img {
        max-width: 200px;
    }
    
    header .navbar .center .logo .subtitle {
        font-size: 0.7rem;
        padding: 4px 8px;
        margin-left: 25px;
    }
    
    /* Navigation */
    nav .nav_container {
        padding: 3%;
        padding-top: 80px;
    }
    
    nav .left_menu_big li {
        font-size: 1.4rem;
    }
    
    /* Buttons */
    .button_container {
        flex-direction: column;
        gap: 10px;
    }
    
    .button {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    /* Closer */
    #closer .site_card_content {
        flex-direction: column;
        gap: 0px;
        text-align: center;
    }
    
    #closer .right {
        text-align: center;
        margin-top: 0;
    }

    /* Related Posts Small Mobile */
    #related_posts .posts_container .post {
        flex: 0 0 250px;
        min-width: 250px;
    }
}



