/* Add your custom styles here */
section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--padding-horizontal) var(--padding-vertical);
}

.Header .menu {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}
.Header .menu li { list-style: none; }
.Header .menu li a {
    font-family: var(--titles);
    font-size: 22px;
    text-decoration: none;
    color: var(--zwart);
}
.Header .menu li a:hover, .Header .menu .current-menu-item a { text-decoration: underline; }
@media (max-width: 767px) { .Hero { background-position: 15% !important; } }

.Workshops--Grid > .Workshops--Item:nth-child(4) { grid-area: 2 / 2 / 3 / 4; }
.Workshops--Grid > .Workshops--Item:nth-child(5) { grid-area: 2 / 4 / 3 / 6; }

.gform_required_legend { display: none; }
.gform_button.button {
    border: unset;
    background-color: var(--donkerbruin);
}
.gform_button.button:hover { background-color: var(--warm-roze-perzik); }

/* Offcanvas styling */
.offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: var(--zand-beige);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    padding: 2rem;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}
.offcanvas.active {
    left: 0;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}
.overlay.active {
    display: block;
}

/* Toggle Button */
.menu-toggle {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1100;
    position: relative;
    color: var(--wit);
}

/* Close Button */
.menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}
@media (max-width: 767px) { .offcanvas { width: 80%; } }

.Footer a, .Copyright a {
    color: var(--zwart);
    text-decoration: none;
}
.Footer a:hover, .Copyright a:hover { text-decoration: underline; }

/* ========================= */
/* FAQ Section */
/* ========================= */
.faq-wrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: var(--s3);
}
@media screen and (max-width: 1023px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        row-gap: unset;
    }
}

.faq-item {
    margin-bottom: 10px;
    border: 2px solid var(--donkerbruin);
}

.faq-question {
    background: transparent;
    border: none;
    padding: 15px;
    width: 100%;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    color: var(--black);
    text-transform: uppercase;
    font-size: var(--h4);
    position: relative;
}
.faq-question::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 25px;
    background: url(/wp-content/uploads/2025/05/FAQ-Arrow.svg) no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}
.faq-question.active::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    width: 20px;
    height: 20px;
    background: url(/wp-content/uploads/2025/05/FAQ-Cross.svg) no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}
@media screen and (max-width: 1023px) {
    .faq-question::after, .faq-question.active::after {
        height: 16px;
        right: 5px;
    }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--black);
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: var(--body-text);
}

.faq-answer.open {
    border-top: 2px solid var(--donkerbruin);
}

@media (max-width: 1023px) {
    .faq-question {
        padding: 10px;
    }

    .faq-answer {
        padding: 0 10px;
    }
}

.Blog h2 {
    font-family: 'Playfair Display';
    font-size: 2em;
    font-weight: 500;
    color: var(--donkerbruin);
}

.postcard { text-decoration: none; color: black; }