@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #031d36;
    --secondary-color: #fbad0a;
    --tertiary-color:#a7a7a7;
    --text-dark: #212529;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font-1: "Alfa Slab One", serif;
    --header-font-2: "Bebas Neue", sans-serif;
    --header-font-3: "Lexend";
    --header-font-4: "Roboto";
    --header-font-5: "DM Sans";
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--header-font-1);
    color: var(--primary-color);
    text-align: center;
    line-height: 3.75rem;
    text-shadow: 2px 2px var(--secondary-color);
}

.section__description {
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.75rem;
}

.btn {
    padding: 1rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--tertiary-color);
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
}

img {
    display: flex;
    width: 100%;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

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

body {
    font-family: "Montserrat", sans-serif;
}


nav {
    position: fixed;
    width: 100%;
    height: 125px;
    margin-inline: auto;
    z-index: 200;
}

.nav__header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
}

.nav__logo img {
    max-width: 150px;
    height: 250px;
}

.nav__logo-dark {
    display: none;
}

.nav__menu__btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav__links {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    padding: 2rem;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--primary-color);
    transition: 0.5s;
    z-index: -1;
    transform: translateY(-100%);
}

.nav__links a {
    font-weight: 600;
    white-space: nowrap;
    color: var(--white);
    transition: 0.3s;
}

.nav__links a:hover {
    color: var(--secondary-color);
}

.header__content h1 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--header-font-3, Arial, sans-serif);
    color: var(--primary-color, #fff);
    line-height: 2rem;
    text-align: left;
    margin-top: -90px;
}

.header__content h2 {
    max-width: 400px;
    padding: 5px 5px;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: var(--header-font-3, Arial, sans-serif);
    text-align: left;
    color: #92b6d5;
}

.parent {
    position: relative;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 2px;
}

 

.div1 {
    grid-area: 1 / 1 / 7 / 5;
}
.div2 {
    grid-area: 1 / 5 / 3 / 7;
}
.div3 {
    grid-area: 1 / 7 / 3 / 9;
}
.div4 {
    grid-area: 3 / 5 / 5 / 7;
}
.div5 {
    grid-area: 3 / 7 / 5 / 9;
}

.div6,
.div7,
.div8,
.div9,
.div10,
.div11{	
    visibility: hidden;
}

.gallery-button {
    display: none;
    
    position: absolute;
    background-color: #031d36; 
    color: #fff; 
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.gallery-button:hover {
    background-color: #333; 
}

.slide-1 {
    border-radius: 15px 0px 0px 15px;
}

.slide-2 {
    border-radius: 0px 15px 0px 0px;
}

.slide-3 {
    border-radius: 0px 0px 15px 0px;
}





.event__details h1 {
    margin-top: 00px;
}

.event__details h4 {
    margin: 10px 0px;
    color: #92b6d5;
}

.event__details li {
    text-align: left;
    padding-top: 2rem;
    padding-right: 13rem;
    font-family: var(--header-font-3);
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-dark);
}

.event__details ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    text-align: left;
    padding-bottom: 80px;
    border-bottom:  1px solid #031d36;
}  

.info__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: -250px;
}

.info__card {
    justify-content: flex-end;
    flex-direction: column; 
    border: 1px solid #bcbcbc;
    margin-bottom: 100px;
    padding: 10px 0px;
    width: 325px;
    height: 325px;
    border-radius: 15px;
    padding-top: 50px;
}

.info__card h3 {
    font-weight: 700;
    color: #031d36;
    line-height: 20px;
    margin-left: 20px;
}

.info__card h3 span {
    color: #fbad0a;
}

.info__card h2 {
    margin-top: 20px;
    margin-left: 20px;
}

.info__card button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 285px;
    margin-top: 20px;
    margin-left: 20px;
}

button i {
    margin-right: 5px;
    font-size: 19px;
}



.info__card h4 {
    font-size: 15px;
}

.info__card img {
    max-height: 60px;
    max-width: 60px;
    margin-left: 20px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.info__text {
    margin: 0px 170px;
}

.info__text h2 {
    font-size: 1.2rem;
    padding:  0px 0px 30px 0px;
    margin-top: -100px;
}

.info__text ul {
    color: #737373;
    font-family: var(--header-font-5);
    margin-bottom: 50px;
    list-style-type: none;
    display: grid;
    font-size: 1rem;
    gap: 10px;
    text-align: left;  
    max-width: 70%; 
}

.footer {
    background-color: #031d36;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white; 
}
  
.google-map {
    padding-bottom: 50%;
    position: relative;
}

.google-map iframe {
    height: 500px;
    width: 1300px;
    border-radius: 15px;
    margin-left: -85px;
    margin-top: -30px;
    position: absolute;
} 

.footer__content {
    display: grid;
    gap: 2rem 1rem;
    justify-content: space-between; 
    align-items: stretch; 
}

.footer-section {
    flex: 1; 
    margin: 10px;
    min-width: 0px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.footer__logo {
    transform: translateY(-30%);
}

.footer__contact li {
    font-weight: 600;
}

.footer-section ul {
    list-style-type: none; /* Verwijdert de opsommingstekens */
    padding: 0; /* Verwijdert de padding */
}

.footer-section ul li {
    margin: 10px 0; 
}

.footer-section ul li a {
    color: white; 
    text-decoration: none; /* Verwijdert de onderstreping van links */
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-media li {
    margin: 0 10px;
}

.footer__logo img {
    max-width: 150px;
}
  
.footer__content {
    margin-top: 0rem;
    display: grid;
    gap: 0rem;
    margin-left: -70px;
}
  
.footer__bar {
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--white);
    justify-content: center;
    text-align: center;
    background-color: #92b6d5;
    display: flex;
    gap: 5px;
}

.footer__bar h4 {
    font-weight: 400;
    justify-content: center;
    align-items: center;
}

.whatsapp-button {
    position: fixed;
    bottom: 13px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 2000;
}

.whatsapp-button img {
    width: 100%;
    border-radius: 50px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-text-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}


@media (width < 768px) {
    .nav__header__h2 {
        color: #fff;
        font-size: 1rem; 
        text-shadow: 1px 1px #041c40;
    }

    .nav__logo img {
        max-width: 100px;
        height: auto;
    }
    
    .nav__logo-dark {
        display: none;
    }

    .nav__links {
        align-items: left;
        margin-left: 50px;
    }

    .nav__menu__btn {
      position: fixed;
      top: center;
      right: 20px;
      font-size: 30px;
      background-color: transparent;
      border: none;
      color: #333;
      cursor: pointer;
      z-index: 10;
    }

    .menu-btn {
        position: fixed;
        top: 20px;
        left: 20px;
        font-size: 30px;
        background-color: transparent;
        border: none;
        color: #333;
        cursor: pointer;
        z-index: 10;
    }
    
    .side-menu {
      position: fixed;
      top: 0;
      left: -90%; 
      width: 80%; 
      height: 100%;
      background-color: #031d36;
      color: white;
      overflow-y: auto;
      transition: left 0.3s ease; /* Animatie voor het schuiven */
      z-index: 9; /* Zorg ervoor dat het menu boven de inhoud staat */
      padding: 20px;
      box-shadow: 4px 0 10px rgba(0, 0, 0, 0.5); /* Dit voegt een mooie shadow toe */
    }

    .side-menu .is-active {
        background-color: #0e518b; /* Blauwe achtergrond (kan aangepast worden) */
        color: white; /* Witte tekst */
        font-weight: bold; /* Vetgedrukte tekst */
        margin-left: -15px;
        padding: 15px 0px; /* Ruimte binnen de knop */
        padding-left: 15px;
        padding-right: 120px;
        border-radius: 8px; /* Afgeronde hoeken */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Subtiele schaduw */
        transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Animatie-effect */
    }
    
    .side-menu ul {
      list-style-type: none;
      padding: 0;
      margin-top: 250px;
    }
    
    .side-menu ul li {
      margin: 0px;
    }
    
    .side-menu ul li a {
      color: white;
      text-decoration: none;
      font-size: 18px;
    }
    
    .side-menu ul li a:hover {
      text-decoration: none;
      color: #92b6d5;
    }

    /* Het logo in de linkerbovenhoek van het menu */
    .side-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    } 
    .logo {
        max-width: 100px; /* Pas de grootte van je logo aan */
        z-index: 100;
    }

    .close-btn {
        font-size: 30px;
        background-color: transparent;
        color: white;
        border: none;
        cursor: pointer;
    }
    
    .content {
      padding: 20px;
      transition: margin-left 0.3s ease;
    }
    
    .side-menu.open {
      left: 0;
    }

    .content.shifted {
      margin-left: 50%;
    }

    .nav__menu__btn {
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
    }

    .header__content h1 {
        font-size: 1.6rem;
        line-height: 1.6rem;
        text-align: left;
        margin-top: 0px;
    }

    .header__content h2 {
       font-size: 1.1rem;
       font-weight: 400;
       text-align: left;
       padding: 0px;
    }
    
    .event__details h1 {
       margin-top: -20px;
    }

    .event__details li {
        text-align: left;
        padding-top: 20px;
        padding-right: 0px;
        font-family: var(--header-font-3);
        font-weight: 400;
        font-size: 0.9rem;
        color: var(--text-dark);
    }
    
    .event__details ul {
        list-style-type: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        text-align: left;
        margin-right: 0px;
        padding-bottom: 80px;
        border-bottom: 1px solid #a7a7a7;
    } 

    .info__container {
    
        margin-top: -150px;
    }

    .info__card {
        display: none;
    }

    .info__text {
        margin: 20px;
        margin-top: 70px;
    }

    .info__text ul {
        color: #5f5f5f;
        margin-bottom: 50px;
        padding-right: 0px;
        list-style-type: none;
        display: grid;
        font-size: 0.9rem;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        text-align: left; 
        max-width: 100%;  
    }

    .order__grid-1 {
        display: flex;
        justify-content: flex-end;
        gap: 3px;
        margin-top: -7px;
    }
    
    .order__grid-2 {
        display: flex;
        justify-content: flex-end;
        gap: 3px;
        margin-top: -50px;
    }

    .huren__header h4 {
        font-size: 1rem;
        margin-top: -100px;
        margin-left: 0px;
        font-weight: 600;
        font-family: var(--header-font-3);
        color: var(--color-3);
        text-align: center;
    }
    
    .huren__header h2 {
        font-size: 2rem;
        margin-top: 15px;
        margin-bottom: 30px;
        font-weight: 700;
        font-family: var(--header-font-3);
        color: var(--color-2);
        text-align: center;
    }

    .huren__stappen {
        display: grid;
        align-items: center;
        justify-content: center;
        gap: 0rem 1rem;
    }
    
    .huren {
        margin-top: 200px;
        margin-bottom: 200px;
    }

    .review__header h4 {
        font-size: 1rem;
        margin-top: -100px;
        font-weight: 600;
        font-family: var(--header-font-3);
        color: var(--color-3);
        text-align: center;
    }

    .google-map {
        display: flex;
        justify-content: center;
        z-index: 20;
        padding-bottom: 85%;
        align-items: center;
    }
    
    .google-map iframe {
        justify-content: center;
        align-items: center;
        height: 300px;
        width: 330px;
        border-radius: 15px;
        margin-left: 0px;
        margin-top: 220px;
        position: absolute;
    }

    .footer__content {
        display: grid;
        gap: 1rem 1rem;
        justify-content: center;
        align-items: center; /* Verticaal centreren van de elementen */
    }

    .footer__contact {
        margin-top: -20px;
    }
    
    .footer__logo img {
        max-width: 200px;
        justify-content: center;
        align-items: center;
        margin-left: 60px;
    }

    /* Secties in de footer */
    .footer-section {
        flex: 1; /* Zorgt ervoor dat elke sectie dezelfde breedte heeft */
        margin: 10px; /* Ruimte tussen de secties */
        margin-left: 10px;
    }

    .footer__website {
        margin-top: -100px;
    }

    .footer__content {
        margin-bottom: -30px;
    }

    .footer__bar {
        font-size: 0.7rem;
        align-items: center;
        justify-content: center;
        margin-left: 0px;
    }
    
    .footer__bar h4 {
        font-weight: 500;
        justify-content: center;
    }

    .whatsapp-button {
        position: fixed;
        bottom: 10px;
        right: 10px;
    }
}

@media (width > 768px) {
    nav{
        position: sticky;
        padding: 2rem 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background-color: var(--primary-color);
    }

    .nav__header {
        padding: 0;
        background-color: var(--primary-color);
    }

    .nav__logo img {
        max-width: 125px;
        max-height: 125px;
        position: relative;
        left: 50%;
        z-index: 100;
    }

    .nav__logo-dark {
        display: flex;
    }

    .nav__logo-white {
        display: none;
    }

    .nav__menu__btn {
        display: none;
    }

    .nav__links {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -15px;
        flex-direction: row;
        background-color: transparent;
        z-index: 1;
    }

    .nav__links .is-active {
        color: var(--secondary-color);
    }

    .side-menu-header {
        display: none;
    }

    .nav__links a {
        color: var(--white);
    }

    .nav__links a:hover {
        color: var(--secondary-color);
    }

    .header__container {
        display: block; /* Gebruik standaard flow */
    }

    .header__content h2 {
        margin-inline-start: unset;
    }

    .header__content h1 {
        text-align: left;
    }

    .footer__content {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer__links li {
        justify-content: flex-end;
    }

    .footer__socials {
        justify-content: flex-end;
    }
}