@font-face {
    font-family: 'graphikreg';
    src: url(graphik-regular.otf);
}

@font-face {
    font-family: 'graphikbold';
    src: url(graphik-bold.otf);
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'graphikreg';
}

html, body {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

/* SECTION LAYOUT */
.section {
    width: 100vw;
    height: 100vh;
    display: flex;
}

/* DRIE KOLOMS */
.triple-split .col {
    padding: 1rem;
  display: flex;
flex-direction: column;
justify-content: space-between;
}

/* Kolombreedtes */
.triple-split .info { width: 37%; background: #e6e6e6; color: #000; justify-content: space-between; }
.triple-split .promo-image { width: 38%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.triple-split .form { width: 25%; background: #000; color: #e6e6e6; justify-content: space-between; }

/* Scrollable content binnen kolom */
.scrollable {
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* TEXT */
h1 {
    font-size: 30px;
    margin-bottom: 1rem;
    font-family: 'graphikreg';
}

h5 {
    font-size: 30px;
    margin-bottom: 1rem;
}

h6 {
    font-size: 18px;
    font-style: italic;
}

p {
    font-size: 18px;
    line-height: 1.25;
}

a{
    color: #e6e6e6;
}

a:hover {
    font-family: 'graphikbold';
}

/* SoundCloud iframes */
.music iframe {
    margin-top: 0rem;
}

/* FORM STYLING */
form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

form input, form textarea, form select {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 18px;
    border: 1px solid #dedede;
    box-sizing: border-box;
    background-color: #dedede;
    
}

form input[type="submit"] {
    margin-top: 1rem;
    font-weight: bold;
    cursor: pointer;
    background-color: #000;
    color: #e6e6e6;
    border: 1px solid #e6e6e6;
    transition: 0.3s ease;
}

form input[type="submit"]:hover {
    font-family: 'graphikbold';
}

/* Textarea hoogte */
textarea {
    height: 100px;
    resize: vertical;
}

/* Placeholder kleur */
::placeholder {
    color: #000000;
}

/* Scrollbar styling (optioneel) */
.scrollable::-webkit-scrollbar {
    width: 6px;
}

.scrollable::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 3px;
}

.triple-split .promo-image {
    width: 38%;
    height: 100vh;
    background-image: url('float092.jpg');
    background-size: cover;
    background-position: 0% center; /* start helemaal links */
    background-repeat: no-repeat;
    transition: background-position 0.1s linear; /* soepele beweging */
}








/* MOBILE HIDE / SHOW */
.mobile-only { display: none; }

@media (max-width: 900px) {

    /* Verberg desktop */
    .triple-split {
        display: none !important;
    }

    /* Toon mobile */
    
    .mobile-only {
        display: block !important;
    }

    /* Mobile layout */

    .mobile-section {
        width: 100%;
    
        display: flex;
        flex-direction: column;
        background: #e6e6e6;
        color: #000;
    }

    .mobile-block {
        width: 100%;
        padding: 1.5rem;
    }

    /* Info blok */
.mobile-info {
    width: 100vw;
     display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .mobile-info p {
        font-size: 16px;
        line-height: 1.35;
        margin: 2rem 0rem 4rem 0rem;
       
    }


    .music iframe {
        margin-bottom: 1rem;
    }

    /* Afbeelding */
     .mobile-image {
        padding: 0 !important;      /* Geen padding rondom de afbeelding */
        margin: 0 !important;
    }

    .mobile-image img {
        width: 100vw;               /* Volledige breedte scherm */
        height: auto;               /* Automatische hoogte (beeld blijft correct) */
        display: block;
    }
}

    /* Form */
    .mobile-form-block {
        background: #000;
        color: #e6e6e6;
    }

    .mobile-form-block h1 {
        font-size: 24px;
        margin-bottom: 1rem;
    }

    .mobile-form-block a {
        color: #e6e6e6;
        text-decoration: underline;
    }

    form input,
    form select,
    form textarea {
        width: 100%;
        padding: 1rem;
        margin-top: 1rem;
        font-size: 18px;
        border: 1px solid #dedede;
        background: #dedede;
        color: #000;
    }

    form input[type="submit"] {
        background: #000;
        color: #e6e6e6;
        border: 1px solid #e6e6e6;
        font-weight: bold;
    }
}
