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

body {
    font-family: Arial, sans-serif;
}

.features {
    padding: 80px;
    background: #f5f5f5;
}




:root {
    --navy: #0b1d3a;
    --yellow: #f4c430;
    --light: #f5f5f5;
}



/* Scroll progress bar bovenaan */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 9999;
}

#scroll-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--yellow);
    transition: width 0.1s ease-out;
}





/* ================= HERO ================= */

.hero {
    position: relative;
    background: url("img/Transfer/1.jpeg") no-repeat center center;
    background-size: cover;
    height: 95vh;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* gradient van donker boven naar licht onder */
    background: linear-gradient(to bottom,
            rgba(11, 29, 58, 0.80) 0%,
            rgba(11, 29, 58, 0.6) 50%,
            rgba(9, 24, 47, 0.408) 100%);
    z-index: 2;
}

/* Content boven overlay */
.navbar,
.hero-text,
.hero-buttons {
    position: relative;
    z-index: 3;
}

/* side foto */
.hero-side-image {
    position: absolute;
    right: 7%;
    bottom: -50px;
    z-index: 4;
}



/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-wave path {
    fill: var(--light);
}






/* ================= nav ================= */

.navbar {
    width: 85%;
    margin: 5px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 5vw;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3vw;

}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    transition: 0.3s ease;
    font-size: larger;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: var(--yellow);
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ================= HERO content full ================= */

.hero-content {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ================= HERO Tekst ================= */

.hero-text {
    margin-top: 5vw;
    max-width: 30vw;
    font-weight: 900;
    margin: 4vw 7vw;
}

/* Bovenste en onderste regel geel */
.top-line,
.bottom-line {
    font-size: 22px;
    font-weight: 900;
    color: var(--yellow);
}

/* Flip block groot maken */
.flip-block {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 1vw 0;
}

/* Statische tekst wit */
.static-text {
    color: white;
    font-weight: 900;
}

/* Flip container woorden */
.flip {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    display: inline-block;
}

.flip span {
    display: block;
    padding: 5px 18px;
    color: white;
    font-weight: 900;
    border-radius: 6px;
    animation: flipWords 7s infinite;
}

.flip span:nth-child(1) {
    background: #e63946;
    animation-delay: 0s;
}

.flip span:nth-child(2) {
    background: #f4c430;
    animation-delay: 3s;
}

.flip span:nth-child(3) {
    background: #42c58a;
    animation-delay: 6s;
}

/* Flip animatie */
@keyframes flipWords {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(0);
    }

    33% {
        transform: translateY(-100%);
    }

    53% {
        transform: translateY(-100%);
    }

    66% {
        transform: translateY(-200%);
    }

    86% {
        transform: translateY(-200%);
    }

    100% {
        transform: translateY(0);
    }
}


/* ================= BUTTONS ================= */

.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 2vw 1px;
}

button {
    padding: 17px 33px;
    border-radius: 30px;
    font-weight: bold;
    font-size: medium;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

/* button 1*/

.btn-outline {


    background: var(--yellow);
    color: var(--navy);
}

.btn-outline:hover {

    background: #ffd84d;
    transform: translateY(-3px);
}

/* button2*/

.btn-filled {
    background: transparent;
    border: 2px solid white;
    background: white;
    color: var(--navy);

}

.btn-filled:hover {
    color: white;
    background-color: rgba(39, 39, 39, 0.5);
}

/* ================= HERO zij foto ================= */


.hero-side-image {
    position: absolute;
    right: 9%;
    bottom: -15px;
    z-index: 10;
    width: auto;
    overflow: visible;
}

.hero-side-image img {
    width: auto;
    height: 20vw;
    display: block;
    border-radius: 20px;
    opacity: 0;
    transform: translateX(200px);
    transition: transform 1s ease-out, opacity 1s ease-out;
}






/* ================= FEATURES ================= */

.features {
    padding: 6vw 11vw;
    background: var(--light);
    text-align: center;
    position: relative;
}

.feature {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(.17, .67, .83, .67);
}

.feature.show {
    opacity: 1;
    transform: translateY(0);
}



.features h2 {
    font-size: 50px;
    margin-bottom: 60px;
    color: var(--navy);
}

.features-row {
    display: flex;
    justify-content: space-between;
}

.feature img {
    height: 8vw;
    margin-bottom: 2vw;
}

.feature p {
    color: var(--navy);
}

/* ================= MENU ================= */

.menu {
    padding: 80px;
    background: white;
    text-align: center;
}

.menu h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--navy);
}







/* ================= HOME menu best verkocht populair ================= */

.home-menu-preview {
    padding: 100px 80px;
    background: #f5f5f5;
    text-align: center;
}

.home-menu-preview h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--navy);
}


.home-menu-preview .menu-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}


.home-menu-preview .menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


.home-menu-preview .menu-item:hover img {
    transform: scale(1.08);
}








/* ================= MENU onze tafel vol smaken oude events ================= */


.menu-grid {
    column-count: 4;
    column-gap: 20px;
    padding: 0;
    margin: 2vw 5vw;
}

.menu-grid a {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.menu-grid a img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.menu-grid a:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}


.menu-grid a:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}





/* stappen hoe het werkt */
.zon-how-it-works {
    padding: 80px 20px;
    background-color: #fffaf6;
    text-align: center;
}

.zon-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--navy);
}

.zon-subtitle {
    font-size: 18px;
    color: var(--yellow);
    margin-bottom: 50px;
}

.zon-container {
    max-width: 1200px;
    margin: 0 auto;
}

.zon-steps {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stappen kaarten */
.zon-step {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;

    /* startpositie */
    transform: translateY(0);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.zon-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


.zon-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.zon-step-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.zon-step-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}








/* ================= BOTTOM footer ================= */


.site-footer {
  background-color: #17206D;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1rem;
}

.site-footer a {
  color: #FFD700; /* goudgeel voor links */
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 2vw;
  height: 2vw;
}

.footer-rights {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #ccc;
}





















.about-split {
    display: flex;
    width: 100%;
    height: 100vh;
    background: white;
}

.about-left,
.about-right {
    width: 50%;
    height: 100%;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--navy);
}

.about-right h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--yellow);
}

.about-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-right p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.5;
}




/* ================= FAQ ================= */

.faq {
    background: white;
    padding: 1vw 5vw;
    max-width: 900px;
    margin: 3vw auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
    color: var(--navy);
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #555;
}

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


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #1c9e21;
    background: linear-gradient(3deg, rgba(28, 158, 33, 1) 1%, rgba(74, 220, 92, 1) 36%, rgba(96, 252, 124, 1) 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: float 2s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}






@media (max-width: 768px) {




    
    /* NAV */
    .navbar {
        width: 90%;
        margin-top: 3px;
    }

    .logo img {
        height: 75px;
    }

    .nav-links a {
        font-size: 18px;
    }

    /* HERO */
    .hero {
        height: auto;
        padding-bottom: 80px;
    }

    .hero-text {
        line-height: 1.5;
        max-width: 90%;
        margin: 20vw auto;
        text-align: center;
    }

    .flip {
        position: relative;
        height: 15vw;
        overflow: hidden;
        display: inline-block;
        vertical-align: middle;
    }

    .flip span {
        display: block;
        padding: 15px 20px;
        color: white;
        font-weight: 900;
        border-radius: 6px;
        animation: flipWords 9s infinite;
        white-space: nowrap;
        line-height: 1.2;
    }






    .hero-buttons {
        flex-direction: row ;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-buttons button {
        padding: 14px 22px;
        font-size: 14px;
    }


/* Side image netjes onder buttons */
/* Hero afbeelding gecentreerd */
.hero-side-image {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 40px 0 0 0;
    text-align: center;
}

.hero-side-image img {
    height: 240px;
    width: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    opacity:1;
}

/* Kernwaarden */
.features {
    padding: 60px 30px;
}

.features-row {
    flex-direction: row ;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;
}

.feature {
    width: 23%;
}

.feature img {
    height: 13vw;
}

.features h2 {
    font-size: 30px;
    margin-bottom: 60px;
    color: var(--navy);
}

.feature p {
    font-size: 15px;
    line-height: 1.3;
}

/* About section stacked */
.about-split {
    flex-direction: column-reverse;
    height: auto;

}

.about-left,
.about-right {
    width: 100%;
    height: auto;
}

.about-right {
    padding: 10vw 13vw;
    text-align: left;
}

/* Menu preview 2 boven 2 */
.home-menu-preview {
    padding: 10vw 5vw;
}

.home-menu-preview .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.menu {
    padding: 5px;
    background: white;
    text-align: center;
}
.menu-grid {
    column-count: 2;
    column-gap: 20px;
    padding: 0;
    margin: 2vw 5vw;
}

.faq {
    margin-bottom: 5vw;
}

  .footer-contact p {
    flex-direction: column;
    gap: 0.3rem;
  }

  .footer-icon {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    padding: 1.5rem 1rem;
    font-size: 1rem;
  }

  .footer-rights {
    font-size: 1rem;
  }
}