:root {
    --color-brown-dark: #420b00;
    --color-red: #b3432f;
    --color-orange: #b54c12;
    --color-red-deep: #862825;
    --color-contact: #8c6267;

    --color-bg: #1b0a07;
    --color-text: #fffaf5;

    --font-body: "Spectral", serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at top, #5e1b0d 0%, var(--color-bg) 45%, #000 100%);
    color: var(--color-text);
}

img {
    width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    padding-top: 7rem;
}

.section {
    padding: 4rem 1.5rem;
}

section{
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.section-text h2 {
    font-weight: 500;
    font-size: 2rem;
    margin: 0 0 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-text p {
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0 0 1rem;
}

.section-media {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.5);
    height: fit-content;
}

.section-media.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    height: fit-content;
}

.section-media.gallery img {
    /* height: 100%; */
    object-fit: cover;
}

.center-text {
    text-align: center;
}

.section-overons {
    background: linear-gradient(135deg, var(--color-red) 0%, #d5664a 40%, var(--color-red) 100%);
}

.section-repertoire {
    background: linear-gradient(135deg, var(--color-orange) 0%, #d06d2e 40%, var(--color-orange) 100%);
}

.section-sfeer {
    background: linear-gradient(135deg, var(--color-red-deep) 0%, #a63a33 40%, var(--color-red-deep) 100%);
}

/* Sfeer hoeft geen volledige viewporthoogte te vullen */
.section-sfeer {
    min-height: auto;
}

.section-coaching {
    background: linear-gradient(135deg, var(--color-red) 0%, #d5664a 40%, var(--color-red) 100%);
}

.section-contact {
    background: linear-gradient(135deg, var(--color-contact) 0%, #a77a83 40%, var(--color-contact) 100%);
}

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(66, 11, 0, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 0.3rem 1.2rem rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1.5rem;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-text h1 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.15em;
}

.brand-text p {
    margin: 0.15rem 0 0;
    font-size: 0.95rem;
    font-style: italic;
    color: #f2d5ad;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.4);
}

.icon-wrapper {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon-wrapper img {
    width: 1.4rem;
    height: 1.4rem;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Contact strip inside header */

.contact-strip {
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem 0.75rem;
}

.contact-strip a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    font-size: 0.95rem;
    white-space: nowrap;
}

.contact-strip .value {
    font-weight: 600;
}

/* Contact modal (desktop-only behavior is controlled via JS) */

.contact-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.contact-modal.open {
    display: flex;
}

.contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.contact-modal-content {
    position: relative;
    z-index: 1;
    background: #2b0f07;
    border-radius: 1rem;
    padding: 1.75rem 2.25rem 1.75rem;
    box-shadow: 0 1.8rem 3.2rem rgba(0, 0, 0, 0.8);
    max-width: 22rem;
    margin: 0 1.5rem;
    text-align: center;
}

.contact-modal-content h3 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-modal-value {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.contact-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    border: none;
    background: transparent;
    color: #f8e0c6;
    font-size: 1.5rem;
    cursor: pointer;
}

.contact-modal-action {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    background: #f8e0c6;
    color: #2b0f07;
    font-weight: 600;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.contact-modal-action:hover {
    background: #ffeedd;
}

/* Hero */

.hero {
    background: radial-gradient(circle at top left, #5e1b0d 0%, var(--color-brown-dark) 45%, #120503 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2rem 3.5rem rgba(0, 0, 0, 0.75);
}

.hero-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0 0 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 24rem;
}

/* Sfeer / videos */

.section-sfeer h2 {
    font-weight: 500;
    font-size: 2rem;
    margin: 0 0 2.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
}

.videos {
    display: grid;
    grid-template: "a b c" auto / 1fr 1.4fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.videos > div {
    display: grid;
    place-items: center;
}

.videos > div > div {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.videos iframe {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.7);
}

.video-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.video-buttons button {
    border-radius: 999px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.video-buttons button:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 0.6rem 1.4rem rgba(0, 0, 0, 0.5);
}

/* Footer */

.site-footer {
    background: #2b0f07;
    padding: 1.5rem 1.5rem 2.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    color: #e7c8a6;
}

/* Responsive */

@media (max-width: 900px) {
    .header-inner {
        padding-inline: 1rem;
    }

    .main-nav {
        position: absolute;
        inset-inline: 0;
        top: 100%;
        padding: 0.75rem 1.5rem 1.25rem;
        background: rgba(17, 5, 3, 0.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        transform-origin: top;
        transform: scaleY(0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-nav.open {
        opacity: 1;
        transform: scaleY(1);
        pointer-events: auto;
    }

    .nav-toggle {
        display: block;
    }

    .two-column,
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .section {
        padding-block: 3rem;
    }

    .contact-strip a {
        font-size: 0.9rem;
    }


}

@media (max-width: 640px) {
    .brand-text h1 {
        font-size: 1rem;
    }

    .brand-text p {
        font-size: 0.85rem;
    }

    .videos {
        grid-template-columns: 0fr 10fr 0fr;
    }

    .section-sfeer .videos {
        width: 100vw;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .two-column {
        gap: 1.75rem;
    }

    .contact-strip .label {
        display: none;
    }
}

/* Extra brede schermen */
@media (min-width: 1200px) {
    .section-sfeer {
        min-height: 70dvh;
    }

    .section-sfeer .section-inner {
        margin: 0;
        padding-left: 3.5vw;
    }

    .section-sfeer .videos {
        width: 90vw;
        grid-template: "a b c" auto / 1.2fr 2fr 1.2fr;
    }

    .section-sfeer .video-buttons{
        width: 90vw;
    }
}
