/*
Theme Name: Groot Onderhoud
Author: Niels Klaasen
Description: Custom WordPress theme voor Groot Onderhoud
Version: 1.1.8
Text Domain: grootonderhoud
*/

:root {
    --go-yellow: #f7df41;
    --go-magenta: #cf0265;
    --go-magenta-live: #c31a6b;
    --go-ink: #2b2b2b;
    --go-gray: #4d4d4d;
}

html,
body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Dosis", "Montserrat", sans-serif;
    color: var(--go-ink);
    background-color: var(--go-yellow);
    background-image:
        url("assets/images/go-background-yellow-paper.jpg"),
        linear-gradient(285deg, rgba(221, 10, 97, 0.43) 0%, rgba(255, 255, 255, 0.43) 92%);
    background-repeat: repeat;
    background-position: 0 50%;
    background-size: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
.button:focus-visible {
    outline: 3px solid #000;
    outline-offset: 4px;
}

.site-header {
    background-color: rgba(247, 223, 65, 0.03);
    background-image: url("assets/images/go-header-live.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    border-bottom: 2px solid #000;
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 280px;
    padding: 45px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.brand__banner {
    display: block;
    width: min(100%, 1063px);
    filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.18));
    transform-origin: center top;
}

.brand__banner-image {
    display: block;
    width: 100%;
    height: auto;
}

.site-nav {
    width: 100%;
}

.site-nav__list {
    list-style: none;
    display: flex;
    gap: 24px;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.site-nav__list a {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 17px;
    line-height: 1;
    color: var(--go-gray);
    padding: 6px 14px;
    border-radius: 1px;
    border: 2px solid transparent;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list .current-menu-item a,
.site-nav__list .current_page_item a {
    border-color: transparent;
    color: var(--go-magenta);
    background: rgba(247, 223, 65, 0.82);
    transform: translateY(-1px);
}

.site-main {
    padding-bottom: 0;
    flex: 1 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    border-radius: 1px;
    border: 2px solid var(--go-magenta);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--go-magenta);
    color: var(--go-yellow);
    font-family: "Dosis", "Montserrat", sans-serif;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button--ghost {
    background: var(--go-yellow);
    color: var(--go-magenta);
}

.button--small {
    padding: 8px 14px;
    font-size: 12px;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 rgba(43, 43, 43, 0.22);
}

.section {
    padding: 70px 0;
    scroll-margin-top: 24px;
}

.section--shows {
    background-color: var(--go-yellow);
    background-image: url("assets/images/go-background-yellow-paper.jpg");
    background-repeat: repeat;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.section--band-story {
    background-color: var(--go-magenta-live);
    background-image:
        linear-gradient(rgba(195, 26, 107, 0.12), rgba(195, 26, 107, 0.12)),
        url("assets/images/go-background-magenta-screenprint.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    border-bottom: 2px solid #000;
}

.section--news {
    background-color: var(--go-magenta);
    background-image: url("assets/images/go-background-magenta-screenprint.jpg");
    background-repeat: repeat;
    color: #fff;
}

.section--news .section__title {
    color: var(--go-yellow);
}

.section--news .section__subtitle {
    color: #fff;
}

.section--news .button--ghost {
    background: var(--go-yellow);
    color: var(--go-ink);
    border-color: var(--go-yellow);
}

.section--videos {
    background-color: var(--go-yellow);
    background-image:
        linear-gradient(rgba(207, 2, 101, 0.07), rgba(247, 223, 65, 0.2)),
        url("assets/images/go-background-yellow-paper.jpg");
    background-repeat: repeat;
    border-top: 2px solid #000;
}

.site-main > .section:first-child {
    background-color: var(--go-magenta);
    background-image: url("assets/images/go-background-magenta-screenprint.jpg");
    background-repeat: repeat;
    color: #fff;
}

.site-main > .section:first-child .section__title {
    color: var(--go-yellow);
}

.site-main > .section:first-child .section__subtitle {
    color: #fff;
}

.site-main > .section:first-child .button {
    background: var(--go-yellow);
    color: var(--go-ink);
    border-color: var(--go-yellow);
}

.site-main > .section:first-child .page-content,
.site-main > .section:first-child .post-card,
.site-main > .section:first-child .show-card {
    background-color: var(--go-yellow);
    background-image: url("assets/images/go-background-yellow-paper.jpg");
    color: var(--go-ink);
    border: 2px solid #000;
}

.site-main > .section:first-child .post-card__title,
.site-main > .section:first-child .show-card__title,
.site-main > .section:first-child .show-card__title a,
.site-main > .section:first-child .show-card__date {
    color: var(--go-magenta);
}

.site-main > .section:first-child .show-card__meta {
    color: var(--go-ink);
}

.site-main > .section:first-child .show-card .button {
    background: var(--go-magenta);
    color: #fff;
    border-color: var(--go-magenta);
}

.section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section__title {
    font-family: "Dosis", "Montserrat", sans-serif;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    color: var(--go-magenta);
    margin: 0 0 14px;
}

.section__title--left {
    text-align: left;
}

.section__subtitle {
    text-align: center;
    font-family: "Dosis", "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--go-gray);
    margin: 0 0 28px;
}

.section__subtitle--left {
    text-align: left;
}

.band-story {
    max-width: 1120px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
    color: var(--go-yellow);
    text-shadow: #2b2b2b 3px 3px 9px;
}

.band-story .wp-block-media-text,
.band-story .home-story-layout.wp-block-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 40%);
    gap: 54px;
    align-items: start;
}

.band-story .wp-block-media-text__content,
.band-story .home-story-layout__text {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
}

.band-story .wp-block-media-text__media,
.band-story .home-story-layout__image {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
}

.band-story .wp-block-media-text__media img,
.band-story .home-story-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    aspect-ratio: 1;
    height: auto;
    object-fit: cover;
    object-position: center;
    border: 2px solid rgba(247, 223, 65, 0.75);
    box-shadow: 10px 10px 0 rgba(247, 223, 65, 0.22);
}

.band-story .home-story-image {
    margin: 0;
}

.band-story p {
    margin: 0 0 18px;
}

.band-story p:first-child {
    font-family: "Dosis", "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--go-yellow);
}

.band-story strong {
    color: var(--go-yellow);
    font-weight: 800;
}

.band-story ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px 18px;
}

.band-story li {
    position: relative;
    padding-left: 18px;
}

.band-story li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 1px;
    background: var(--go-yellow);
    position: absolute;
    left: 0;
    top: 0.75em;
}

.shows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px 22px;
}

.show-card {
    background: var(--go-magenta);
    color: var(--go-yellow);
    border: 0;
    border-radius: 1px;
    padding: 18px;
    font-family: "Dosis", "Montserrat", sans-serif;
    box-shadow: 8px 8px 0 rgba(43, 43, 43, 0.16);
    display: flex;
    flex-direction: column;
    min-height: 166px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-card:hover,
.show-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 12px 12px 0 rgba(43, 43, 43, 0.18);
}

.show-card--past {
    opacity: 0.55;
    filter: grayscale(1);
}

.show-card--past .show-card__title a {
    color: #6b5f58;
}

.show-card__date {
    color: var(--go-yellow);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.show-card__title {
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.show-card__meta {
    margin: 0;
    color: var(--go-yellow);
    font-weight: 600;
}

.show-card__actions {
    margin-top: auto;
    padding-top: 18px;
}

.show-card .button--ghost {
    border-color: var(--go-yellow);
}

.shows__footer {
    margin-top: 34px;
    text-align: center;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: start;
}

.news-list {
    margin: 18px 0 24px;
    display: grid;
    gap: 12px;
    font-family: "Dosis", "Montserrat", sans-serif;
}

.news-list__item {
    background-color: var(--go-yellow);
    background-image: url("assets/images/go-background-yellow-paper.jpg");
    border-left: 8px solid #000;
    padding: 12px 16px;
    border-radius: 1px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.news-list__item:hover,
.news-list__item:focus-within {
    background: rgba(247, 223, 65, 0.92);
    transform: translateX(3px);
}

.news-list__item h3 {
    color: var(--go-magenta);
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.news-list__item p {
    color: var(--go-gray);
    font-weight: 700;
    margin: 0;
}

.note-card {
    background-color: var(--go-yellow);
    background-image: url("assets/images/go-background-yellow-paper.jpg");
    color: var(--go-ink);
    border: 2px solid #000;
    border-radius: 1px;
    padding: 24px;
    box-shadow: 10px 10px 0 rgba(43, 43, 43, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.note-card:hover,
.note-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 14px 14px 0 rgba(43, 43, 43, 0.18);
}

.note-card__title {
    font-family: "Dosis", "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--go-magenta);
    margin: 0 0 12px;
}

.note-card .button {
    background: var(--go-magenta);
    color: #fff;
    border-color: var(--go-magenta);
}

.home-videos {
    margin-top: 36px;
}

.home-videos-grid.wp-block-columns {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
    margin: 0;
}

.home-video-card.wp-block-column {
    background-color: var(--go-magenta);
    background-image: url("assets/images/go-background-magenta-screenprint.jpg");
    background-repeat: repeat;
    color: var(--go-yellow);
    border: 2px solid #000;
    border-radius: 1px;
    box-shadow: 10px 10px 0 rgba(43, 43, 43, 0.18);
    overflow: hidden;
    align-self: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-video-card:hover,
.home-video-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 14px 14px 0 rgba(43, 43, 43, 0.2);
}

.home-video-card .wp-block-embed {
    margin: 0;
}

.home-video-card .wp-block-embed__wrapper {
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.home-video-card iframe,
.home-video-card embed,
.home-video-card object,
.home-video-card video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-video-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    font-family: "Dosis", "Montserrat", sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 18px 16px 20px;
    color: var(--go-yellow);
}

.section--content .page-content {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(247, 223, 65, 0.82);
    border: 2px solid var(--go-magenta);
    padding: 24px;
    border-radius: 1px;
}

.page-content p {
    line-height: 1.7;
}

.single-article {
    max-width: 960px;
    margin: 0 auto;
}

.single-article__meta {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.single-article__image {
    margin: 0 auto 24px;
    max-width: 860px;
    border: 2px solid #000;
    box-shadow: 10px 10px 0 rgba(43, 43, 43, 0.16);
}

.single-article__image img {
    display: block;
    width: 100%;
}

.single-article__back {
    margin: 24px 0 0;
}

.posts {
    display: grid;
    gap: 18px;
}

.post-card {
    background: rgba(247, 223, 65, 0.82);
    border: 2px solid var(--go-magenta);
    border-radius: 1px;
    padding: 18px;
}

.post-card__title {
    font-family: "Dosis", "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 6px;
    color: var(--go-magenta);
}

.post-card__meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4a3a32;
    margin: 0 0 10px;
}

.site-footer {
    background-color: var(--go-yellow);
    background-image: url("assets/images/go-background-yellow-paper.jpg");
    background-repeat: repeat;
    color: var(--go-magenta);
    border-top: 2px solid #000;
    margin-top: auto;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.site-footer__column > *:first-child {
    margin-top: 0;
}

.site-footer__column p,
.site-footer__column ul {
    margin: 0 0 12px;
}

.site-footer__column ul {
    padding-left: 18px;
}

.site-footer__title {
    font-family: "Dosis", "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--go-magenta);
    margin: 0 0 10px;
}

.site-footer__heading {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.site-footer a {
    color: var(--go-magenta);
}

.site-footer__bar {
    text-align: center;
    border-top: 1px solid rgba(207, 2, 101, 0.3);
    padding: 16px 24px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sticky-actions {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 20;
    display: grid;
    gap: 8px;
    transform: translateY(-50%);
}

.sticky-actions a {
    background: var(--go-magenta);
    color: var(--go-yellow);
    border: 2px solid var(--go-yellow);
    border-radius: 1px;
    box-shadow: 5px 5px 0 rgba(43, 43, 43, 0.2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 10px 12px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    writing-mode: vertical-rl;
}

.sticky-actions a:hover,
.sticky-actions a:focus-visible {
    transform: translateX(-3px);
    box-shadow: 8px 5px 0 rgba(43, 43, 43, 0.22);
}

@keyframes brandEntrance {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .brand__banner {
        animation: brandEntrance 0.45s ease-out both;
    }

    .reveal-item {
        opacity: 0;
        transform: translateY(14px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        transition-delay: var(--reveal-delay, 0ms);
    }

    .reveal-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

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

    .home-videos-grid.wp-block-columns {
        grid-template-columns: 1fr;
    }

    .band-story .wp-block-media-text,
    .band-story .home-story-layout.wp-block-columns {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    .band-story .wp-block-media-text__content,
    .band-story .wp-block-media-text__media,
    .band-story .home-story-layout__text,
    .band-story .home-story-layout__image {
        grid-column: 1 !important;
    }

    .band-story .wp-block-media-text__media,
    .band-story .home-story-layout__image {
        grid-area: 1 / 1 !important;
    }

    .band-story .wp-block-media-text__content,
    .band-story .home-story-layout__text {
        grid-area: 2 / 1 !important;
    }

    .site-header__inner {
        min-height: 210px;
        padding: 28px 18px 16px;
    }

    .site-nav__list {
        gap: 10px;
    }

    .site-nav__list a {
        background: rgba(247, 223, 65, 0.82);
        font-size: 14px;
        padding: 7px 10px;
    }

    .sticky-actions {
        position: static;
        padding: 12px;
        background-color: var(--go-yellow);
        background-image: url("assets/images/go-background-yellow-paper.jpg");
        border-top: 2px solid #000;
        display: flex;
        justify-content: center;
        transform: none;
    }

    .sticky-actions a {
        writing-mode: horizontal-tb;
    }
}
ViICPaX@k8az7PabO5*%%N4&
@media (max-width: 600px) {
    .section {
        padding: 46px 0;
    }

    .band-story {
        font-size: 16px;
    }

    .band-story p:first-child {
        font-size: 16px;
    }

    .site-nav__list {
        gap: 8px;
    }

    .section__title {
        font-size: 30px;
        letter-spacing: 0.08em;
    }

    .site-header__inner {
        min-height: 170px;
        padding-top: 22px;
    }

    .button {
        width: 100%;
    }

    .sticky-actions a {
        font-size: 12px;
        padding: 9px 10px;
         }
}
