:root {
    --bg-main: #0b0c10;
    --bg-header-grad1: #141c2c;
    --bg-header-grad2: #536878;
    --text-main: #c5c6c7;
    --text-logo: #66fcf1;
    --text-link: #66fcf1;
    --text-link-hover: #45a29e;
    --accent: #45a29e;
    --accent-hover: #66fcf1;
    --subtitle: #a1a9b8;
    --item-bg: #1f2833;
    --btn-text: #0b0c10;
    --box-shadow: #0b0c1055;
    --gallery-shadow: #45a29e88;
}

@font-face {
    font-family: 'regular';
    src: url('../fonts/QueensOfTheApocalypse-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Grunge';
    src: url('../fonts/QueensOfTheApocalypse-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


body {
    margin: 0;
    font-family: 'regular', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 40px;
}
header {
    background: var(--bg-header-grad1);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-logo);
    text-transform: uppercase;
    letter-spacing: 2px;
    max-width: 200px;
    border-radius: 25px;
    box-shadow: 0 0 100px 2px rgba(255,255,255,0.25); 
}

.nav-links a {
    color: var(--text-link);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--text-link-hover);
}
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    margin-left: 16px;
}
.menu-icon span {
    background: #fff;
    opacity: 0.9;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

/* Show hamburger on mobile, hide links */
@media (max-width: 800px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--bg-main, #141c2c); /* fallback if no var */
        opacity: 0.9;
        position: absolute;
        align-items: center;
        top: 68px;
        right: 0;
        left: 0;
        z-index: 1000;
        padding: 30px 0 16px 0;
    }
    .menu-icon {
        display: flex;
    }
    .menu-toggle:checked ~ .nav-links {
        display: flex;
    }
    header {
        position: relative;
    }
}



.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.btn-primary {
    background: var(--accent);
    border: none;
    padding: 12px 30px;
    
    color: var(--btn-text);
    font-weight: 700;
    cursor: pointer;
    border-radius: 25px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--accent-hover);
}

/* Hero sectie */
.hero {
    text-align: center;
    margin-top: 60px;
}
.hero-subtitle {
    font-size: 3rem;
    max-width: 700px;
    margin: 10px auto 30px;
    color: var(--subtitle);
}

/* Intro sectie */
.intro {
    margin-top: 80px;
    text-align: center;
    
}
.intro h2 {
    color: var(--accent);
    
}
.intro-text {
    max-width: 800px;
    margin: 10px auto;
    font-size: 3rem;
    color: var(--subtitle);
}

/* Muziek preview sectie */
.music-preview {
    margin-top: 80px;
    text-align: center;
}
.music-preview h2 {
    color: var(--accent);
}
.music-preview audio {
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}

/* Links overzicht sectie */
.links-overview {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.links-overview a {
    min-width: 150px;
}

/* Overig */
h2 {
    font-weight: 700;
    text-transform: uppercase;
}

.biografie {
    margin-top: 60px;
    max-width: 900px;
    color: var(--text-main);
  
    line-height: 1.7;
}
.biografie h1 {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 25px;
}
.biografie ul {
    list-style-type: square;
    padding-left: 20px;
    margin-top: 15px;
}
.biografie ul li {
    margin-bottom: 8px;
}

.agenda {
    margin-top: 60px;
    color: var(--text-main);
}
.agenda h1 {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 25px;
}
.filter-form {
    margin-bottom: 20px;
}
.filter-form label {
    font-weight: 600;
    margin-right: 10px;
}
.filter-form select {
    padding: 8px;
    background: var(--bg-header-grad1);
    border: 1px solid var(--accent);
    color: var(--text-main);
    font-weight: 700;
    cursor: pointer;
}

.optredens-list {
    list-style-type: none;
    padding-left: 0;
}
.optredens-list li {
    background-color: var(--item-bg);
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.optredens-list li:hover {
    background-color: var(--accent);
    color: var(--btn-text);
    cursor: pointer;
}
.optredens-list li a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}
.optredens-list li a:hover {
    background-color: var(--accent);
    color: var(--btn-text);
    cursor: pointer;
}

.muziek {
    margin-top: 60px;
    color: var(--text-main);
}
.muziek h1 {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 30px;
}
.streaming-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.streaming-links a {
    text-decoration: none;
    padding: 12px 28px;
    font-weight: 700;
    color: var(--btn-text);
    background-color: var(--accent);
    border-radius: 25px;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}
.streaming-links a:hover {
    background-color: var(--accent-hover);
}
.liedjeslijst {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.liedje h2 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}
audio {
    width: 100%;
    border-radius: 5px;
}
.gallery {
    margin-top: 60px;
    color: var(--text-main);
}
.gallery h1 {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 30px;
}
.gallery-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-items: center;
}
.gallery-item {
    background: var(--item-bg);
    padding: 8px;
    border-radius: 7px;
    box-shadow: 0 2px 22px var(--box-shadow);
    transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.3s;
}
.gallery img.gallery-photo {
    max-width: 160px;
    max-height: 210px;
    border-radius: 4px;
    display: block;
    transition: transform 0.4s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.3s;
}
.gallery img.gallery-photo:hover {
    transform: scale(1.5);
    box-shadow: 0 8px 60px var(--gallery-shadow);
    z-index: 2;
}
@media (max-width: 700px) {
    .gallery img.gallery-photo {
        max-width: 80vw;
        max-height: 36vh;
    }
    .gallery-item:has(.gallery-photo:hover), 
    .gallery-item:focus-within .gallery-photo {
        z-index: 2;
    }
}
@media (max-width: 700px) {
    .gallery img.gallery-photo.scrolled-center {
        transform: scale(1.5);
        box-shadow: 0 8px 60px var(--gallery-shadow);
        z-index: 2;
    }
}
/* Animaties */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px var(--text-logo), 0 0 10px var(--accent);
    }
    50% {
        text-shadow: 0 0 20px var(--text-logo), 0 0 30px var(--accent);
    }
    100% {
        text-shadow: 0 0 5px var(--text-logo), 0 0 10px var(--accent);
    }
}
h1.glow {
    animation: glow 3s ease-in-out infinite;
}
/* Responsive design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px 20px;
    }
    .nav-links {
        margin-top: 10px;
    }
    .btn-primary {
        width: 100%;
    }
}
