/*
Theme Name: Naarden Pronkt
Author: JdeB Web Solutions
Version: 6.5 - Mobile Gradient & Menu Fix
*/

/* 1. FONTS & VARIABELEN */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&family=Oswald:wght@700&display=swap');

:root {
    --bg-color: #151024;      
    --accent-color: #ffa40e;  
    --text-color: #ffffff;
    --card-bg: rgba(255, 164, 14, 0.08); 
    --card-border: rgba(255, 164, 14, 0.4);
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 2. BASIS INSTELLINGEN */
html { 
    scroll-behavior: smooth; 
    scroll-padding-top: 100px; 
}

body { 
    background-color: var(--bg-color); 
    background-image: 
        radial-gradient(circle at 0% 10%, rgba(255, 164, 14, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 100% 80%, rgba(255, 164, 14, 0.08) 0%, transparent 40%),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIHZpZXdCb3g9IjAgMCA0IDQiPjxnIGZpbGwtb25hY2l0eT0iMC4wNSIgZmlsbD0iI2ZmYTRwZSI+PHBhdGggZD0iTTAgMGgxdjFIMHoiLz48cGF0aCBkPSJNMCAyaDF2MUgwWiIvPjxwYXRoIGQ9Ik0yIDBoMXYxSDJ6Ii8+PHBhdGggZD0iTTIgMmgxdjFIMnoiLz48L2c+PC9zdmc+');
    color: var(--text-color); 
    font-family: var(--font-main); 
    margin: 0; padding: 0; overflow-x: hidden; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 100px 0; position: relative; }

/* 3. TYPOGRAFIE */
h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    color: var(--accent-color); 
    text-transform: uppercase; 
    text-align: center; 
    margin-top: 0;
    letter-spacing: 1px;
}

h1 { font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 700; margin-bottom: 50px; text-shadow: 0 0 20px rgba(255,164,14,0.3); }
h2 { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: 30px; }
h3 { font-size: 1.5rem; margin-bottom: 20px; }

p, li, span { font-family: var(--font-main); font-weight: 300; line-height: 1.7; }

a { font-family: var(--font-main); font-weight: 600; text-decoration: none; color: var(--accent-color); transition: var(--transition); }
a:hover { color: #ffffff; text-shadow: 0 0 10px rgba(255,164,14,0.6); }

strong { font-weight: 600; color: var(--accent-color); }

.text-center { text-align: center !important; }

/* 4. SUBTIELE SECTIE DIVIDERS (Fading Glow Lines) */
.bg-dark { 
    background: rgba(255, 164, 14, 0.03); 
    position: relative;
}

.bg-dark::before, .bg-dark::after {
    content: ''; position: absolute; left: 10%; width: 80%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,164,14,0.4), transparent);
    pointer-events: none;
}
.bg-dark::before { top: 0; }
.bg-dark::after { bottom: 0; }

/* 5. HEADER & NAV */
.main-header { 
    padding: 20px 0; border-bottom: 1px solid rgba(255,164,14,0.15); 
    position: sticky; top: 0; background: rgba(21, 16, 36, 0.96); 
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); 
    z-index: 999; transition: top 0.4s ease;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 55px; width: auto; transition: var(--transition); }

.main-navigation ul { list-style: none; display: flex; gap: 35px; margin: 0; padding: 0; }
.main-navigation a { 
    color: #fff; font-weight: 600; font-size: 0.85rem; 
    text-transform: uppercase; letter-spacing: 1.5px; 
    text-decoration: none; 
}
.main-navigation a:hover { color: var(--accent-color); text-shadow: none; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.bar { display: block; width: 28px; height: 2px; background: var(--accent-color); margin: 6px 0; border-radius: 2px; }

/* 6. HERO */
.hero-header { position: relative; width: 100%; line-height: 0; }
.img-responsive { width: 100%; height: auto; display: block; object-fit: cover; }
.hero-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 80px;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

/* 7. INFO BOXES */
.info-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-box-modern { 
    background: rgba(255, 255, 255, 0.03); border: 1px solid var(--card-border); 
    border-radius: 24px; padding: 50px; transition: var(--transition);
}
.info-box-modern:hover { transform: translateY(-8px); border-color: var(--accent-color); background: rgba(255, 164, 14, 0.06); }
.info-list p { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 18px 0; margin: 0; }

/* 8. ARTIESTEN */
.artiesten-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.artiesten-dag { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 24px; padding: 45px; }
.artiesten-lijst { list-style: none; padding: 0; margin-top: 25px; }
.artiesten-lijst li { 
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); 
    font-size: 1.3rem; text-align: center; transition: var(--transition); 
}
.artiesten-lijst li:hover { color: var(--accent-color); transform: scale(1.05); letter-spacing: 1px; }

/* 9. TICKETS */
.grid-tickets { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.ticket-item { 
    background: linear-gradient(145deg, rgba(255,164,14,0.1), rgba(21,16,36,0.95)); 
    padding: 40px; border-radius: 24px; border: 1px solid var(--card-border); text-align: center; 
    position: relative; overflow: hidden; transition: var(--transition);
    display: flex; flex-direction: column; justify-content: space-between;
}
.ticket-item::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg); transition: 0.8s;
}
.ticket-item:hover::before { left: 150%; }
.ticket-item:hover { border-color: var(--accent-color); transform: scale(1.02); }

.ticket-item h4 { color: #ffffff; font-size: 1.4rem; margin-bottom: 5px; }
.price { font-family: var(--font-heading); font-size: 3rem; color: var(--accent-color); margin: 5px 0 0 0; line-height: 1.1; }
.ticket-extra { font-size: 0.8rem; font-style: italic; color: rgba(255, 255, 255, 0.5); margin-top: 5px; margin-bottom: 25px; }

.btn-black { 
    background: var(--accent-color); color: #151024; padding: 20px 40px; 
    border-radius: 60px; display: inline-block; font-weight: 800; 
    text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); 
    text-decoration: none; 
}
.btn-black:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(255,164,14,0.3); color: #151024; text-shadow: none; }

/* 10. FAQ ACCORDION */
.faq-wrapper { max-width: 850px; margin: 0 auto; }
.faq-item { 
    border: 1px solid rgba(255, 164, 14, 0.15); 
    border-radius: 16px; 
    margin-bottom: 15px; 
    background: rgba(255, 255, 255, 0.02); 
    transition: var(--transition); 
    overflow: hidden; 
}
.faq-item:hover { border-color: rgba(255, 164, 14, 0.4); }
.faq-item.active { 
    border-color: var(--accent-color); 
    background: rgba(255, 164, 14, 0.05); 
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.faq-question { display: flex; justify-content: space-between; padding: 20px 25px; cursor: pointer; align-items: center; }
.faq-question h4 { margin: 0; font-size: 1.1rem; color: #fff; text-align: left !important; }
.faq-answer { display: none; padding: 0 25px 20px 25px; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.faq-item.active .faq-answer { display: block; }
.faq-icon { color: var(--accent-color); font-size: 1.5rem; font-weight: 300; transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* 11. VIDEO & LOCATIE */
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 24px; overflow: hidden; border: 1px solid var(--card-border); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.maps-container { 
    border-radius: 24px; 
    overflow: hidden; 
    border: 2px solid var(--card-border); 
    height: 450px; 
    width: 100%; 
}
.maps-container iframe { 
    width: 100% !important; 
    height: 100% !important; 
    border: 0; 
    display: block; 
}

/* 12. FOOTER */
.site-footer { 
    border-top: 1px solid rgba(255,164,14,0.15); 
    background: rgba(255, 164, 14, 0.02); 
    margin-top: 60px; 
    padding-top: 60px; 
}
.site-footer a { color: var(--accent-color); transition: var(--transition); text-decoration: none; }
.site-footer a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,164,14,0.6); }

.sub-footer { 
    text-align: center; 
    padding: 30px 20px; 
    opacity: 0.6; 
    font-size: 0.85rem; 
    border-top: 1px solid rgba(255,164,14,0.1); 
    margin-top: 40px; 
}
.sub-footer a { color: #fff; text-decoration: none; }
.sub-footer a:hover { color: var(--accent-color); }

/* 13. MOBIEL (RESPONSIVE) */
.sticky-mobile-cta { display: none; }

@media (max-width: 768px) {
    /* FIX: Gradient bij Hero kleiner maken voor mobiel */
    .hero-header::after { height: 30px; } 

    .menu-toggle { display: block; }
    .main-navigation { 
        display: none; position: absolute; top: 100%; left: 0; width: 100%; 
        background: rgba(21, 16, 36, 0.98); padding-bottom: 30px; 
    }
    .main-navigation.active { display: block; }
    .main-navigation ul { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; 
        padding-top: 20px;
    }
    .info-grid-2, .artiesten-grid-2 { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
    
    .sticky-mobile-cta { 
        display: block !important; position: fixed !important; bottom: 0 !important; left: 0 !important; 
        width: 100% !important; background: rgba(21,16,36,0.98) !important; backdrop-filter: blur(15px); 
        padding: 15px 25px !important; z-index: 2147483647 !important; 
        border-top: 2px solid var(--accent-color) !important; box-sizing: border-box !important;
    }
    .sticky-mobile-cta .btn-black { width: 100%; margin: 0; padding: 16px; font-size: 1rem; }
    body { padding-bottom: 90px !important; }

    /* ==========================================================================
   TICKET VOLGORDE OP MOBIEL (1. Weekend, 2. Vrijdag, 3. Zaterdag)
   ========================================================================== */
@media (max-width: 768px) {
    .grid-tickets {
        display: flex !important;
        flex-direction: column;
        gap: 40px; /* Zorgt voor de juiste tussenruimte */
    }
    
    /* Het 3e blok (Weekend) zetten we op positie 1 */
    .grid-tickets .ticket-column:nth-child(3) { 
        order: 1; 
    }
    
    /* Het 1e blok (Vrijdag) zetten we op positie 2 */
    .grid-tickets .ticket-column:nth-child(1) { 
        order: 2; 
    }
    
    /* Het 2e blok (Zaterdag) zetten we op positie 3 */
    .grid-tickets .ticket-column:nth-child(2) { 
        order: 3; 
    }
}
}