@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');

: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;
}

* {
    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.open {
    transform: translateY(0);
}

.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 {
    position: relative;
    visibility: hidden;
}

.header__content h1 {
    margin-inline: auto;
    margin-top: 100px;
    font-size: 3rem;
    font-weight: 400;
    font-family: var(--header-font-1);
    text-align: center;
    padding-left: 350px;
    color: #031d36;
}

.header__content h1 span {
    color: #92b6d5;
    text-align: center;
}

.header__content h3 {
    margin-inline: auto;
    padding: 5px;
    font-size: 1rem;
    text-align: left;
    font-weight: 600;
    font-family: var(--header-font-3, Arial, sans-serif);
    padding-left: 510px;
    padding-right: 110px;
    color: #7b7b7b;
}

.faq__container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 2rem;
    font-family: Arial, sans-serif;
    position: relative;
    margin-top: -60px;
}

.faq-row {
    display: grid;
    text-align: center;
    gap: 1rem;
}

.faq-item {
    flex: 1;
    border: 1px solid #ECF0F4;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    background-color: #ECF0F4;
    cursor: pointer;
    padding: 1rem;
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #ffffff;
    font-size: 0.9rem;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 540;
    color: #031d36;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
    text-align: left;
    margin-top: -10px;
    margin-bottom: 5px;
}

.faq-item.active .faq-question {
    background-color: #ffffff;
    color: #031d36;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.vragen__container {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
    margin-top: 0px;
    margin-bottom: 400px;
    padding: 100px 0px;
}

.vragen__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 950px;
    height: 300px;
    z-index: 2;
    background-color: #9bbedd;
    padding: 40px 50px;
    border-radius: 15px;
    margin: 20px;
    margin-top: 240px;
}

.vragen__content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--header-font-3, Arial, sans-serif);
    color: var( #fff);
    text-align: left;
    line-height: 5rem;
}

.vragen__content h2 {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    padding-right: 400px;
    text-align: left;
}

.half-outside-image {
    position: absolute;
    top: 40%;
    right: 20%;
    transform: translateY(-50%);
    width: 370px;
    height: 250px;
    z-index: 300;
    border-radius: 15px;
    margin-top: 170px;
}

.vragen-image {
    position: relative;
    z-index: 3;
}

.half-image {
    position: absolute;
    height: 730px;
    width: 600px;
    transform: translateX(-120%) translateY(-30%);
    z-index: -2;
    border-radius: 50px;
}

.sun {
    position: absolute;
    top: 22%;
    right: 14%;
    transform: translateY(-50%); 
    width: 180px;
    height: auto;
    z-index: 2; 
    border-radius: 15px;
    margin-top: 100px;
}

.vragen__content h5 {
    max-width: 400px;
    margin-inline: auto;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: var(--header-font-2, Arial, sans-serif);
    text-align: center;
}

.vragenbtn {
    background-color: #0d3860;
    margin-top: 50px;
    margin-right: 10px;
    margin-left: 0px;
    font-size: 14px;
    font-family: var(--header-font-3);
    color: #ffffff; 
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 35px;
    line-height: 1;
    font-weight: bold;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.vragenbtn1 {
    background-color: #0d3860;
    margin-top: -59.5px;
    margin-right: 10px;
    margin-left: 230px;
    font-size: 14px;
    font-family: var(--header-font-3);
    color: #ffffff; 
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 35px;
    line-height: 1;
    font-weight: bold;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.vragenbtn h3 {
    text-decoration: none;
    color: white;
}

.vragenbtn h3,
.vragenbtn1 h3 {
    text-decoration: none;
    color: white;
}

.vragenbtn:hover,
.vragenbtn1:hover {
    background-color: #0e518b;
}

.vragen__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.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;
    padding: 0;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.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;
      z-index: 9;
      padding: 20px;
      box-shadow: 4px 0 10px rgba(0, 0, 0, 0.5);
    }

    .side-menu .is-active {
        background-color: #0e518b;
        color: white;
        font-weight: bold;
        margin-left: -15px;
        padding: 15px 0px;
        padding-left: 15px;
        padding-right: 120px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    .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;
    }

    .side-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    } 
    .logo {
        max-width: 100px;
        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 {
        margin-inline: auto;
        margin-top: 100px;
        font-size: 1.5rem;
        font-weight: 400;
        font-family: var(--header-font-1);
        padding: 0;
        white-space: nowrap;
        justify-content: center;
        align-items: center;
    }

    .header__content h3 {
        margin-inline: auto;
        font-size: 0.8rem;
        margin-top: 5px;
        font-weight: 500;
        font-family: var(--header-font-3, Arial, sans-serif);
        text-align: center;
        padding: 0;
        color: #7b7b7b;
        justify-content: center;
        align-items: center;
    }

    .half-image {
        display: none;
    }

    .faq__container {
        max-width: 80%;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 0.2rem;
        font-family: Arial, sans-serif;
        position: relative;
        margin-top: -60px;
    }

    .faq-row {
        display: grid;
        align-items: center;
        justify-content: center;
        padding-left: 0px;
        padding-right: 0px;
        margin-top: 20px;
        gap: 1rem 0rem;
    }

    .faq-item {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .vragen__container {
        width: 100%;
        height: auto;
        margin: 0;
        position: relative;
        margin-top: 100px;
        margin-bottom: 400px;
        padding: 200px 0px;
    }

    .vragen__content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 330px;
        height: 610px;
        padding: 40px 20px;
        margin: 0px;
        margin-top: 150px;
    }

    .vragen__content h1 {
        font-size: 2.3rem;
        font-weight: 800;
        font-family: var(--header-font-3, Arial, sans-serif);
        line-height: 2.5rem;
    }

    .vragen__content h2 {
        font-size: 0.9rem;
        color: #ffffff;
        text-align: left;
        padding-right: 10px;
        margin-top: 20px;
    }

    .vragen__buttons {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-top: -20px;
    }

    .vragenbtn {
        width: 200px;
        font-size: 12px;
    }

    .vragenbtn1 {
        width: 270px;
        margin-top: 0px;
        font-size: 12px;
        margin-left: 0px;
    }

    .half-outside-image {
        display: none;
    }

    .vragen-container {
        display: grid;
        place-items: center; 
    }    

    .vragen-image {
        position: absolute;
        margin-top: 20px;
        align-items: center;
        z-index: 100;
        width: 290px;
        height: auto;
        border-radius: 20px;
    }

    .sun {
        position: relative;
        top: 80%;
        right: 0%;
        transform: translateY(-20%);
        width: 100px;
        height: auto;
        z-index: 2;
        border-radius: 15px;
        display: none;
    }

    .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;
    }
    
    .footer__contact {
        margin-top: -20px;
    }

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

    .footer-section {
        flex: 1;
        margin: 10px;
        margin-left: 10px;
    }

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

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

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

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

@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }
}

@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;
    }

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

    .faq-row {
        padding-left: 490px;
        padding-right: 50px;
    }

    .vragen-image {
        display: none;
    }

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

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

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