@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@property --distX {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
@property --distY {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}
@property --duration {
  syntax: "<time>";
  inherits: false;
  initial-value: 10s;
}

@keyframes rotate {
  from { --angle: 0deg }
  to { --angle: 360deg }
}

@keyframes dist {
  0%, 100% {
    --distX: 0;
    --distY: -10;
  }
  25% {
    --distX: 10;
    --distY: 0;
  }
  50% {
    --distX: 0;
    --distY: 10;
  }
  75% {
    --distX: -10;
    --distY: 0;
  }
}

/* FAQ Accordion Styles */
.faq-accordion-wrapper {
    width: 75%;
    margin: 0 auto 2.5em auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-accordion {
    width: 100%;
}

.container {
    background-color: white;
    color: black;
    border-radius: 8px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
    margin: 20px 0;
}

/* Category level */
.container > .question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.container > .question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.container > .question.active::after {
    transform: rotate(45deg);
}

.container > .answercont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Question/Answer level within category */
.faq-item {
    border-top: 1px solid #eee;
}

.faq-item:first-child {
    border-top: none;
}

.faq-question {
    font-size: 1rem;
    font-weight: 500;
    padding: 15px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    text-decoration: underline;
    font-style: italic;
}

.faq-question::after {
    content: "\002B";
    font-size: 1.5rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
    font-weight: 300;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    line-height: 1.6;
    font-size: 0.95em;
    color: #555;
}

.faq-question.active + .faq-answer {
    padding: 15px 20px 15px 20px;
}
@media screen and (max-width: 790px){
    html {
        font-size: 14px;
    }
    .faq-accordion-wrapper {
        width: 80%;
    }
    .menu-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2em;
        padding: 0 0.5em;
    }
    .order-menu-btn {
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        font-size: 1.15em;
        padding: 1.2em 0.5em;
        border-radius: 12px;
        margin-bottom: 0.5em;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    .menu-actions {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    .print-menu-btn {
        display: none !important;
    }
}
/* FAQ Accordion JS */
/* Home sectie achtergrondafbeelding */
#home {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    background: url('asstes/home_bg.jpg') no-repeat center center scroll;
    background-size: cover;
    min-height: 100vh;
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
    margin-top: 0;
    padding: 0;
    padding-top: 60px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    /* Zorg dat de inhoud altijd zichtbaar blijft */
    overflow: hidden;
}

.home-logo {
    max-width: 300px;
    width: 80vw;
    height: auto;
    margin-bottom: 0;
    box-shadow: 
        calc(var(--distX) * -1px) calc(var(--distY) * -1px) 20px #8b6f4722, 
        calc(var(--distX) * 1px) calc(var(--distY) * 1px) 20px #000000;
    animation: dist 10s infinite linear;
}

.home-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    margin: 0.5em 0 1.5em 0;
    color: #2b2b2b;
}

.home-zoom {
    transform: scale(1.05);
}
body {
    .order-btn {
        display: inline-block;
        margin-top: 2em;
        padding: 1em 2.5em;
        background: #2b2b2b;
        color: #fff;
        font-size: 1.1em;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        font-weight: 500;
        border: none;
        border-radius: 2em;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        transition: background 0.2s, color 0.2s, transform 0.2s;
        cursor: pointer;
    }
    .order-btn:hover, .order-btn:focus {
        background: #1a1a1a;
        color: #fff;
        transform: scale(1.04);
    }
    
    .menu-actions {
        display: flex;
        gap: 1.5em;
        justify-content: center;
        margin-top: 3em;
        flex-wrap: wrap;
    }
    
    .menu-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6em;
        padding: 0.9em 2em;
        background: #2b2b2b;
        color: #fff;
        font-size: 1em;
        font-family: 'Helvetica Neue', Arial, sans-serif;
        font-weight: 500;
        border: 2px solid #2b2b2b;
        border-radius: 2em;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .menu-btn .icon {
        font-size: 1.3em;
        line-height: 1;
        filter: grayscale(0);
    }
    
    .order-menu-btn .icon {
        color: #f4c542;
    }
    
    .print-menu-btn .icon {
        color: #8B6F47;
    }
    
    .menu-btn:hover {
        background: #1a1a1a;
        border-color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .print-menu-btn {
        background: transparent;
        color: #2b2b2b;
    }
    
    .print-menu-btn:hover {
        background: #2b2b2b;
        color: #fff;
    }
    
    background: #f5f5f5;
    color: #2b2b2b;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
    font-weight: 300;
}
html {
    box-sizing: border-box;
    overflow-x: hidden;
}
nav {
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1.2em 0;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 2vw;
    padding-right: 2vw;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 25px;
}

.logo {
    height: 100%;
    width: auto;
    max-height: 25px;
}

.mobile-menu-logo {
    display: none !important;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0.5em 0;
    justify-content: flex-end;
    box-sizing: border-box;
    background: transparent;
}
nav ul li {
    margin: 0 1em;
}

nav ul li:last-child {
    margin-left: auto;
}

.lang-selector {
    margin-left: auto !important;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5em;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
    margin-top: 0;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2b2b2b;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* Taalkeuze styling */
 .language-select {
     padding: 0.2em 1em 0.2em 0.5em;
     border-radius: 5px;
     border: 1px solid rgba(0,0,0,0.15);
     font-size: 0.8em;
     background: transparent url('asstes/language.png') no-repeat right 0.5em center;
     background-size: 0.9em 0.9em;
     color: #2b2b2b;
     font-family: 'Helvetica Neue', Arial, sans-serif;
     font-weight: 400;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     cursor: pointer;
     transition: all 0.3s ease;
     min-width: 0;
     width: auto;
     max-width: 70px;
     box-sizing: border-box;
     margin-top: -2px;
 }
 .language-select option {
     padding: 0.2em 0.5em;
     min-width: 0;
     width: auto;
     font-size: 1em;
 }
 .language-select:hover {
     border-color: #2b2b2b;
 }
@media (max-width: 900px) {
  .language-select {
     font-size: 1em;
     max-width: 70px;
     padding: 0.2em 0.7em 0.2em 0.5em;
  }
}
        nav ul li a {
                color: #2b2b2b;
                text-decoration: none;
                font-weight: 400;
                font-size: 0.9em;
                padding: 0.5em 0.8em;
                transition: all 0.3s ease;
                text-transform: uppercase;
                letter-spacing: 0.1em;
                position: relative;
        }
        @media (max-width: 900px) {
            nav ul li a {
                font-size: 1.13em;
                padding: 0.7em 1.1em;
            }
        }
nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #2b2b2b;
    transition: width 0.3s ease;
}
nav ul li a:hover {
    color: #1a1a1a;
}
nav ul li a:hover::after {
    width: 100%;
}
main {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}
    section {
        margin-bottom: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4em 2em;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

/* Accordion Menu */
.simple-accordion {
    display: flex;
    width: 100vw;
    margin: 0 calc(-50vw + 50%);
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.acc-slide {
    flex: 1;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: flex 0.4s ease, filter 0.4s ease;
    filter: grayscale(1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.acc-slide:hover {
    filter: grayscale(0);
}

.acc-slide.active {
    flex: 3;
    filter: grayscale(0);
}

.acc-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
    box-sizing: border-box;
    gap: 0;
}

.acc-label {
    color: #ffffff;
    font-size: 1.5em;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 4px 24px rgba(0,0,0,0.5);
    white-space: nowrap;
    transition: all 0.4s ease;
    position: relative;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: rgba(0,0,0,0.3);
    padding: 0.3em 0.8em;
    border-radius: 2px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.acc-label::before,
.acc-slide.active .acc-label {
    font-size: 2em;
    transform: translateY(0);
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0,0,0,0.8), 0 4px 32px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.4);
    margin-bottom: -1em;
    z-index: 10;
    position: relative;
}acc-slide.active .acc-label {
    font-size: 2.5em;
    transform: translateY(-150px);
    color: #1a1a1a;
    text-shadow: none;
}

.acc-menu-items {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    color: #2b2b2b;
    text-align: left;
    width: 100%;
    max-width: 500px;
    background: rgba(255,255,255,0.95);
    padding: 2.5em;
    border: none;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
}

.acc-slide.active .acc-menu-items {
    display: block;
}

.acc-slide.active .acc-menu-items {
    opacity: 1;
    transform: translateY(0);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.2em 0;
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 1em;
    text-shadow: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    font-weight: 400;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item::before {
    display: none;
}

.menu-item span {
    font-weight: 500;
    color: #2b2b2b;
    font-size: 1em;
    margin-left: 1em;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-shadow: none;
}

.acc-starters {
    background-image: url('asstes/starters.jpg');
}

.acc-main {
    background-image: url('asstes/main.jpg');
}

.acc-desserts {
    background-image: url('asstes/Screenshot 2025-12-10 153357.png');
}

.acc-drinks {
    background-image: url('asstes/drinks.jpg');
}

@media (max-width: 900px) {
    .simple-accordion {
        flex-direction: column;
        height: 600px;
    }
    
    .acc-slide {
        flex: 1;
    }
    
    .acc-slide.active {
        flex: 3;
    }
    
    .acc-label {
        font-size: 1.2em;
    }
    
    .acc-slide.active .acc-label {
        font-size: 1.6em;
        transform: translateY(-80px);
    }
    
    .acc-menu-items {
        max-width: 90%;
        padding: 1.5em;
    }
    
    .menu-item {
        font-size: 0.95em;
        padding: 0.8em 0;
    }
    
    .menu-item span {
        font-size: 1.1em;
    }
}
/* Contact section layout */
.contact-flex {
    display: flex;
    gap: 2em;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 2em auto;
    max-width: 100%;
    width: fit-content;
}
.contact-info {
    flex: 1 1 360px;
    min-width: 360px;
    max-width: 360px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 1.5em 1.2em 1.2em 1.2em;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}
.contact-address-block h3 {
    margin: 0.2em 0 0.1em 0;
    font-size: 1.1em;
    color: #2b2b2b;
    font-weight: 600;
}
.contact-address-block p {
    margin: 0 0 0.7em 0;
    font-size: 1em;
    color: #444;
}
.contact-address-block a {
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 500;
}
.contact-address-block a:hover {
    text-decoration: underline;
}
.contact-map {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
form#contactForm {
    flex: 1 1 360px;
    max-width: 360px;
    min-width: 360px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2em 1.5em 1.5em 1.5em;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}
@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
        width: 100%;
        padding: 0 1em;
        box-sizing: border-box;
    }
    .contact-info, form#contactForm {
        max-width: 100%;
        min-width: 0;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    .contact-info {
        order: -1;
    }
}
input, textarea {
    padding: 1em;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0;
    font-size: 0.95em;
    background: #fff;
    color: #2b2b2b;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s ease;
}
/* Footer */
footer {
    text-align: center;
    padding: 1em 1em 0.5em 1em;
    margin-top: 0;
    font-size: 0.9em;
    color: #666;
}
footer p {
    margin: 0;
}
footer a {
    color: #d4755f;
    text-decoration: none;
    font-weight: 500;
}
footer a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    margin-top: 2em;
    margin-bottom: 2em;
    width: 100%;
}

.social-label {
    text-align: center;
    margin-top: 2em;
    margin-bottom: 0.3em;
    font-size: 1em;
    font-weight: 500;
    color: #2b2b2b;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link img {
    width: 50px;
    height: 50px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: grayscale(0%);
}

.social-link.facebook {
    margin-left: 0.5em;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #2b2b2b;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    max-width: 700px;
    width: 100%;
    margin: 2em auto;
}
input, textarea {
    padding: 1em;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0;
    font-size: 0.95em;
    background: #fff;
    color: #2b2b2b;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #2b2b2b;
}
#formMessage {
    margin: 1em auto 0 auto;
    font-weight: bold;
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 0;
    box-sizing: border-box;
}
@media (max-width: 900px) {
    nav {
        padding: 1.7em 0 1.5em 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }
    
    .nav-logo {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    nav ul {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: top 0.3s ease 0.3s, visibility 0s linear 0.6s;
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        padding-top: 1.5em;
        z-index: 1000;
        visibility: hidden;
    }
    
    nav ul.active {
        visibility: visible;
        transition-delay: 0s, 0s;
        top: 0;
    }
    
    nav ul.closing {
        visibility: visible;
        top: 0;
        transition: top 0.3s ease 0.3s, visibility 0s linear 0.6s;
    }
    
    nav ul.active {
        top: 0;
    }
    
    nav ul li {
        margin: 1em 0;
        width: 80%;
        text-align: center;
        opacity: 0;
        transform: translateY(-100vh);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .mobile-menu-logo {
        display: flex !important;
        justify-content: center;
        margin-top: 1.5em !important;
        margin-bottom: 1.5em !important;
        width: 100%;
    }

    .mobile-logo {
        max-width: 100px;
        width: 60vw;
        height: auto;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-100vh);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideUp {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-100vh);
        }
    }
    
    nav ul.active li {
        animation: slideDown 0.5s ease forwards;
    }
    
    nav ul.active li:nth-child(1) { animation-delay: 0.6s; }
    nav ul.active li:nth-child(2) { animation-delay: 0.5s; }
    nav ul.active li:nth-child(3) { animation-delay: 0.4s; }
    nav ul.active li:nth-child(4) { animation-delay: 0.3s; }
    nav ul.active li:nth-child(5) { animation-delay: 0.2s; }
    nav ul.active li:nth-child(6) { animation-delay: 0.1s; }
    
    nav ul.closing li {
        animation: slideUp 0.4s ease forwards;
    }
    
    nav ul.closing li:nth-child(1) { animation-delay: 0s; }
    nav ul.closing li:nth-child(2) { animation-delay: 0.05s; }
    nav ul.closing li:nth-child(3) { animation-delay: 0.1s; }
    nav ul.closing li:nth-child(4) { animation-delay: 0.15s; }
    nav ul.closing li:nth-child(5) { animation-delay: 0.2s; }
    nav ul.closing li:nth-child(6) { animation-delay: 0.25s; }
    
    nav ul li:last-child {
        margin-left: auto;
        margin-right: auto;
        margin-top: 2em;
        display: flex;
        justify-content: center;
    }
    
    main {
        padding: 0.5em;
        max-width: 100%;
    }
    section {
        min-height: 80vh;
        margin-bottom: 1em;
    }
    h1, h2 {
        font-size: 1.5em;
    }
    input, textarea, button {
        font-size: 1em;
    }
    
    .menu-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1em;
        padding: 0 1em;
    }
    
    .menu-btn {
        width: 100%;
        justify-content: center;
    }
}
