/* 
    RESET & BASIC STYLING
    ---------------------
    Remove default margins/paddings and ensure consistent box sizing.
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f2f2f2; /* Soft gray, not pure white */
}

/* 
    GLOBAL SECTION SPACING
    ----------------------
    Give each <section> the same top/bottom padding for consistent spacing.
*/
section {
    padding: 40px 20px;
}

/*
    GLIMMER ANIMATION
    -----------------
    Used for the "Os boeken?" button to add a subtle glowing effect.
*/
@keyframes glimmer {
    0% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5),
                    0 0 10px rgba(255, 215, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.8);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
                    0 0 30px rgba(255, 215, 0, 0.6);
        border-color: rgba(255, 215, 0, 1);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5),
                    0 0 10px rgba(255, 215, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

/*
    HERO SECTION
    ------------
    Use min-height instead of strict height so extra content (plus global section padding)
    doesn't get clipped.
*/
.hero {
    position: relative;
    min-height: 100vh;
    background: url('../images/image0.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 20px;  /* Only bottom corners rounded */
    border-bottom-right-radius: 20px;
    overflow: hidden;
    z-index: 2; /* Above the confetti canvas */
}

/* 
    Semi-transparent overlay to darken the hero background image 
*/
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* 
    Text content inside the hero: heading, paragraph, button
*/
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 10vw, 6rem);
	letter-spacing: clamp(1px, 0.3vw, 3px);
    margin-bottom: 20px;
    font-family: 'Anton', sans-serif;
    background: linear-gradient(to right, #f44336, #ffc107, #4caf50);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;

    /* Keep gradient left-to-right by preventing line breaks */
    white-space: nowrap;
    display: inline-block;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

/* 
    Main call-to-action button with a gold border and glimmer effect 
*/
.hero-content button {
    padding: 16px 30px;
    font-size: 16px;
    border: 2px solid rgba(255, 215, 0, 0.8); /* Gold border */
    background: #c62828; /* Darker red for contrast */
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
    animation: glimmer 1.5s infinite alternate; /* Glimmer effect */
}

.hero-content button:hover {
    background: #d62828;
}

/* 
    Scroll-down indicator, bobbing with a bounce animation
*/
.scroll-down {
    font-size: 18px;
    color: #fff;
    margin-top: 50px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(3px);
    }
}

/*
    LOESTER NOE! SECTION
    --------------------
*/
.luister-nu {
    text-align: center;
    background: transparent;
}

.luister-nu .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.luister-nu h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.luister-nu .spotify-container {
    margin: 0 0 30px 0;
}

.luister-nu .spotify-container iframe {
    width: 80%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

/*
    EVENTS SECTION
*/
.events {
    text-align: center;
}

.events .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.events h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.events h3 {
    text-align: left;
    font-size: 30px;
    margin-bottom: 20px;
}

.event-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    max-width: 600px;
    text-align: left;
}

.event-list li {
    margin-bottom: 10px;
    font-size: 18px;
}


/*
    ABOUT SECTION
*/
.about {
    text-align: center;
    background: transparent;
}

.about .container {
    background: #f2f2f2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.about .container::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: #f2f2f2;
    filter: blur(10px);
    border-radius: 30px;
    z-index: -1;
}

.about h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.about p {
    text-align: left;
    font-size: 20px;
    line-height: 1.8;
}


/*
    Links Section
*/
.music-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.music-button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.spotify {
    background: #1DB954;
}

.youtube {
    background: #FF0000;
}

.genius {
    background: #FFDD00;
    color: #000;
}

.music-button:hover {
    opacity: 0.8;
}

/*
    GALLERY STYLES
*/
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/*
    MODAL STYLES
*/
.modal {
    display: none;
    position: fixed;
    z-index: 9999; /* Above other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #fff, #fafafa);
    margin: 10% auto;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 600px;
    position: relative;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-20px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.modal-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.modal-content form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}

.modal-content form input,
.modal-content form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.2s ease-in-out;
}

.modal-content form input:focus,
.modal-content form textarea:focus {
    outline: none;
    border-color: #73e639;
}

.modal-content form button {
    margin-top: 16px;
    padding: 12px 25px;
    background: #e63946;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.1s ease;
    font-size: 16px;
}

.modal-content form button:hover {
    background: #d62828;
    transform: scale(1.02);
}

/*
    CONFETTI CANVAS
*/
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind all content */
    pointer-events: none;
    transform: translateZ(0);
    will-change: transform;
}

/*
    RESPONSIVE STYLES
*/
@media (max-width: 768px) {

    .about p {
        font-size: 18px;
    }

    .event-list {
        margin: 20px auto;
        padding: 0;
        max-width: 600px;
        text-align: center;
    }

    .luister-nu .spotify-container iframe {
        width: 100%;
    }

    .gallery {
        gap: 10px;
    }

    .music-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    }

    .modal-content {
        margin: 15% 20px;
        max-width: none;
    }

}

@media (max-width: 580px) {

    .hero {
        min-height: 85vh; 
    }
    
    .hero-content h1 {
        font-size: 64px;
    }
    
    .hero-content p {
        font-size: 22px;
    }

    .hero-content button {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .scroll-down {
        font-size: 18px;
    }
    
    .luister-nu,
    .events,
    .about {
        padding: 30px 10px;
    }
    
    .luister-nu h2,
    .events h2,
    .about h2 {
        font-size: 36px;
    }
    
    .about p {
        font-size: 18px;
    }
    
    .luister-nu .spotify-container iframe {
        width: 100%;
    }

    .modal-content {
        margin: 10% 5px;
        max-width: none;
    }

    .music-button {
        display: block;
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background 0.3s ease;
        margin-bottom: 10px;
    }
    
    .music-links {
        display: block;
    }

    .spotify {
        background: #1DB954;
    }
    
    .youtube {
        background: #FF0000;
    }
    
    .genius {
        background: #FFDD00;
        color: #000;
    }

}

/* Make sure we shrink the font below 420px so heading doesn't wrap */
@media (max-width: 420px) {
    .hero-content h1 {
        font-size: 60px; /* adjust if still wrapping */
        letter-spacing: 1px;
    }
}

/*
    FOOTER STYLES
*/
.site-footer {
    background-color: #222; /* dark gray, not pure black */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px; /* space before the footer if you wish */
}

.site-footer p {
    margin: 0; /* override any default margin */
}

.site-footer a.instagram-link {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

.site-footer a.instagram-link:hover {
    color: #ccc;
}

/*
	FAQ SECTION
*/

section.faq{
    padding: 0px 20px;
}

.faq {
	text-align: center;
	background: transparent;
}

.faq .container {
	background: #f2f2f2;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px 30px;
	border-radius: 20px;
	position: relative;
	z-index: 2;
}

.faq .container::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: #f2f2f2;
	filter: blur(10px);
	border-radius: 30px;
	z-index: -1;
}

.faq h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.faq-item {
	text-align: left;
	background: #fff;
	border-radius: 12px;
	padding: 15px 20px;
	margin-bottom: 15px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
	font-size: 20px;
	margin-bottom: 8px;
	color: #c62828;
}

.faq-item p {
	font-size: 16px;
	line-height: 1.7;
}

/* VIDEOS SECTION */

.videos {
    text-align: center;
    background: transparent;
}

.videos .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.videos h2 {
    font-size: 46px;
    margin-bottom: 10px;
}

.videos-intro {
    font-size: 18px;
    margin-bottom: 25px;
}

.videos-shell {
    display: flex;
    align-items: center; /* was: stretch */
    gap: 12px;
}

/* Arrows (desktop only) */
.videos-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: #c62828;         /* rood */
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.videos-arrow:hover {
    background: #e64a4a;         /* lichtere rode tint */
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Track with snap scrolling */
.videos-scroller {
    flex: 1 1 auto;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 10%;
    -webkit-overflow-scrolling: touch;
}

/* Optional scrollbar styling */
.videos-scroller::-webkit-scrollbar {
    height: 6px;
}
.videos-scroller::-webkit-scrollbar-track {
    background: transparent;
}
.videos-scroller::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
}

.video-card {
    flex: 0 0 80%;
    max-width: 560px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 16px 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    scroll-snap-align: center;
    text-align: left;
}

.video-card h3 {
    font-size: 24px;
    margin-bottom: 4px;
    color: #c62828;
}

.video-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.video-frame {
    border-radius: 10px;
    overflow: hidden;
}

.video-frame iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    border: none;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .videos-shell {
        gap: 0;
    }

    .videos-arrow {
        display: none;
    }

    .video-card {
        flex-basis: 90%;
    }
}


/* FAQ responsive tweaks */
@media (max-width: 768px) {
	.faq .container {
		padding: 0 15px 25px;
	}

	.faq h2 {
		font-size: 36px;
	}

	.faq-item {
		padding: 12px 15px;
	}
}
