* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    background: #fafafa;
}

/* Navigation */
nav {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero>nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.nav-bar {
    background: linear-gradient(90deg, #111 0%, #1b1b1b 100%);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-logo-link {
    display: inline-flex;
    align-items: center;
    margin-right: 0.75rem;
}

.nav-logo {
    display: block;
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}
.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.45rem 0.7rem;
        border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

/* hou me op de hoogte */
.btn-12 {
    margin-left: auto;
    position: relative;
    right: 0;
    bottom: 0;
    border: none;
    box-shadow: none;
    width: 220px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border-radius: 0;
    -webkit-perspective: 230px;
    perspective: 230px;
}

.btn-12 span {
    background: rgb(143, 104, 27);
    background: linear-gradient(0deg, rgba(143, 104, 27, 1) 0%, rgba(198, 154, 62, 1) 100%);
    display: block;
    position: absolute;
    width: 220px;
    height: 40px;
    box-shadow: inset 2px 2px 2px 0 rgba(255, 255, 255, 0.5),
        7px 7px 20px 0 rgba(0, 0, 0, 0.1),
        4px 4px 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-12 span:nth-child(1) {
    box-shadow: -7px -7px 20px 0 #fff9,
        -4px -4px 5px 0 #fff9,
        7px 7px 20px 0 #0002,
        4px 4px 5px 0 #0001;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12 span:nth-child(2) {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transform-origin: 50% 50% -20px;
    -moz-transform-origin: 50% 50% -20px;
    transform-origin: 50% 50% -20px;
}

.btn-12:hover span:nth-child(1),
.btn-12.active span:nth-child(1) {
    box-shadow: inset 2px 2px 2px 0 rgba(255, 255, 255, 0.5),
        7px 7px 20px 0 rgba(0, 0, 0, 0.1),
        4px 4px 5px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.btn-12:hover span:nth-child(2),
.btn-12.active span:nth-child(2) {
    box-shadow: inset 2px 2px 2px 0 rgba(255, 255, 255, 0.5),
        7px 7px 20px 0 rgba(0, 0, 0, 0.1),
        4px 4px 5px 0 rgba(0, 0, 0, 0.1);
    color: transparent;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}
/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://no19management.ams3.digitaloceanspaces.com/no19/images/marcel-hensema-lowres-1620x1080.jpg') center top / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
        max-width: 1200px;
        padding: 0 0.5rem;
        text-align: left;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    margin-left: -2rem;
}

.tagline {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn:hover {
    background: #fff;
    color: #111;
}

.btn-dark {
    border-color: #222;
    color: #222;
}

.btn-dark:hover {
    background: #222;
    color: #fff;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.btn-small:hover {
    background: #444;
}

/* Uitgelichte Show (index) */
.uitgelichte-show {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
}

.uitgelichte-show-inner {
    max-width: 600px;
    margin: 0 auto;
}

.uitgelichte-show-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.uitgelichte-show-inner h2 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.uitgelichte-show-inner p {
    line-height: 1.7;
    color: #555;
        margin-bottom: 2rem;
        font-size: 1.05rem;
}

.lees-meer-btn {
    display: inline-block;
    padding: 0.7rem 1.9rem;
    border: 2px solid #222;
    background: none;
    color: #222;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
}

.lees-meer-btn:hover {
    background: #222;
    color: #fff;
}

.lees-meer-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-reviews {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-reviews blockquote {
    border-left: 3px solid #222;
    padding: 0.75rem 1.2rem;
    margin: 0;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.info-reviews blockquote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-size: 0.9rem;
    color: #888;
}

.uitgelichte-show-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Shows Page */
.shows-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.home-speellijst-section {
    padding-top: 1rem;
    padding-bottom: 5rem;
}
.shows-page h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.shows-intro {
    color: #666;
    margin-bottom: 3rem;
}

.shows-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f1f1f1;
    border: 1px solid #e5e5e5;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 200px;
    flex: 1;
}

.filter-field label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
}

.filter-field select {
    height: 40px;
    border: 1px solid #ccc;
    background: #fff;
    padding: 0 0.65rem;
    font-size: 0.95rem;
    color: #222;
}

.filter-reset {
    height: 40px;
    border: none;
    cursor: pointer;
}

.filter-results {
    color: #555;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #222;
}

.show-date {
    text-align: center;
    min-width: 60px;
}

.show-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.show-date .month {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
}

.show-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.show-info p {
    color: #666;
    margin-bottom: 0.8rem;
}

.placeholder {
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 3rem;
}

/* Nieuwsbrief Pagina */
.nieuwsbrief-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
}

.nieuwsbrief-page h1 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.nieuwsbrief-page-intro {
    color: #666;
    margin-bottom: 1.5rem;
}

.nieuwsbrief-wrapper .sib-form {
    background-color: transparent !important;
}

/* Confirmation Page */
.confirm-page {
    min-height: calc(100vh - 120px);
    display: grid;
    place-items: center;
    padding: 2rem 1rem 3rem;
}

.confirm-card {
    width: 100%;
    max-width: 680px;
    background: #fff;
    border-left: 6px solid #222;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.confirm-kicker {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.9rem;
}

.confirm-card h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.confirm-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.confirm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid #eee;
}

.social-text {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 2rem;
    color: #9c0b84;
}

.social-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.social-icon {
    width: 60px;
    margin: 0;
}
.contact {
    margin-bottom: 1rem;
}

.contact a:link {
    color: #999;
    text-decoration: underline;
    transition: color 0.2s;
}

.nieuwsbrief-page h1 {
    margin-top: 2rem;
}
/* Responsive */
@media (max-width: 768px) {
    nav,
    .nav-bar {
            gap: 1rem;
            padding: 1rem;
        }

        .btn-12 {
            margin-left: 0;
            width: 190px;
        }
    
        .nav-logo {
            width: 56px;
            height: 56px;
        }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-left: -0.5rem;
    }

        .hero-content {
            padding: 0 1rem;
        }
    
        .uitgelichte-show-inner h2 {
            font-size: 2rem;
    }
.uitgelichte-show {
    padding: 3.5rem 1rem;
}

.uitgelichte-show-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
}

.uitgelichte-show-inner p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    text-align: left;
}

.lees-meer-btn {
    width: 100%;
    max-width: 260px;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    letter-spacing: 0.8px;
    background: #222;
    color: #fff;
    border-color: #222;
}

.lees-meer-content p {
    font-size: 0.98rem;
    text-align: left;
}

.shows-page {
    padding: 2rem 1rem;
}
        .filter-field {
            min-width: 100%;
        }

        .filter-reset {
            width: 100%;
        }
.nieuwsbrief-page {
    padding-top: 2rem;
}

        .confirm-card {
            padding: 1.5rem;
        }

        .confirm-card h1 {
            font-size: 1.6rem;
        }

    footer {
        padding: 1.5rem 1rem;
    }

    .social-text {
        font-size: 1.2rem;
    }

    .social-icon {
        width: 40px;
    }
}