@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
    scroll-behavior: smooth;
    --main-color: #42302C;
    --accent-color: #FFCF51;
}

body {
    font-family: "Josefin sans", sans-serif;
    font-style: normal;
}

.main-color {
    color: white;
    background-color: var(--main-color);
}

.accent-color {
    color: var(--main-color);
    background-color: var(--accent-color);
}

.navbar {
    background-color: rgba(66, 48, 44, 0.7);
    /*background-color: rgba(66, 48, 44, 1);*/
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar-dark .navbar-toggler {
    border: none;
}

#logo {
    height: 40px;
}

.section-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 30px;
}

.section-subtitle {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}


.bottom-triangle {
    position: absolute;
    z-index: 10;
    width: 100%;
    bottom: 0;
}

.top-triangle {
    position: absolute;
    z-index: 10;
    width: 100%;
    top: -0.6px;
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
}

/*HERO SECTION*/

#hero-section {
    position: relative;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#hero-mobile-img {
    height: 90%
}

/*MUSIC SECTION*/
#section-2 .container {
    height: 100%;
    padding-top: 30px;
}

    #section-2 .container iframe {
        margin-bottom: 15px;
    }


#selectedYear, .custom-pill {
    border: none;
    appearance: none;
    padding: 4px 10px 0 10px;
    cursor: pointer;
    border-radius: 20px;
    margin-bottom: 20px;
    margin-right: 5px;
}

#musicPartial {
    height: 310px;
    padding-bottom: 20px;
}

.scroll-container {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.custom-music-card {
    color: white;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin-right: 15px;
    scroll-snap-align: start;
}

.custom-music-card-gradient {
    position: absolute;
    border-radius: 10px;
    top: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 30%,rgba(0,0,0,0.80) 100%);
}

.custom-music-card-detailsAndInfoBox {
    position: absolute;
    bottom: 0;
    padding-left: 15px;
    border-radius: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.custom-music-card-details h1 {
    font-size: 20px !important;
    margin-bottom: 5px !important;
    text-align: left !important;
}

.custom-music-card-details h2 {
    font-size: 18px !important;
    margin-bottom: 5px !important;
}

.custom-music-card-info {
    display: flex;
    margin-bottom: 10px;
}

.custom-music-card-badges {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .custom-music-card-badges p {
        background-color: white;
        text-transform: uppercase;
        padding: 4px 10px 0 10px;
        border-radius: 20px;
        color: black;
        margin-right: 10px;
        margin-bottom: 0px !important;
        font-size: 16px;
    }

.custom-music-card-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    height: 100%;
}

    .custom-music-card-icons a {
        text-decoration: none;
        color: white;
    }

    .custom-music-card-icons i {
        font-size: 45px;
        padding-right: 15px;
    }

.custom-music-card img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*BIO*/

#section-3 {
    position: relative;
    overflow: hidden;
}

    #section-3 .container:first-of-type {
        height: 100%;
        font-size: 20px;
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #section-3 .container img {
        width: 150%;
    }

    #section-3 p {
        margin: 0px;
    }

#bio-texts {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

#bio-text-left p, #bio-text-right p {
    margin-bottom: 10px;
}

/*AGENDA*/

#section-4 {
    min-height: 90dvh;
}

#section-4 p {
    margin-bottom: 0px;
}

#section-4 .container {
    height: 100%;
    padding-top: 30px;
}

.custom-event-card {
    margin-bottom: 15px;
    display: flex;
    width: 100%;
    min-height:145px;
}

.custom-event-card-dateBox {
    border: 1px solid var(--main-color);
    border-radius: 10px 0 0 10px;
    padding: 5px 0;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 20%;
}

    .custom-event-card-dateBox p {
        margin: 0;
    }

.custom-event-card-detailsEventBox {
    padding: 10px;
    background-color: var(--main-color);
    border-radius: 0 10px 10px 0;
    color: white;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-event-card-eventTitleAndLocation h1 {
    text-transform: uppercase;
    font-size: 24px;
}

.custom-event-card-eventTitleAndLocation h2 {
    text-transform: uppercase;
    font-size: 18px;
}

.custom-event-card-eventLinks {
    display: flex;
}

.custom-event-card-badges, .custom-event-card-filter {
    width: 50%;
    display: flex;
    align-items: center;
}

    .custom-event-card-badges a {
        cursor: pointer;
    }

    .custom-event-card-badges a, .custom-event-card-filter p {
        background-color: white;
        text-decoration: none;
        text-transform: uppercase;
        padding: 4px 10px 0 10px;
        border-radius: 20px;
        color: black;
        margin-right: 10px;
        margin-bottom: 0px !important;
    }

.custom-event-card-filter {
    justify-content: flex-end;
}


/*MEDIA*/

#section-5 {
    position: relative;
    min-height: 90dvh;
}

    #section-5 p {
        margin-bottom: 0px;
    }

    #section-5 .container {
        height: 100%;
        padding-top: 30px;
    }

.ratio {
    margin-bottom: 15px
}

#photoContainer {
    padding-bottom: 30px;
}

    #photoContainer img {
        margin-bottom: 15px;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

/*LAATSTE NIEUWS*/
#section-6 {
    position: relative;
}

    #section-6 p {
        margin-bottom: 0px;
    }

    #section-6 .container {
        height: 100%;
        padding-top: 30px;
        padding-bottom: 10px;
    }

.custom-news-card {
    color: white;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin-bottom: 15px;
}

.custom-news-gradient {
    position: absolute;
    border-radius: 10px;
    top: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.80) 100%);
}

.custom-news-newsDetailsBox {
    position: absolute;
    bottom: 0;
    padding-left: 15px;
    padding-bottom: 5px;
    padding-right: 15px;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .custom-news-newsDetailsBox h1 {
        font-size: 24px !important;
        margin-bottom: 5px !important;
        text-align: left !important;
    }

    .custom-news-newsDetailsBox h2 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

.custom-news-card img {
    border-radius: 10px;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*NIEUWSBRIEF*/

#section-7 {
    position: relative;
    height: 50dvh;
}

    #section-7 .container {
        height: 100%;
    }

    #section-7 p {
        margin-bottom: 0px;
    }

#mc_embed_signup_scroll, .mc-field-group {
    display: flex;
    flex-direction: column;
}

#mce-EMAIL {
    background: transparent; /* geen achtergrond */
    border: none; /* verwijder standaardrand */
    border-bottom: 3px solid white; /* dikke witte onderlijn */
    color: white; /* witte tekst */
    padding: 8px 4px; /* wat ruimte voor tekst */
    width: 100%; /* vult container */
    font-size: 20px; /* goed leesbaar */
    outline: none; /* geen blauwe rand bij focus */
}

.custom-newsletter-button input {
    text-transform: uppercase;
    background-color: var(--accent-color);
    height: 50px;
    border-radius: 10px;
    font-weight: bold;
    width: 100%;
    padding: 0;
}

.custom-email-input {
    margin-bottom: 40px;
}

.mce_inline_error {
    margin: 0;
}

/*CONTACT*/

#section-8 {
    position: relative;
    min-height: 50dvh;
}

    #section-8 .container {
        height: 100%;
        padding-top: 30px;
    }

.form-group {
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 30px;
}


    .form-group label {
        margin-bottom: 15px;
    }

.form-control, .form-control:focus {
    background-color: var(--accent-color) !important;
    border: none;
    border-bottom: 2px solid var(--main-color);
    font-weight: bold;
    width: 100%;
    padding: 0;
}

::placeholder {
    color: var(--main-color) !important;
}

::-ms-input-placeholder {
    color: var(--main-color) !important;
}

#Message {
    border: 2px solid var(--main-color);
    padding: 5px;
}

.contact-button {
    height: 60px;
    background-color: var(--main-color);
    border-radius: 10px;
    text-transform: uppercase;
    color: var(--accent-color);
    border: none;
}

    .contact-button:hover {
        color: var(--main-color);
        background-color: var(--accent-color);
        border: 2px solid var(--main-color);
    }

.contact-first-box {
    margin-bottom: 30px;
}

.contact-last-box {
    margin-bottom: 30px;
}

.contact-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-person {
    margin-bottom: 30px;
}

.contact-person:last-of-type {
    margin: 0;
}

    .contact-person a {
        color: var(--main-color);
        font-weight: bolder;
    }

#companyGroup {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/*POPUP*/

.modal-body img, .modal-body a {
    border-radius: 10px;
}

.modal-body a {
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.modal-body p {
    margin-bottom: 10px;
    padding-top: 20px;
}

/*FOOTER*/

footer {
    background-image: url(../img/collage.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
}

    footer .container {
        height: 100%;
        padding-top: 30px;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        footer .row {
            width: 100%;
        }

.logo-row{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-row img{
    width: 40%;
}

.nav-row ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.nav-row a{
    text-decoration: none;
    text-align: center;
    font-size: 20px;
}

.text-row{
    text-align: center;
    margin-bottom: 10px;
}

.icons-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px
}

.icons-row ul{
    display: flex;
    width: 50%;
    justify-content: space-between;
}

.copyright-row{
    text-align: center;
}

.copyright-row p:last-of-type{
    margin: 0;
}

.copyright-row p{
    margin-bottom: 10px;
}

    .copyright-row .footer-link {
        text-decoration: underline;
    }

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

    .footer-link:hover {
        text-decoration: underline;
    }

.social-icon {
    font-size: 1.8rem;
    color: white;
    transition: transform 0.3s ease;
}

    .social-icon:hover {
        transform: scale(1.2);
        color: #ccc;
    }

/*SHOP*/
#section-9 {
    height:100dvh;
}

    #section-9 p {
        margin-bottom: 0px;
    }

    #section-9 .container {
        height: 100%;
        padding-top: 80px;
        padding-bottom: 10px;
    }

.custom-shop-card {
    color: white;
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    margin-bottom: 15px;
}

.custom-shop-gradient {
    position: absolute;
    border-radius: 10px;
    top: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.80) 100%);
}

.custom-shop-shopDetailsBox {
    position: absolute;
    bottom: 0;
    padding-left: 15px;
    padding-bottom: 5px;
    padding-right: 15px;
    border-radius: 10px;
    height: 10%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .custom-shop-shopDetailsBox h1 {
        font-size: 24px !important;
        margin-bottom: 5px !important;
        text-align: left !important;
    }

    .custom-shop-shopDetailsBox h2 {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

.custom-shop-card img {
    border-radius: 10px;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-shop-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .custom-shop-link:hover .custom-shop-card {
        transform: scale(1.02);
        transition: transform 0.3s ease;
        cursor: pointer;
    }

.custom-shop-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    color: white;
}

    .custom-shop-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }