/* 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; }