@font-face {
    font-family: "Inter Regular";
    src: url(/assets/fonts/inter-regular.woff2);
    font-weight: normal
}

@font-face {
    font-family: "Inter Light";
    src: url(/assets/fonts/inter-light.woff2);
    font-weight:100
}

@font-face {
    font-family: "Inter Bold";
    src: url(/assets/fonts/inter-bold.woff2);
    font-weight: 700
}

/* RESET */

:root {
    margin: 0;
    padding: 0;
    font-family: "Inter Regular", Helvetica, Arial, sans-serif;
    font-size: 62.5%;
    text-align: left;
}

html, body, div, section, iframe, h1, h2, h3, h4, h5, h6, p, ol, ul, a {
    margin: 0 auto;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
  }

ol, ul {
    list-style: square;
}

li {
    text-align: left;
    padding: 0 0 1em 0;
}
  
img {
    max-width: 100%;
    height: auto;
}

/* DEBUG */

/* * {
    outline: 1px solid #f00 !important;
  }
   */


/* MAIN STYLE */

:root {
    --main-color:#fff;
    --bg-color:#000;
    --nav-height: 4em;
    --page-width: 128em;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--main-color);
    font-weight: normal;
    width: 100%;
    border: none;
    
}

.page-wrap {
    width: 100vw;
    max-width: var(--page-width);
    background-image: url(/assets/img/welcome.jpg);
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

section {
    background-color: var(--bg-color);
    padding: 1.5em;
}

h1 {
    font-family: "Inter Bold", Arial, Helvetica, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 2.5em;
    padding: 0 0 1em 0;
    margin: 0;
}

h2 {
    font-weight: bold;
    font-size: 1.8em;
    padding: 0.5em 0;
    text-transform: uppercase;
}

h3 {
    font-weight: normal;
    font-size: 1.4em;
    padding: 0 0 0.5em 0;
    letter-spacing: -0.05em;
    text-transform: uppercase
}

p {
    font-weight: 100;
    font-size: 1.4em;
    padding: 0 0 1em 0;
}

a {
    color: inherit;
    font-weight: bold;
    text-decoration: none;
}

a.stealth {
    text-decoration: none;
}

.bold {
    font-family: "Inter Bold", Arial, Helvetica, sans-serif;
}

/* NAV */

nav {
    background-color: var(--bg-color);
    width: 100%;
    height: var(--nav-height);
    padding: 0;
    font-size: 1.5em;
}

.nav-grid {
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
}

.nav-item {
    width: 100%;
}

.nav-logo {
    font-family: "Inter Bold", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: left;
    padding-left: 1em;
}

.nav-logo img {
    height: 2em;
    width: auto;
}

.nav-link {
    text-align: right;
    text-transform: uppercase;
    font-weight: 100;
    padding-right: 1em;
}


/* PAGE */

#welcome {
    height: calc(100vh - var(--nav-height));
    min-height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-rows: 100%;
    align-items: center;
}

.welcome-logo {
    width: 100%;
    height: 100%;
}

.welcome-text {
    font-family: "Inter Light", Arial, Helvetica, sans-serif;
    font-size: 2.5vh;
    text-transform: uppercase;
    text-align: center;
    margin: auto;
}

#register {
    width: 100%;
    max-width: var(--page-width);
    padding: 0;
    scroll-margin-top: calc(var(--nav-height) + 1em);
}


#iframe-register {
    width: 100%;
    height: 104em;
    margin: 0;
    padding: 0;
}

#tickets-footer {
    width: 100%;
    height: 30em;
    min-height: 30em;
    max-height: 30em;
    background-image: url(/assets/img/tickets-footer.jpg);
    background-position: center;
    background-size: cover;
}

#faq {
    padding: 1.5em;
    background-color: var(--bg-color);
    color: var(--main-color);
    scroll-margin-top: calc(var(--nav-height) + 1em);
}


.accordion {
  max-width: 100%;
  margin: 1em auto;
}

.accordion-input {
  display: none; /* Hide the checkbox visually */
}

.accordion-label {
    display: block;
    cursor: pointer;
    font-family: "Inter Bold", Arial, Helvetica, sans-serif;
    font-size: 1.65em;
    padding: 0.5em  0.5em 0.5em;
    color: var(--main-color);
    background-color: #111;
    border-radius: 0.5em;
    user-select: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2em;
    border-radius: 0 0 6px 6px;
    transition: max-height 0.25s;
    transition: padding 0.25s;
    font-size: 1.6em;
}

/* Show content when checked */
.accordion-input:checked ~ .accordion-content {
    max-height: 1000vh; /* Adjust max-height to fit content */
    padding: 1em 2em;
}

/* Plus/minus icon */
.accordion-label::after {
    content: "\2193";
    float: right;
    font-size: 1em;
    padding: 0 0.5em 0 0;
}

.accordion-input:checked + .accordion-label::after {
    content: "\2191";
}

#grid-partners {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1em 0;
    justify-content: space-between;
}

.partner-link {
    width: 14em;
    height: 14em;
    min-width: 14em;
    min-height: 14em;
    padding: 1.5em;
}

.partner-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.loterij { background-image: url(/assets/img/nationale-loterij.svg); }
.stubru { background-image: url(/assets/img/stubru.svg); }
.bacardi { background-image: url(/assets/img/bacardi.svg); }
.french { background-image: url(/assets/img/french-kiss-club.svg); }
.redbull { background-image: url(/assets/img/redbull.svg); }
.antwerp { background-image: url(/assets/img/antwerp.svg); }
.stageco { background-image: url(/assets/img/stageco.svg); }
.johnjane { background-image: url(/assets/img/johnjane.svg); }


#grid-social {
    display: grid;
    grid-template-columns: 3.2em 3.2em;
    grid-template-rows: 3.2em;
    gap: 2em;
    justify-content: center;
    padding-bottom: 5em;
}

footer {
    display: grid;
    width: 100%;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(36em, 1fr));
    padding: 5em 0 3em 0;
    font-size: 0.8em;
    text-align: center;
    background-color: var(--bg-color);
}

footer p {
    font-size: 1.8em;
    padding: 1em;
}

footer a {
    text-transform: uppercase;
    text-decoration: underline;
}

.bv {
    background-color: #000;
    text-align: center;
    
}