/* --- Basis Instellingen & Kleuren --- */
:root {
    --bg-dark: #000000;
    --bg-lighter: #0a0a0a;
    --primary-purple: #8b1c8a;
    --purple-hover: #a322a2;
    --silver: #e0e0e0;
    --text-light: #c4c4c4;
    --border-gray: #333333;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-gray);
    border-radius: 5px;
    border: 2px solid var(--bg-dark); 
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    min-height: 100dvh; 
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--silver);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-title {
    margin-bottom: 15px; 
}

.silver-text {
    color: #ffffff;
    text-shadow: 0px 2px 4px rgba(255,255,255,0.3); 
}

.glow-divider {
    width: 250px; 
    height: 2px; 
    margin: 10px auto 15px auto; 
    background: linear-gradient(to right, transparent, var(--primary-purple), transparent);
    box-shadow: 0 0 10px rgba(139, 28, 138, 0.8), 0 0 20px rgba(139, 28, 138, 0.5);
    border-radius: 50%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
    height: 80px;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 12px; 
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 0.75rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover,
.nav-links li a:active,
.nav-links li a.active-link {
    color: var(--primary-purple);
}

.btn-ticket {
    background-color: var(--primary-purple);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(139, 28, 138, 0.3);
    display: inline-block;
    line-height: normal;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-ticket:hover {
    background-color: var(--purple-hover);
    box-shadow: 0 0 25px rgba(139, 28, 138, 0.6);
}

/* Container om de knoppen perfect naast elkaar te tonen met gelijke hoogtes */
.card-buttons {
    display: flex;
    gap: 10px;
    align-items: stretch; /* Zorgt voor exact dezelfde hoogte als de ticket-knop */
    margin-top: 15px;
}

.card-buttons .btn-ticket {
    margin-top: 0;
}

.btn-calendar {
    background-color: transparent;
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-calendar:hover {
    background-color: var(--primary-purple);
    color: #fff;
    box-shadow: 0 0 15px rgba(139, 28, 138, 0.4);
}

.btn-calendar-small {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid var(--border-gray);
    color: var(--text-light);
    border-radius: 4px;
    padding: 4px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-calendar-small:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(139, 28, 138, 0.3);
}

.btn-small { padding: 8px 16px; font-size: 0.9rem; margin-top: 15px; }

.page-wrapper {
    flex: 1 0 auto; 
    padding: 90px 10% 30px 10%; 
    text-align: center;
    width: 100%; 
    box-sizing: border-box;
}

.section-dark { background-color: var(--bg-dark); }
.section-light-dark { background-color: var(--bg-lighter); }

.intro-text { 
    max-width: 800px; 
    margin: 0 auto 15px auto; 
    font-size: 1.05rem; 
    color: var(--text-light); 
}

.home-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    padding-top: 90px; 
    padding-bottom: 10px;
}

.home-hero-img {
    width: 100%;
    max-width: 600px;
    max-height: 32vh; 
    object-fit: contain; 
    margin-bottom: 20px;
}

.pricing-box {
    background-color: #050505;
    border: 1px solid var(--primary-purple);
    max-width: 650px; 
    margin: 0 auto 50px auto; 
    padding: 12px 25px; 
    border-radius: 8px; 
    box-shadow: 0 0 15px rgba(139, 28, 138, 0.1);
    text-align: center; 
}

.pricing-text { font-size: 0.85rem; color: var(--text-light); margin-bottom: 5px; line-height: 1.4; }
.price-tag { font-size: 1.8rem; color: var(--silver); font-weight: bold; font-family: 'Playfair Display', serif; }
.per-person { font-size: 0.85rem; font-weight: normal; color: var(--text-light); font-family: 'Montserrat', sans-serif; letter-spacing: 1px; text-transform: none; }

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; 
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.agenda-card, .feature-box {
    background-color: #080808;
    padding: 20px; 
    border-radius: 8px; 
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; 
    width: 100%; 
    box-sizing: border-box;
}

.feature-box {
    border-bottom: 4px solid var(--primary-purple); 
    text-align: left; 
}

.agenda-card:hover, .feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 0 35px rgba(139, 28, 138, 0.8); 
}

.btn-meer-info {
    position: absolute;
    top: -15px; 
    left: 20px; 
    background-color: #080808; 
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-meer-info:hover {
    background-color: var(--primary-purple);
    color: #fff;
    box-shadow: 0 0 10px rgba(139, 28, 138, 0.4);
}

.agenda-date { color: var(--primary-purple); font-size: 1.5rem; font-weight: bold; margin-bottom: 10px; margin-top: 10px;}

.save-the-date-section {
    margin-top: 60px; 
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.save-the-date-section h3 {
    color: var(--silver);
    font-size: 1.5rem;
}

.save-the-date-section p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.future-dates-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.future-date {
    background-color: #050505;
    border: 1px solid #333333;
    color: var(--silver);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.future-date:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
    box-shadow: 0 0 15px rgba(139, 28, 138, 0.5);
}

.dresscode-categories { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap; 
    margin-top: 10px; 
}

.category { 
    text-align: left; 
    background: rgba(255,255,255,0.02); 
    padding: 20px 30px; 
    border-radius: 8px; 
    border-left: 4px solid #4CAF50; 
    min-width: 280px; 
}

.category.donts { border-left: 4px solid #F44336; }

.category ul { list-style: none; margin-top: 10px; }
.category ul li { margin-bottom: 6px; position: relative; padding-left: 25px; }
.category ul li::before { content: '✓'; color: #4CAF50; position: absolute; left: 0; font-weight: bold; }
.category.donts ul li::before { content: '✕'; color: #F44336; position: absolute; left: 0; font-weight: bold; }


.club-features { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    max-width: 1100px; 
    margin: 0 auto; 
}

.club-partner-logo {
    max-width: 220px;
    height: auto;
    margin: 0 auto 15px auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

.club-partner-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px var(--primary-purple));
}

.feature-img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #1a1a1a;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px; 
    margin: 0 auto 50px auto;
}

.promo-video {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #333333;
    background-color: #050505;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.promo-video:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 25px rgba(139, 28, 138, 0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1200px; 
    margin: 10px auto 10px auto; 
    width: 100%;
}

.contact-column {
    display: flex;
    flex-direction: column;
}

.contact-box-height {
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 20px;
}

.right-col-gap {
    gap: 20px;
}

.flex-center-box {
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding: 15px;
}

.contact-header {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    color: var(--primary-purple); 
    text-transform: uppercase; 
    margin-bottom: 10px; 
    font-size: 1.1rem;
}

.email-link {
    color: var(--silver); 
    font-size: 1.2rem; 
    font-weight: 600; 
    text-decoration: none; 
    display: block; 
    margin-top: 5px;
}

.bold-link {
    color: var(--text-light); 
    text-decoration: none; 
    font-weight: 600;
}

.fetlife-links-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.center-row {
    justify-content: center;
}

.contact-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.fetlife-row, .spotify-link-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spotify-link-row {
    justify-content: center;
    margin-bottom: 15px;
}

.spotify-player-container {
    border: 2px solid var(--border-gray); 
    border-radius: 14px;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.spotify-player-container iframe {
    width: 100% !important;
    max-width: 100%;
    display: block; 
    transition: height 0.3s ease;
}

.spotify-player-container:hover {
    border-color: var(--primary-purple); 
    box-shadow: 0 0 25px rgba(139, 28, 138, 0.6);
    transform: translateY(-3px);
}

.feature-box a { transition: color 0.3s ease, text-shadow 0.3s ease; }
.feature-box a:hover {
    color: var(--primary-purple) !important;
    text-shadow: 0 0 10px rgba(139, 28, 138, 0.5);
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #0a0a0a;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 95%; /* Iets breder voor kleine schermen */
    max-width: 850px; /* VERHOOGD: Was 650px, nu meer ruimte voor de widget */
    border: 1px solid var(--primary-purple);
    border-radius: 8px; 
    padding: 5px;
}

.modal-scroll-area::-webkit-scrollbar-track { background: #0a0a0a; }
.modal-scroll-area::-webkit-scrollbar-thumb { border: 2px solid #0a0a0a; }

.close-btn {
    position: absolute;
    top: -15px; right: 20px; 
    width: 40px; height: 35px;
    border-radius: 4px; 
    background-color: #0a0a0a;
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3010;
    transition: 0.3s ease;
}

.close-btn:hover { 
    background-color: var(--primary-purple); 
    color: #fff; 
    box-shadow: 0 0 10px rgba(139, 28, 138, 0.4);
}

.modal-scroll-area {
    padding: 30px 20px; /* Iets minder zij-padding voor maximale widget ruimte */
    max-height: 90vh;
    overflow-y: auto;
}

.info-text-body { text-align: left; color: var(--text-light); line-height: 1.8; }

.btn-modal-link {
    display: inline-block;
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: 4px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-top: 15px;
    transition: 0.3s ease;
}

.btn-modal-link:hover {
    background-color: var(--primary-purple);
    color: #fff;
    box-shadow: 0 0 10px rgba(139, 28, 138, 0.4);
}

.hamburger { display: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 3px; background: var(--silver); margin: 6px; }

@media (max-width: 768px) {
    .page-wrapper { padding: 80px 10px 20px 10px; }
    
    .nav-logo-img { height: 45px; } 
    .navbar .logo { order: 1; }

    .navbar .btn-ticket {
        position: static; 
        order: 2; 
        margin-left: auto; 
        margin-right: 30px; 
        padding: 8px 12px; 
        font-size: 0.75rem;
        z-index: 1001;
    }

    .hamburger { 
        display: block; 
        order: 3; 
    }

    .nav-links { 
        display: none; 
        width: 280px; 
        position: absolute; 
        top: 80px; 
        right: 0; 
        background: rgba(10, 10, 10, 0.98); 
        flex-direction: column; 
        align-items: flex-end; 
        padding: 10px 20px 25px 20px; 
        border-left: 1px solid var(--primary-purple); 
        border-bottom: 1px solid var(--primary-purple); 
        box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.9); 
        border-bottom-left-radius: 8px; 
    }
    
    .nav-links.active { display: flex; }
    .nav-links li a { font-size: 1.2rem; padding: 12px 0; }

    .home-wrapper { padding-top: 80px; padding-bottom: 10px; }
    .home-hero-img { width: 95%; max-height: 40vh; margin-bottom: 15px; }
    .home-wrapper .page-title { font-size: 1.2rem; }
    
    .agenda-card .btn-ticket { position: static; width: 100%; padding: 10px 20px; }
    
    /* Contact Pagina Mobiel Fix */
    .contact-grid { 
        display: flex; 
        flex-direction: column-reverse; 
        gap: 20px; 
        width: 100%;
        margin: 0;
    }
    
    /* Spotify Player Mobiel Fix */
    .spotify-player-container {
        padding: 2px; 
    }
    .spotify-player-container iframe {
        height: 80px !important; 
    }

    /* Dresscode Mobiel Fix */
    .dresscode-categories {
        padding: 0 15px;
    }
    .category {
        min-width: 100%; 
    }
}

footer { 
    flex-shrink: 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px; 
    border-top: 1px solid #1a1a1a; 
    background-color: var(--bg-dark); 
    height: 90px; 
    width: 100%; 
}

.fetlife-badge {
    height: 40px; 
    width: auto;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.fetlife-badge:hover {
    transform: scale(1.05);
}

/* --- Extra voor Woordzoeker Pagina --- */
.woordzoeker-box {
    background-color: #080808;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    border-bottom: 4px solid var(--primary-purple);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 10px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.woordzoeker-box:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 35px rgba(139, 28, 138, 0.8);
}