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

:root {
    --rood: #ED1C23;
    --lichtgrijs: #F5F5F5;
    --grijs: #ACACAC;
    --donkergrijs: #5E6973;
    --offBlack: #221E1F;
    --offWhite: #F5F5F5;
    --white: #f3efef;
}

body {
    font-family: 'Inter', 'Helvetica', sans-serif;
    color: var(--offBlack);
}

h1 {
    font-family: Helvetica, sans-serif;
    font-size: 40px;
    font-weight: bold;
}

h2 {
    font-family: Helvetica, sans-serif;
    font-size: 28px;
    font-weight: bold;
}

p {
    color: var(--offBlack);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* NAV */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: rgba(245, 245, 245, 0.8);
}

nav img {
    max-width: 200px;
}

.logo {
    display: flex;
    align-items: center;
}

.rightSide {
    display: flex;
    align-items: center;
    gap: 20px;
}

body a {
    text-decoration: none;
    color: var(--offBlack);
}

nav a:hover {
    color: var(--rood);
    text-decoration: underline;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-switch img {
    width: 10px;
    height: 10px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--offBlack);
    border-radius: 2px;
    display: block;
}

/* HERO */
.hero {
    height: 100vh;
    background-image: url("../images/fotoD.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero p {
    color: var(--white);
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 80px;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    border-radius: 6px;
    font-weight: 600;
}

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

.btn-secondary {
    background-color: var(--offBlack);
    color: var(--white);
    border: 2px solid var(--offBlack);
}

.hero-note {
    margin-top: 8px;
    color: var(--white);
    font-size: 14px;
}

/* EXTRA UITLEG */
.extraUitleg {
    background-color: var(--lichtgrijs);
    padding: 60px 40px;
    text-align: center;
}

/* OVER ONS */
.overOns {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-inline: 20px;
}

.cards {
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    justify-content: center;
    justify-items: center;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--lichtgrijs);
    padding: 40px 16px;
    border-radius: 12px;
    text-align: center;
    max-width: 350px;
    margin: 0;
}

.card img {
    max-width: 80px;
    margin-bottom: 30px;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 30px 16px;
    }
}

/* GALLERY */
.gallery {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.gallery-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 20px;
}

.gallery-header h2 {
    grid-column: 2;
    text-align: center;
}

.gallery-header a {
    grid-column: 3;
    justify-self: end;
}

.slider {
    position: relative;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 30px;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: #1f1b1d;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #bdbdbd;
    cursor: pointer;
}

.dot.active {
    background: red;
}

/* TESTIMONIALS */
.testimony {
    padding: 80px 20px;
}

.testimony h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonialList {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.testimonialCard {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 760px;
    position: relative;
}

.testimonialCard.right {
    margin-left: auto;
    justify-content: flex-end;
}

.testimonialContent {
    background-color: var(--lichtgrijs);
    border-radius: 28px;
    padding: 28px 34px 28px 56px;
    flex: 1;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonialCard.right .testimonialContent {
    padding: 28px 56px 28px 34px;
    text-align: right;
}

.testimonial-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.testimonialCard .testimonial-avatar {
    margin-right: -28px;
}

.testimonialCard.right .testimonial-avatar {
    margin-right: 0;
    margin-left: -28px;
}

.testimonialContent h3 {
    font-family: Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.testimonialCard.right .stars {
    justify-content: flex-end;
}

.stars img {
    width: 16px;
    height: 16px;
}

.testimonialContent p {
    font-size: 16px;
    line-height: 1.35;
    color: var(--offBlack);
}

/* CONTACT SECTION */
.contact {
    background-color: var(--lichtgrijs);
    padding: 100px 20px;
    min-height: 100vh;
}

.contactInner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
}

.contactLeft {
    max-width: 280px;
}

.contactEyebrow {
    font-size: 14px;
}

.contactLeft h2 {
    margin-bottom: 20px;
}

.contactIntro {
    margin-bottom: 30px;
    line-height: 1.5;
}

.contactManier-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contactManier {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.contactManier img {
    width: 20px;
    flex-shrink: 0;
}

.small {
    font-size: 12px;
    color: var(--donkergrijs);
}

.contactFormWrap {
    background-color: white;
    border-radius: 24px;
    padding: 40px;
}

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.formTogether {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.formTogether label {
    font-size: 14px;
    font-weight: 500;
    color: var(--offBlack);
}

.formTogether input,
.formTogether textarea {
    background-color: var(--lichtgrijs);
    border: none;
    outline: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.formTogether textarea {
    min-height: 160px;
    resize: vertical;
}

.contactBtn {
    margin-top: 10px;
    align-self: flex-start;
    background-color: var(--offBlack);
    color: var(--white);
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* FOOTER */
footer {
    padding: 40px 20px;
}

.footerInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footerLeft img {
    max-width: 180px;
    margin-bottom: 10px;
}

.footerLeft p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footerLeft .bold {
    font-weight: bold;
    margin-top: 10px;
    color: var(--rood);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.socials img {
    width: 18px;
}

.footerRight {
    text-align: right;
}

.footerRight p {
    font-size: 14px;
    margin-bottom: 6px;
}

.footerRight .highlight {
    color: var(--rood);
    font-weight: 600;
    margin-bottom: 10px;
}

.lang-dropdown {
    position: relative;
}

.lang-current {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font: inherit;
    color: var(--offBlack);
}

.lang-current img {
    width: 10px;
    height: 10px;
}

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 70px;
    background-color: var(--lichtgrijs);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    z-index: 2000;
}

.lang-menu.active {
    display: flex;
    flex-direction: column;
}

.lang-option {
    padding: 8px 14px;
    text-decoration: none;
    color: var(--offBlack);
    display: block;
}

.lang-option:hover {
    color: var(--rood);
}

@media (max-width: 768px) {
    .lang-dropdown {
        width: 100%;
    }

    .lang-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 8px 0 0 0;
    }

    .lang-option {
        padding-left: 0;
    }
}

/* MOBILE NAV */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 3000;
    }

    nav {
        padding: 16px 20px;
    }

    nav img {
        max-width: 150px;
    }

    .rightSide {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(230, 230, 230, 0.96);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px 28px;
        gap: 20px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        border-top: 1px solid rgba(0,0,0,0.04);
    }

    .rightSide.active {
        display: flex;
    }

    .rightSide > a,
    .lang-current {
        font-size: 18px;
        font-weight: 500;
    }
}

/* GALLERY MOBILE */
@media (max-width: 768px) {
    .gallery {
        margin: 40px auto;
        padding: 0 16px;
    }

    .gallery-header {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
        text-align: center;
    }

    .gallery-header h2 {
        position: static;
        transform: none;
        left: auto;
        font-size: 32px;
        line-height: 1.1;
    }

    .gallery-header a {
        font-size: 16px;
    }

    .slider-track {
        height: 420px;
        border-radius: 24px;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .slider-btn.prev {
        left: -8px;
    }

    .slider-btn.next {
        right: -8px;
    }

    .slider-dots {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 0 12px;
    }

    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-header a {
        font-size: 15px;
    }

    .slider-track {
        height: 320px;
        border-radius: 20px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .slider-btn.prev {
        left: 8px;
    }

    .slider-btn.next {
        right: 8px;
    }

    .dot {
        width: 9px;
        height: 9px;
    }
}

/* CONTACT / TESTIMONIAL / FOOTER MOBILE */
@media (max-width: 900px) {
    .contactInner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contactLeft {
        max-width: 100%;
    }

    .contactFormWrap {
        padding: 25px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonialCard,
    .testimonialCard.right {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        max-width: 100%;
        margin-left: 0;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin: 0 !important;
    }

    .testimonialContent,
    .testimonialCard.right .testimonialContent {
        padding: 18px;
        border-radius: 20px;
        text-align: left;
        width: 100%;
    }

    .testimonialContent h3 {
        font-size: 18px;
    }

    .testimonialContent p {
        font-size: 14px;
    }

    .stars img {
        width: 14px;
        height: 14px;
    }

    .testimonialCard.right {
        justify-content: flex-start;
    }

    .testimonialCard.right .stars {
        justify-content: flex-start;
    }

    .contactManier-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .footerInner {
        flex-direction: column;
        gap: 30px;
    }

    .footerRight {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .contactManier-wrapper {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding-inline: 16px;
    }

    h1 {
        font-size: 32px;
    }

    .allGallery-title{
    font-size: 32px;
    color: var(--offBlack);
    }
}

.allGalleryPage {
    padding-top: 140px;
}

.allGalleryPage h1 {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.allGalery {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.allGalery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 900px) {
    .allGalery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .allGalleryPage {
        padding-top: 110px;
    }

    .allGalery {
        grid-template-columns: 1fr;
    }

    .allGalleryPage h1 {
        font-size: 32px;
    }
}

/* FADE IN ON SCROLL */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}