/* KHT Website - Versie 2.0 - Nieuwe CSS */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --kht-dark-blue-1: #0a1128;
    --kht-dark-blue-2: #1a2340;
    --kht-gold-1: #D4AF37;
    --kht-gold-2: #C9A961;
    --kht-white: #ffffff;
    --kht-text-light: #e8e8e8;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: radial-gradient(ellipse at top center, #1a1d5e 0%, #0e0f4d 40%, #08092e 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px; /* Ruimte voor fixed navigation */
}

/* LEVEL 3: Shimmer overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.04) 50%, transparent 100%);
    background-size: 400% 400%;
    animation: luxuryShimmer 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Royal pattern background - Exclusive diamond lattice */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
    background: 
        /* Fijne diamant ruiten */
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.6) 100px,
            rgba(212, 175, 55, 0.6) 101px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(212, 175, 55, 0.6) 100px,
            rgba(212, 175, 55, 0.6) 101px
        );
    filter: blur(0.3px);
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    z-index: 0;
    overflow: hidden;
}

@keyframes luxuryShimmer {
    0%, 100% { 
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* Container max-width - BELANGRIJK voor layout */
.kht-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1600px) {
    .kht-container {
        max-width: 1200px;
    }
}

@media (min-width: 1920px) {
    .kht-container {
        max-width: 1400px;
    }
}

/* Logo Pattern Background - UITGESCHAKELD (was niet mooi met kaders) */
.crown-pattern {
    display: none;
}

/* Als je het patroon toch wilt gebruiken, verwijder de 'display: none' en uncomment dit:
.crown-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.015;
    pointer-events: none;
    background-image: url('logo-patroon.png');
    background-size: 350px 350px;
    background-repeat: repeat;
    background-position: 0 0;
    z-index: 0;
}
*/

/* Container */
.kht-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ensure content doesn't get too wide */
@media (min-width: 1600px) {
    .kht-container {
        max-width: 1200px;
    }
}

@media (min-width: 1920px) {
    .kht-container {
        max-width: 1400px;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background-color: transparent !important;
}

nav.scrolled {
    background-color: rgba(10, 17, 40, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Zorg dat nav altijd donkerblauw is, nooit goud */
#mainNav {
    background-color: rgba(10, 17, 40, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10008;
}

#mainNav.scrolled {
    background-color: rgba(10, 17, 40, 0.95) !important;
}

/* Zorg dat nav-container geen goudkleurige achtergrond heeft */
.nav-container {
    background-color: transparent !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-height: 70px;
    position: relative;
    z-index: 10009;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 450px;
    height: 100vh;
    background: rgba(10, 17, 40, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 6rem 2.5rem 2rem;
    gap: 0;
    transition: right 0.4s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    z-index: 10010;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    width: 100%;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 1.05rem !important;
    letter-spacing: 0.15em;
    font-weight: 400;
    transition: all 0.3s ease;
    text-align: left;
    display: block;
    flex-shrink: 0;
}

.nav-links a:hover {
    color: #D4AF37 !important;
    padding-left: 1.5rem;
    background-color: rgba(212, 175, 55, 0.1) !important;
    border-left: 3px solid #D4AF37;
}

/* Navigation Dropdown - Hamburger Menu Style */
.nav-dropdown {
    width: 100%;
    position: relative;
    display: block;
    flex-shrink: 0;
}

.nav-dropdown-toggle {
    width: 100%;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    color: #ffffff !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-size: 1.05rem !important;
    letter-spacing: 0.15em;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-dropdown-toggle:hover {
    color: #D4AF37 !important;
    padding-left: 1.5rem;
    background-color: rgba(212, 175, 55, 0.1) !important;
    border-left: 3px solid #D4AF37;
}

.nav-dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.3s ease;
    color: #ffffff !important;
    flex-shrink: 0;
}

.nav-dropdown.active .nav-dropdown-toggle {
    color: #D4AF37 !important;
}

.nav-dropdown.active .nav-dropdown-toggle::after {
    transform: rotate(180deg);
    color: #D4AF37 !important;
}

.nav-dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(14, 15, 77, 0.5);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    flex-direction: column;
}

.nav-dropdown.active .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
    max-height: 500px;
    padding: 0.5rem 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background-color: transparent !important;
    flex-shrink: 0;
}

.nav-dropdown-menu a:hover {
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.15) !important;
    border-left-color: #D4AF37;
    padding-left: 2.5rem;
}

.btn-primary {
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%) !important;
    color: #0a1128 !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

/* Hamburger Menu Button - ALTIJD ZICHTBAAR EN OPVALLEND */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #D4AF37;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 8px;
    position: relative;
    z-index: 10011;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
}

.hamburger-menu:hover {
    background: rgba(212, 175, 55, 0.25);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.hamburger-menu.active {
    background: rgba(212, 175, 55, 0.3);
    border-color: #F4E4C1;
}

.hamburger-menu span {
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== LEVEL 3: GOUDEN ACCENT LIJNEN ===== */

/* Gouden lijn bovenaan navbar */
nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37 50%, transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Gouden lijn onderaan navbar */
nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Verticale gouden lijn links */
.kht-container::before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    pointer-events: none;
}

/* Verticale gouden lijn rechts */
.kht-container::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    z-index: 1000;
    pointer-events: none;
}

/* ===== HERO SECTION - ULTRA COMPACT ===== */
.kht-hero {
    padding-top: 4.5rem;
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Title - Nog kleiner */
.kht-title {
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
    padding: 0 2rem;
}

.kht-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 40px rgba(212, 175, 55, 0.7),
        0 0 80px rgba(212, 175, 55, 0.5),
        0 0 120px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

/* Banner block - FULL WIDTH */
.kht-banner-block {
    width: calc(100% + 8rem);
    position: relative;
    margin-left: -4rem;
    margin-right: -4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 0;
}

/* Banner wrapper - transparant zodat gradient doorloopt */
.kht-banner-wrapper {
    position: relative;
    width: 100%;
    background: transparent;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 0.5rem;
}

/* Banner image */
.kht-banner-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Founded text - Compact */
.kht-founded {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-align: center;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.7),
        0 0 60px rgba(212, 175, 55, 0.5),
        0 0 90px rgba(212, 175, 55, 0.3);
    font-weight: 600;
    padding: 0 2rem;
}

/* Events Section - EXTRA Compact, events tegen gouden lijn */
.events-section {
    position: relative;
    padding: 0 0 2rem 0;
    background: transparent;
    z-index: 1;
}

/* Dikke gouden lijn boven events */
.events-gold-line {
    height: 12px;
    width: 100%;
    background: linear-gradient(90deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.9),
        0 0 80px rgba(212, 175, 55, 0.6),
        0 0 120px rgba(212, 175, 55, 0.4);
    margin-bottom: 0;
}

.events-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    padding-top: 1.5rem;
}

/* Events Grid - 3 cards naast elkaar */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Event Card - Compact met eventnaam */
.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 0.5rem;
    padding: 1.25rem 0.75rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

/* Gouden accent lijn bovenaan */
.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4E4C1, #D4AF37);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 16px 64px rgba(212, 175, 55, 0.5),
        0 0 100px rgba(212, 175, 55, 0.3);
}

/* Event card content - Extra compact */
.event-day {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.event-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4);
    margin: 0.25rem 0;
}

.event-month {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: #555;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.event-time {
    font-size: 0.7rem;
    color: #777;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Event titel - NIEUW, subtiel onderaan */
.event-title {
    font-size: 0.65rem;
    color: #999;
    font-weight: 500;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    line-height: 1.3;
}

/* Featured Concert - Zelfde hoogte, compacter */
.featured-concert {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(197, 160, 89, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0e0f4d;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.featured-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 25px rgba(212, 175, 55, 0.6),
        0 0 50px rgba(212, 175, 55, 0.4);
    font-weight: 700;
    line-height: 1.2;
}

.featured-content {
    color: #d1d5db;
    line-height: 1.5;
    font-size: 0.8rem;
    max-height: 120px;
    overflow: hidden;
}

.featured-content p {
    margin-bottom: 0.6rem;
}

.featured-description {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 0.9rem;
}

.featured-description p {
    margin-bottom: 0.75rem;
}

.featured-description h1,
.featured-description h2,
.featured-description h3 {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.featured-description h1 { font-size: 1.3rem; }
.featured-description h2 { font-size: 1.1rem; }
.featured-description h3 { font-size: 1rem; }

.featured-description strong,
.featured-description em {
    color: #D4AF37;
}

.featured-description ul,
.featured-description ol {
    margin-left: 1.5rem;
    padding-left: 0;
    list-style-position: outside;
    margin-bottom: 0.75rem;
}

.featured-description li {
    margin-bottom: 0.4rem;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
}

.featured-description ul li::before {
    content: "•";
    color: #D4AF37;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.featured-description ol li::marker {
    color: #D4AF37;
    font-weight: bold;
}

.featured-description a {
    color: #D4AF37;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.featured-description a:hover {
    color: #F4E4C1;
}

/* Photo Selector Styles */
.btn-select-photos,
.btn-upload-photos {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn-select-photos:hover,
.btn-upload-photos:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(197, 160, 89, 0.3) 100%);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.photo-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 1.5rem 0;
}

.photo-selector-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-selector-item:hover {
    border-color: #D4AF37;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.photo-selector-item.selected {
    border-color: #D4AF37;
    border-width: 3px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.photo-selector-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.photo-selector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-selector-item:hover .photo-selector-overlay,
.photo-selector-item.selected .photo-selector-overlay {
    opacity: 1;
}

.photo-selector-check {
    color: #D4AF37;
    font-size: 2rem;
    font-weight: bold;
    background: rgba(10, 17, 40, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #D4AF37;
}

.featured-date {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Divider */
.divider-section {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.decorative-line {
    height: 1px;
    width: 16rem;
    background: linear-gradient(to right, transparent, #D4AF37, transparent);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatEmblem {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

/* ===== NIEUWE SECTIES CSS ===== */
/* Voeg dit toe aan het einde van kht-style-level3.css, voor de responsive sectie */

/* Container max-width voor betere layout */
.kht-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1600px) {
    .kht-container {
        max-width: 1200px;
    }
}

@media (min-width: 1920px) {
    .kht-container {
        max-width: 1400px;
    }
}

/* Uitgelicht Nieuws Section */
.featured-news-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
}

.featured-news-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-news-title-wrapper {
    display: inline-block;
    position: relative;
}

.featured-news-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
    position: relative;
}

.featured-news-underline {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 20%, #F4E4C1 50%, #D4AF37 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    margin: 0 auto;
    max-width: 300px;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-news-card {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.featured-news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.featured-news-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 
        0 8px 40px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.2);
}

.featured-news-card:hover::before {
    opacity: 1;
}

.featured-news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    z-index: 2;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-news-card:hover .featured-news-image img {
    transform: scale(1.1);
}

.featured-news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    z-index: 3;
}

.featured-news-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.featured-news-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-news-card:hover .featured-news-card-title {
    color: #F4E4C1;
}

.featured-news-date {
    color: rgba(212, 175, 55, 0.8);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.featured-news-excerpt {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.featured-news-link {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: inline-block;
    transition: all 0.3s ease;
}

.featured-news-card:hover .featured-news-link {
    color: #F4E4C1;
    transform: translateX(5px);
}

/* Over de Vereniging Section */
.about-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 3rem;
}

.about-box {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    background-image: url('uploads/groot-harmonieorkest/KHT-concert.avif');
    background-size: 150% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
    min-height: 400px;
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.75) 0%, rgba(14, 15, 77, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-box:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 
        0 8px 40px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.2);
}

.about-box:hover::before {
    opacity: 1;
}

.about-header {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #F4E4C1;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    
    /* Emotionele, pakkende styling */
    background: linear-gradient(
        135deg,
        #F4E4C1 0%,
        #D4AF37 30%,
        #F4E4C1 60%,
        #D4AF37 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    
    /* Subtiele text shadow voor diepte */
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2);
    
    /* Decoratieve elementen */
    position: relative;
}

.about-header::before,
.about-header::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(212, 175, 55, 0.4);
    animation: starPulse 3s ease-in-out infinite;
}

.about-header::before {
    left: -2rem;
}

.about-header::after {
    right: -2rem;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes starPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.1);
    }
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Onze Onderdelen Section */
.departments-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-width: 0;
    justify-items: center;
}

/* Zorg dat alle items op één rij blijven */
.departments-grid .department-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.department-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
    display: block;
    color: inherit;
    min-width: 0; /* Voorkom overflow */
    flex-shrink: 1;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.department-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.department-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(14, 15, 77, 0.9), transparent);
}

.department-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.department-card:hover .department-image img {
    transform: scale(1.1);
}

.department-content {
    padding: 0.85rem 0.6rem;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 0 0.5rem 0.5rem;
}

.department-title {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: #0a1128;
    margin-bottom: 0.6rem;
    min-height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    line-height: 1.2;
    padding: 0 0.2rem;
    word-wrap: break-word;
    hyphens: auto;
}

.btn-read-more {
    padding: 0.4rem 1rem;
    background: rgba(10, 17, 40, 0.8);
    color: #D4AF37;
    border: 2px solid #0a1128;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-read-more:hover {
    background: rgba(10, 17, 40, 1);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Nieuws & Tijdlijn Section - Full width container with horizontal cards */
.news-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.news-timeline-wrapper {
    position: relative;
    padding: 3rem 0;
    width: 100%;
    max-width: none;
}

/* Horizontal timeline line - full container width */
.news-timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #D4AF37 5%, 
        #F4E4C1 20%,
        #D4AF37 50%,
        #F4E4C1 80%, 
        #D4AF37 95%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-50%);
    z-index: 0;
}

.news-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    margin: 0 80px;
}

.news-grid::-webkit-scrollbar {
    display: none;
}

/* Horizontal news card - photo left (full height), text right (vertical layout) */
.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    text-decoration: none;
    color: inherit;
    min-width: 380px;
    max-width: 380px;
    height: 280px;
    flex-shrink: 0;
    position: relative;
    border: 2px solid #D4AF37;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    border-color: #F4E4C1;
}

/* Photo on the left - full height */
.news-image {
    width: 140px;
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    padding: 1rem;
}

.news-image-placeholder .placeholder-embleem {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 60px;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    margin-bottom: 0.5rem;
}

.news-image-placeholder .placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    text-align: center;
}

/* Date box overlay on photo - HIDDEN */
.news-date {
    display: none;
}

/* Content on the right - vertical stacking */
.news-content-card {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    color: #0a1128;
}

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #0a1128;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-published-date {
    font-size: 0.7rem;
    color: #999;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.news-excerpt {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: auto;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #999;
    padding-top: 0.75rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 0.75rem;
}

/* Navigation arrows - Golden circles with blue arrows */
.timeline-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.timeline-nav:hover {
    box-shadow: 
        0 6px 25px rgba(212, 175, 55, 0.7),
        0 0 40px rgba(212, 175, 55, 0.6),
        inset 0 2px 10px rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.15);
}

.timeline-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.timeline-nav-left {
    left: 0;
}

.timeline-nav-right {
    right: 0;
}

.timeline-nav svg {
    width: 24px;
    height: 24px;
    fill: #0a1128;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.timeline-nav:hover svg {
    fill: #0e0f4d;
}

.news-date {
    background: linear-gradient(135deg, #0a1128 0%, #0e0f4d 100%);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 3px solid #D4AF37;
}

.news-date-box {
    color: #D4AF37;
}

.news-day {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.news-month-year {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.news-content-card {
    padding: 1.5rem;
    color: #0a1128;
}

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #0a1128;
    font-weight: 700;
}

.news-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #999;
}

.news-cta {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-view-all:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* ===== COMPACT HEADER (voor nieuws pagina's) ===== */
.navbar-compact {
    padding: 1rem 0;
    background: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    width: 40px;
    height: auto;
}

.nav-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ===== NIEUWS DETAIL PAGINA ===== */
.article-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #D4AF37 100%);
    padding: 4rem 0;
    text-align: center;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.5),
        inset 0 0 100px rgba(255, 255, 255, 0.1);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #0a1128;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.article-meta {
    font-size: 0.9rem;
    color: #0a1128;
    opacity: 0.8;
}

.meta-divider {
    margin: 0 1rem;
}

.article-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.article-main {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0.5rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    color: #0a1128;
    line-height: 1.8;
    font-size: 1.05rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Video embeds in article content */
.article-content .ql-video,
.news-content-full .ql-video {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* YouTube iframe embeds - container with aspect ratio */
.article-content .ql-video.ql-video-youtube,
.news-content-full .ql-video.ql-video-youtube {
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.article-content .ql-video iframe,
.news-content-full .ql-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Uploaded video tags */
.article-content .ql-video.ql-video-uploaded,
.news-content-full .ql-video.ql-video-uploaded {
    padding-bottom: 0;
    height: auto;
}

.article-content .ql-video video,
.news-content-full .ql-video video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #D4AF37;
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #0a1128 0%, #0e0f4d 100%);
    color: #D4AF37;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-back:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.article-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.sidebar-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #0a1128;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.1em;
}

.recent-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-article-card {
    display: block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.recent-article-card:hover {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.recent-article-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.recent-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-article-content {
    padding: 1rem;
}

.recent-article-title {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #0a1128;
    font-weight: 600;
}

/* ===== VOLLEDIGE TIJDLIJN PAGINA ===== */
.timeline-hero {
    padding: 3rem 0;
    text-align: center;
}

.timeline-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #D4AF37 100%);
    padding: 4rem 0;
    text-align: center;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.5),
        inset 0 0 100px rgba(255, 255, 255, 0.1);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: #0a1128;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.timeline-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.timeline-container {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Timeline Line - Moderne aanpak met flexbox */
.timeline-items {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
    padding-left: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    z-index: 1;
    gap: 2rem;
    min-height: 200px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Line Container - Links naast items */
.timeline-line-wrapper {
    position: relative;
    width: 4px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.5rem;
    align-self: stretch;
}

.timeline-line {
    width: 4px;
    flex: 1;
    min-height: 100%;
    background: linear-gradient(180deg, 
        #D4AF37 0%, 
        #F4E4C1 25%, 
        #D4AF37 50%, 
        #F4E4C1 75%, 
        #D4AF37 100%
    );
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    border-radius: 2px;
    position: relative;
}

/* Timeline Marker - Gouden badge op de lijn */
.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 0 8px rgba(14, 15, 77, 1),
        0 0 30px rgba(212, 175, 55, 0.9),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    z-index: 3;
}

.timeline-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #0a1128;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Connector lijn naar datum box */
.timeline-connector {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, 
        #D4AF37 0%, 
        #F4E4C1 50%, 
        #D4AF37 100%
    );
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    z-index: 1;
    border-radius: 2px;
    pointer-events: none;
}

/* Content area rechts van de timeline */
.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-date-box {
    position: relative;
    margin-bottom: 0;
    margin-left: 0;
    z-index: 2;
}

.timeline-date-content {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #D4AF37 100%);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.timeline-date-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.timeline-date-day {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a1128;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-date-month {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a1128;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(212, 175, 55, 0.2);
    margin-left: 0;
}

.timeline-card:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
    border-color: #D4AF37;
}

.timeline-card-image {
    width: 100%;
    height: 250px;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    padding: 1rem;
}

.timeline-image-placeholder .placeholder-embleem {
    width: auto;
    height: auto;
    max-width: 80px;
    max-height: 80px;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    margin-bottom: 0.5rem;
}

.timeline-image-placeholder .placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    text-align: center;
}

.timeline-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #0a1128;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.timeline-card-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-read-more-timeline {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border: none;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.btn-read-more-timeline:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
}

.timeline-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.featured-star {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    background: #ffffff;
    color: #D4AF37;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.featured-star:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.featured-star.featured-active {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pagination-top {
    margin-bottom: 3rem;
}

.pagination-bottom {
    margin-top: 3rem;
}

.pagination-btn {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    color: #D4AF37;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.pagination-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.pagination-active {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    font-weight: 700;
    border-color: #D4AF37;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.98) 0%, rgba(14, 15, 77, 0.98) 100%);
    padding: 2.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: #D4AF37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #F4E4C1;
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0a1128;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    transform: scale(1.1) translateY(-2px);
}

.decorative-star {
    display: none;
}

/* Copyright Footer */
.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: center;
}

.copyright-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.copyright-embleem {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    position: relative;
}

.copyright-embleem:hover {
    opacity: 1;
}

.login-link-inline {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.copyright-content:hover .login-link-inline {
    opacity: 0.3;
}

.login-link-inline:hover {
    opacity: 0.6 !important;
}

.copyright-text {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-left: 0.5rem;
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.98) 0%, rgba(14, 15, 77, 0.98) 100%);
    margin: 5vh auto;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 1rem;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
    position: relative;
}

.modal-close {
    color: #D4AF37;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.modal-close:hover {
    color: #F4E4C1;
    transform: scale(1.2);
}

.modal-title {
    font-family: 'Cinzel', serif;
    color: #D4AF37;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.1em;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #D4AF37;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    color: #d1d5db;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    color: #d1d5db;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

.form-group small {
    display: block;
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar,
.modal-large::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track,
.modal-large::-webkit-scrollbar-track {
    background: rgba(10, 17, 40, 0.5);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb,
.modal-large::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb:hover,
.modal-large::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #C5A059 0%, #D4AF37 100%);
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    color: #d1d5db;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    color: #d1d5db;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input[type="file"]::file-selector-button {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

.form-group small {
    display: block;
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
    min-height: 1.5rem;
}

.btn-login {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-login:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Responsive voor nieuwe secties */
@media (max-width: 1200px) {
    .departments-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.5rem;
        max-width: 1000px;
    }
    
    .department-title {
        font-size: 0.7rem;
    }
    
    .department-content {
        padding: 0.7rem 0.5rem;
    }
    
    .department-image {
        height: 150px;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 968px) {
    .nav-title {
        font-size: 1rem;
    }
    
    /* Timeline - Tablet */
    .timeline-container {
        padding: 0 1.5rem;
    }
    
    .timeline-items {
        gap: 3rem;
        padding-top: 1rem;
    }
    
    .timeline-item {
        gap: 1.5rem;
    }
    
    .timeline-marker {
        width: 28px;
        height: 28px;
    }
    
    .timeline-marker::before {
        width: 10px;
        height: 10px;
    }
    
    .timeline-connector {
        width: 100px;
        left: 14px;
        top: 14px;
    }
    
    .timeline-date-day {
        font-size: 1.75rem;
    }
}

@media (max-width: 968px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 17, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 10010;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        font-size: 1rem !important;
        text-align: left;
    }
    
    .nav-links a:hover {
        color: #D4AF37 !important;
        padding-left: 1rem;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown-toggle {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .nav-dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(14, 15, 77, 0.5);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin-left: 1rem;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }
    
    .nav-dropdown-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.05);
        font-size: 0.9rem;
    }
    
.nav-links .btn-primary {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.nav-links .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.5);
}
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        max-width: calc(100% - 120px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* KHT Title - Mobile adjustments */
    .kht-title {
        padding: 0 1rem;
    }
    
    .kht-title h1 {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: 0.05em;
    }
    
    /* Events Layout - Mobile Portrait */
    .events-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .event-card {
        padding: 1.5rem 1rem;
    }
    
    .event-number {
        font-size: 2.5rem;
    }
    
    .featured-concert {
        padding: 1.5rem 1.25rem;
    }
    
    .featured-title {
        font-size: 1.2rem;
    }
    
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .department-title {
        font-size: 0.9rem;
        min-height: auto;
    }
    
    .department-content {
        padding: 1rem 0.75rem;
    }
    
    .department-image {
        height: 180px;
    }
    
    .btn-read-more {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .article-hero-title {
        font-size: 2rem;
    }
    
    .timeline-title {
        font-size: 2rem;
    }
    
    /* Timeline - Mobile */
    .timeline-container {
        padding: 0 1rem;
    }
    
    .timeline-line-wrapper {
        width: 3px;
    }
    
    .timeline-line {
        width: 3px;
    }
    
    .timeline-items {
        gap: 2.5rem;
        padding-top: 1rem;
    }
    
    .timeline-item {
        gap: 1rem;
        min-height: 180px;
    }
    
    .timeline-marker {
        width: 24px;
        height: 24px;
        box-shadow: 
            0 0 0 6px rgba(14, 15, 77, 1),
            0 0 20px rgba(212, 175, 55, 0.8);
    }
    
    .timeline-marker::before {
        width: 8px;
        height: 8px;
    }
    
    .timeline-connector {
        width: 80px;
        height: 2px;
        left: 12px;
        top: 12px;
    }
    
    .timeline-date-box {
        margin-bottom: 1rem;
    }
    
    .timeline-date-content {
        padding: 0.75rem 1.25rem;
    }
    
    .timeline-date-day {
        font-size: 1.5rem;
    }
    
    .timeline-date-month {
        font-size: 0.75rem;
    }
    
    .timeline-card {
        padding: 1.25rem;
    }
    
    .timeline-card-image {
        height: 200px;
    }
    
    .timeline-card-title {
        font-size: 1.2rem;
    }
    
    .timeline-card-excerpt {
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .featured-news-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-news-title {
        font-size: 2rem;
    }
    
    /* News Timeline Wrapper - Mobile Slider */
    .news-timeline-wrapper {
        padding: 2rem 0;
        position: relative;
    }
    
    .news-timeline-wrapper::before {
        display: none;
    }
    
    .news-grid {
        flex-direction: row;
        gap: 1.5rem;
        margin: 0 60px;
        padding: 1rem 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .news-card {
        min-width: calc(100% - 3rem);
        max-width: calc(100% - 3rem);
        height: auto;
        flex-direction: column;
        border: 2px solid #D4AF37;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .news-image {
        width: 100%;
        height: 220px;
    }
    
    .news-content-card {
        padding: 1.25rem;
    }
    
    .news-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .news-published-date {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }
    
    .timeline-nav {
        display: flex !important;
        width: 45px;
        height: 45px;
        box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .timeline-nav-left {
        left: 10px;
    }
    
    .timeline-nav-right {
        right: 10px;
    }
    
    .timeline-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-nav:active {
        transform: translateY(-50%) scale(0.9);
    }
    
    .copyright-content {
        flex-direction: column;
        gap: 0.75rem;
        position: relative;
    }
    
    .login-link-inline {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        opacity: 0.4;
        margin-bottom: 0.5rem;
    }
    
    .copyright-embleem {
        order: 2;
    }
    
    .copyright-text {
        order: 3;
        margin-left: 0;
    }
}

/* ============================================
   AGENDA PAGINA STYLES
   ============================================ */

/* Agenda Hero */
.agenda-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 50%, #D4AF37 100%);
    padding: 4rem 0;
    text-align: center;
    box-shadow: 
        0 0 60px rgba(212, 175, 55, 0.5),
        inset 0 0 100px rgba(255, 255, 255, 0.1);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agenda-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.agenda-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: #0a1128;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.agenda-subtitle {
    font-size: 1.1rem;
    color: rgba(10, 17, 40, 0.8);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.agenda-admin-link {
    margin-top: 1.5rem;
}

.btn-admin-events {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-admin-events:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-past-events {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    text-decoration: none;
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-past-events:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

/* Past Events Grid */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.past-event-card {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0.85;
}

.past-event-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
    opacity: 1;
}

.past-event-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.past-event-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.8);
    margin: 0;
    flex: 1;
    letter-spacing: 0.05em;
}

.past-event-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(197, 160, 89, 0.8) 100%);
    color: #0a1128;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.past-event-info {
    margin-bottom: 1.5rem;
}

.past-event-info p {
    color: rgba(209, 213, 219, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.past-event-info strong {
    color: rgba(212, 175, 55, 0.7);
    font-weight: 600;
}

.past-event-description {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.past-event-description p {
    color: rgba(209, 213, 219, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.past-event-actions {
    display: flex;
    gap: 0.75rem;
}

.past-event-actions .btn-view-event {
    flex: 1;
    text-align: center;
}

/* Agenda Section */
.agenda-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.agenda-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Calendar Styles */
.agenda-calendar-wrapper {
    position: sticky;
    top: 2rem;
}

.calendar-container {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-nav {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.calendar-nav:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.calendar-month-year {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    letter-spacing: 0.1em;
    margin: 0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    color: #d1d5db;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.calendar-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.calendar-day.past {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.today {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #D4AF37;
    font-weight: 700;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    border-color: #D4AF37;
    color: #0a1128;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.calendar-day.has-events {
    border-color: #D4AF37;
    border-width: 2px;
}

.calendar-day.has-events::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #D4AF37;
    border-radius: 50%;
}

.calendar-day.has-events[data-event-count]::after {
    width: 6px;
    height: 6px;
}

.calendar-day:not(.empty):not(.past):hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
    transform: scale(1.05);
}

/* Agenda Events */
.agenda-events-wrapper {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.agenda-events-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.agenda-events-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    letter-spacing: 0.1em;
    margin: 0;
}

.agenda-events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agenda-no-events {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(212, 175, 55, 0.7);
    font-style: italic;
}

.agenda-event-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.agenda-event-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Event Type Styling */
.agenda-event-card.event-type-concert {
    border-left: 5px solid #8A2BE2;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    border-right: 1px solid rgba(138, 43, 226, 0.3);
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    background: linear-gradient(90deg, rgba(138, 43, 226, 0.15) 0%, rgba(138, 43, 226, 0.05) 8%, rgba(255, 255, 255, 0.05) 10%);
    position: relative;
}

.agenda-event-card.event-type-concert::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #8A2BE2 0%, #DDA0DD 50%, #8A2BE2 100%);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.agenda-event-card.event-type-concert:hover {
    border-left-color: #DDA0DD;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    transform: translateY(-3px);
}

.agenda-event-card.event-type-concert .agenda-event-title {
    color: #DDA0DD;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.agenda-event-card.event-type-concert .agenda-event-time,
.agenda-event-card.event-type-concert .agenda-event-location {
    color: rgba(221, 160, 221, 0.9);
}

.agenda-event-card.event-type-evenement {
    border-left: 5px solid #FF8C00;
    border-top: 1px solid rgba(255, 140, 0, 0.3);
    border-right: 1px solid rgba(255, 140, 0, 0.3);
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 8%, rgba(255, 255, 255, 0.05) 10%);
    position: relative;
}

.agenda-event-card.event-type-evenement::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #FF8C00 0%, #FFD700 50%, #FF8C00 100%);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.agenda-event-card.event-type-evenement:hover {
    border-left-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
    transform: translateY(-3px);
}

.agenda-event-card.event-type-evenement .agenda-event-title {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.agenda-event-card.event-type-evenement .agenda-event-time,
.agenda-event-card.event-type-evenement .agenda-event-location {
    color: rgba(255, 215, 0, 0.9);
}

/* Event Type Selector */
.event-type-selector {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.8) 0%, rgba(14, 15, 77, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    color: rgba(212, 175, 55, 0.8);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    position: relative;
}

.event-type-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.event-type-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(197, 160, 89, 0.2) 100%);
    border-color: #D4AF37;
    color: #D4AF37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.event-type-btn.event-type-concert {
    border-color: rgba(138, 43, 226, 0.3);
    color: rgba(221, 160, 221, 0.8);
}

.event-type-btn.event-type-concert:hover {
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.6);
    color: #DDA0DD;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.event-type-btn.event-type-concert.active {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(75, 0, 130, 0.3) 100%);
    border-color: #8A2BE2;
    color: #DDA0DD;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

.event-type-btn.event-type-evenement {
    border-color: rgba(255, 140, 0, 0.3);
    color: rgba(255, 215, 0, 0.8);
}

.event-type-btn.event-type-evenement:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.6);
    color: #FFD700;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.event-type-btn.event-type-evenement.active {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.4) 0%, rgba(255, 165, 0, 0.3) 100%);
    border-color: #FF8C00;
    color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
}

.event-type-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid currentColor;
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.event-type-btn.active .event-type-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    border-width: 4px;
    transform: scale(1.15);
    box-shadow: 0 0 25px currentColor, inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.event-type-btn.event-type-concert .event-type-icon-wrapper {
    border-color: rgba(138, 43, 226, 0.5);
    background: rgba(138, 43, 226, 0.1);
}

.event-type-btn.event-type-concert.active .event-type-icon-wrapper {
    border-color: #8A2BE2;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.3) 0%, rgba(75, 0, 130, 0.2) 100%);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.7), inset 0 0 15px rgba(138, 43, 226, 0.2);
}

.event-type-btn.event-type-evenement .event-type-icon-wrapper {
    border-color: rgba(255, 140, 0, 0.5);
    background: rgba(255, 140, 0, 0.1);
}

.event-type-btn.event-type-evenement.active .event-type-icon-wrapper {
    border-color: #FF8C00;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.3) 0%, rgba(255, 165, 0, 0.2) 100%);
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.7), inset 0 0 15px rgba(255, 140, 0, 0.2);
}

.event-type-icon {
    font-size: 2.2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.event-type-btn:hover .event-type-icon {
    transform: scale(1.1);
}

.event-type-btn.active .event-type-icon {
    transform: scale(1.15);
}

.event-type-label {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}


@media (max-width: 768px) {
    .event-type-selector {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-type-btn {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        min-width: auto;
    }
    
    .event-type-icon-wrapper {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .event-type-icon {
        font-size: 1.5rem;
    }
}

.agenda-event-image {
    width: 200px;
    min-width: 200px;
    height: 100%;
    align-self: stretch;
    overflow: hidden;
    background: rgba(212, 175, 55, 0.1);
}

.agenda-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agenda-event-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.agenda-event-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    margin-bottom: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.event-card-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid;
    border-radius: 10px;
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.agenda-event-card.event-type-concert .event-card-type-icon {
    border-color: #8A2BE2;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.25) 0%, rgba(75, 0, 130, 0.15) 100%);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5), inset 0 0 10px rgba(138, 43, 226, 0.2);
}

.agenda-event-card.event-type-concert:hover .event-card-type-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.7);
}

.agenda-event-card.event-type-evenement .event-card-type-icon {
    border-color: #FF8C00;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.25) 0%, rgba(255, 165, 0, 0.15) 100%);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5), inset 0 0 10px rgba(255, 140, 0, 0.2);
}

.agenda-event-card.event-type-evenement:hover .event-card-type-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.7);
}

.agenda-event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.agenda-event-time,
.agenda-event-location {
    font-size: 0.9rem;
    color: rgba(212, 175, 55, 0.8);
}

.agenda-event-description {
    font-size: 0.95rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.agenda-event-description p {
    margin-bottom: 0.5rem;
}

.agenda-event-description ul,
.agenda-event-description ol {
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.agenda-event-description li {
    margin-bottom: 0.25rem;
}

.agenda-event-description strong {
    color: #D4AF37;
    font-weight: 600;
}

.agenda-event-description h1,
.agenda-event-description h2,
.agenda-event-description h3 {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.btn-agenda-detail {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
}

.btn-agenda-detail:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Responsive Agenda */
@media (max-width: 968px) {
    .agenda-layout {
        grid-template-columns: 1fr;
    }
    
    .agenda-calendar-wrapper {
        position: static;
    }
    
    .agenda-event-card {
        flex-direction: column;
    }
    
    .agenda-event-image {
        width: 100%;
        height: 200px;
    }
}

/* ============================================
   EVENT DETAIL PAGINA STYLES
   ============================================ */

/* Event Hero */
.event-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.event-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.event-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 17, 40, 0.3) 50%, rgba(10, 17, 40, 0.95) 100%);
    z-index: 2;
}

.event-hero-no-image {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.98) 0%, rgba(14, 15, 77, 0.98) 100%);
    min-height: 300px;
    padding: 4rem 0;
}

.event-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 3rem 0;
}

.btn-back-to-agenda {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-back-to-agenda:hover {
    color: #F4E4C1;
    transform: translateX(-5px);
}

.event-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.event-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: #d1d5db;
    font-size: 1rem;
}

.event-hero-date,
.event-hero-time,
.event-hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Event Content Section */
.event-content-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.event-content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.event-main-content {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-poster-display {
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.5) 0%, rgba(14, 15, 77, 0.5) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-poster-display img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-poster-display img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.event-description-box {
    margin-bottom: 2rem;
}

.event-section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.event-description {
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.8;
}

.event-description p {
    margin-bottom: 1rem;
}

.event-description ul,
.event-description ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.event-description li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.event-description ul {
    list-style-type: disc;
}

.event-description ol {
    list-style-type: decimal;
}

.event-description ul li::marker {
    color: #D4AF37;
}

.event-description ol li::marker {
    color: #D4AF37;
    font-weight: 600;
}

.event-description strong {
    color: #D4AF37;
    font-weight: 600;
}

.event-description em {
    font-style: italic;
    color: rgba(212, 175, 55, 0.9);
}

.event-description h1,
.event-description h2,
.event-description h3 {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-description h1 {
    font-size: 2rem;
}

.event-description h2 {
    font-size: 1.75rem;
}

.event-description h3 {
    font-size: 1.5rem;
}

.event-description a {
    color: #D4AF37;
    text-decoration: underline;
}

.event-description a:hover {
    color: #F4E4C1;
}

.event-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.event-info-card {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-info-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-align: center;
}

.event-info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.event-info-item:last-of-type {
    border-bottom: none;
}

.event-info-label {
    color: rgba(212, 175, 55, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.event-info-value {
    color: #d1d5db;
    text-align: right;
    font-size: 0.95rem;
}

.event-featured-badge {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(197, 160, 89, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 0.5rem;
    text-align: center;
}

.event-featured-badge span {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.btn-tickets {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-tickets:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Responsive Event Detail */
@media (max-width: 968px) {
    .event-content-layout {
        grid-template-columns: 1fr;
    }
    
    .event-sidebar {
        position: static;
    }
    
    .event-hero-title {
        font-size: 2rem;
    }
    
    .event-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ============================================
   ADMIN EVENTS PAGINA STYLES
   ============================================ */

/* Admin Header */
.admin-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.admin-filter-btn {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #D4AF37;
    text-decoration: none;
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.admin-filter-btn:hover,
.admin-filter-btn.active {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-add-event {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-event:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Admin Events Section */
.admin-events-section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.admin-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.admin-no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(212, 175, 55, 0.7);
    font-size: 1.1rem;
}

.admin-event-card {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.admin-event-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.admin-event-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.admin-event-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin: 0;
    flex: 1;
    letter-spacing: 0.05em;
}

.admin-event-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.admin-event-info {
    margin-bottom: 1.5rem;
}

.admin-event-info p {
    color: #d1d5db;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.admin-event-info strong {
    color: rgba(212, 175, 55, 0.9);
    font-weight: 600;
}

.admin-event-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-view-event,
.btn-edit-event,
.btn-delete-event {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.btn-view-event {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-view-event:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

.btn-edit-event {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
}

.btn-edit-event:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-delete-event {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.btn-delete-event:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

/* Modal Large */
.modal-large {
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 3vh auto;
    padding: 3rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.modal-header h3 {
    margin: 0;
    flex: 1;
}

.modal-body {
    margin-bottom: 2rem;
    min-height: 300px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

/* Quill Editor Styling for Dark Theme */
#eventDescriptionEditor .ql-container,
#quillEditor .ql-container,
#dirigentQuillEditor .ql-container,
#presidentQuillEditor .ql-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    color: #d1d5db;
    min-height: 400px;
}

#eventDescriptionEditor .ql-toolbar,
#quillEditor .ql-toolbar,
#dirigentQuillEditor .ql-toolbar,
#presidentQuillEditor .ql-toolbar {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.95) 0%, rgba(14, 15, 77, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 0.5rem 0.5rem 0 0;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

#eventDescriptionEditor .ql-toolbar .ql-stroke,
#quillEditor .ql-toolbar .ql-stroke,
#dirigentQuillEditor .ql-toolbar .ql-stroke,
#presidentQuillEditor .ql-toolbar .ql-stroke {
    stroke: #D4AF37;
}

#eventDescriptionEditor .ql-toolbar .ql-fill,
#quillEditor .ql-toolbar .ql-fill,
#dirigentQuillEditor .ql-toolbar .ql-fill,
#presidentQuillEditor .ql-toolbar .ql-fill {
    fill: #D4AF37;
}

#eventDescriptionEditor .ql-toolbar button,
#quillEditor .ql-toolbar button,
#dirigentQuillEditor .ql-toolbar button,
#presidentQuillEditor .ql-toolbar button {
    color: #D4AF37;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

#eventDescriptionEditor .ql-toolbar button:hover,
#eventDescriptionEditor .ql-toolbar button.ql-active,
#quillEditor .ql-toolbar button:hover,
#quillEditor .ql-toolbar button.ql-active,
#dirigentQuillEditor .ql-toolbar button:hover,
#dirigentQuillEditor .ql-toolbar button.ql-active,
#presidentQuillEditor .ql-toolbar button:hover,
#presidentQuillEditor .ql-toolbar button.ql-active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(197, 160, 89, 0.3) 100%);
    border-color: #D4AF37;
}

#quillEditor .ql-editor,
#dirigentQuillEditor .ql-editor,
#presidentQuillEditor .ql-editor {
    min-height: 400px;
    font-size: 1rem;
    line-height: 1.8;
}

#quillEditor .ql-editor img,
#dirigentQuillEditor .ql-editor img,
#presidentQuillEditor .ql-editor img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Verbeterde content styling voor ANBI/Directie pagina's */
.info-card .card-content-full {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

.info-card .card-content-full h1,
.info-card .card-content-full h2,
.info-card .card-content-full h3 {
    color: var(--kht-gold-1);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.info-card .card-content-full p {
    margin-bottom: 1.5rem;
}

.info-card .card-content-full img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.info-card .card-content-full ul,
.info-card .card-content-full ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.info-card .card-content-full li {
    margin-bottom: 0.75rem;
}

.info-card .card-content-full a {
    color: var(--kht-gold-1);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.info-card .card-content-full a:hover {
    color: var(--kht-gold-2);
}

#eventDescriptionEditor .ql-toolbar .ql-picker-label {
    color: #D4AF37;
}

#eventDescriptionEditor .ql-toolbar .ql-picker-options {
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.98) 0%, rgba(14, 15, 77, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

#eventDescriptionEditor .ql-toolbar .ql-picker-item {
    color: #d1d5db;
}

#eventDescriptionEditor .ql-toolbar .ql-picker-item:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
}

#eventDescriptionEditor .ql-editor {
    color: #d1d5db;
    min-height: 200px;
}

#eventDescriptionEditor .ql-editor.ql-blank::before {
    color: rgba(212, 175, 55, 0.5);
    font-style: italic;
}

#eventDescriptionEditor .ql-container {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

#eventDescriptionEditor .ql-editor {
    color: #d1d5db;
    min-height: 200px;
    line-height: 1.6;
}

#eventDescriptionEditor .ql-editor p {
    margin-bottom: 0.75rem;
}

#eventDescriptionEditor .ql-editor h1,
#eventDescriptionEditor .ql-editor h2,
#eventDescriptionEditor .ql-editor h3 {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

#eventDescriptionEditor .ql-editor a {
    color: #D4AF37;
    text-decoration: underline;
}

#eventDescriptionEditor .ql-editor a:hover {
    color: #F4E4C1;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar,
.modal-large::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track,
.modal-large::-webkit-scrollbar-track {
    background: rgba(10, 17, 40, 0.5);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb,
.modal-large::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    border-radius: 5px;
}

.modal-content::-webkit-scrollbar-thumb:hover,
.modal-large::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #C5A059 0%, #D4AF37 100%);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: #d1d5db;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #D4AF37;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-cancel {
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.btn-save {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A059 100%);
    color: #0a1128;
    border: none;
    border-radius: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-events-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-actions {
        flex-direction: column;
    }
    
    .admin-filter-btn,
    .btn-add-event {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-event-actions {
        flex-direction: column;
    }
}

/* Upload Preview Styles */
.upload-preview {
    margin: 2rem 0;
}

.upload-preview h3 {
    color: #D4AF37;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.upload-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.upload-preview-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.upload-preview-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.upload-preview-item span {
    display: block;
    padding: 0.5rem;
    color: #d1d5db;
    font-size: 0.75rem;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* News Photo Mosaic in Preview */
.news-photo-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mosaic-photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.mosaic-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mosaic-photo-item.mosaic-small {
    grid-column: span 1;
    grid-row: span 1;
}

.mosaic-photo-item.mosaic-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.mosaic-photo-item.mosaic-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.mosaic-photo-item.mosaic-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* News Gallery Mosaic in Detail Page */
.news-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 1rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.news-gallery-mosaic .mosaic-photo-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-gallery-mosaic .mosaic-photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

.news-gallery-mosaic .mosaic-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   FLOATING NAVIGATION MENU
   ============================================ */

.floating-nav {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    pointer-events: none;
    overflow: visible;
    width: auto;
    max-width: none;
}

/* VERWIJDER ALLE PSEUDO-ELEMENTEN VAN FLOATING-NAV - DIRECT NA DEFINITIE */
.floating-nav::before,
.floating-nav::after,
nav#floatingNav.floating-nav::before,
nav#floatingNav.floating-nav::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    position: static !important;
}

.floating-nav-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    width: fit-content;
    pointer-events: auto;
    overflow: visible;
}

.floating-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(26, 35, 64, 0.95) 0%, rgba(10, 17, 40, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    color: var(--kht-gold-1);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(212, 175, 55, 0.2) inset,
                0 0 15px rgba(212, 175, 55, 0.2);
    width: 60px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

/* Ingeklapte staat - meer site-stijl met gouden accenten */
.floating-nav-item:not(.active) .floating-nav-link {
    justify-content: center;
    padding: 12px;
}

.floating-nav-item.active .floating-nav-link,
.floating-nav-item:hover .floating-nav-link,
.floating-nav-item.hover-expanded .floating-nav-link {
    width: fit-content;
    min-width: auto;
    max-width: none;
    padding-right: 16px;
    border-color: var(--kht-gold-1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(197, 160, 89, 0.2) 100%);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6),
                0 0 0 1px rgba(212, 175, 55, 0.4) inset,
                0 0 20px rgba(212, 175, 55, 0.3);
    color: var(--kht-gold-1);
}

.floating-nav-link:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4),
                0 0 0 1px rgba(212, 175, 55, 0.3) inset;
}

.floating-nav-item.active .floating-nav-link:hover {
    transform: translateX(8px) scale(1.02);
}

.floating-nav-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-nav-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    transition: all 0.3s ease;
}

.floating-nav-item.active .floating-nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.6));
}

.floating-nav-label {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.floating-nav-item.active .floating-nav-label,
.floating-nav-item:hover .floating-nav-label,
.floating-nav-item.hover-expanded .floating-nav-label {
    opacity: 1;
    width: auto;
    margin-left: 8px;
}

/* Gouden indicator lijnen verwijderd - veroorzaakten horizontale lijnen */
.floating-nav::before,
.floating-nav::after,
.floating-nav-item.active::before,
.floating-nav-item.active::after,
.floating-nav-item::before,
.floating-nav-item::after,
.floating-nav-link::before,
.floating-nav-link::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .floating-nav {
        left: 15px;
        gap: 10px;
    }
    
    .floating-nav-link {
        padding: 10px 12px;
        width: 50px;
    }
    
    .floating-nav-item:not(.active) .floating-nav-link {
        padding: 10px;
    }
    
    .floating-nav-item.active .floating-nav-link,
    .floating-nav-item:hover .floating-nav-link,
    .floating-nav-item.hover-expanded .floating-nav-link {
        width: fit-content;
        min-width: auto;
        padding-right: 14px;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        left: 10px;
        gap: 8px;
    }
    
    .floating-nav-link {
        padding: 8px 10px;
        width: 45px;
        border-radius: 10px;
    }
    
    .floating-nav-item:not(.active) .floating-nav-link {
        padding: 8px;
    }
    
    .floating-nav-item.active .floating-nav-link,
    .floating-nav-item:hover .floating-nav-link,
    .floating-nav-item.hover-expanded .floating-nav-link {
        width: fit-content;
        min-width: auto;
        padding-right: 12px;
    }
    
    .floating-nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .floating-nav-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .floating-nav {
        display: none; /* Verberg op zeer kleine schermen */
    }
}

/* ============================================
   NIEUWSBRIEF SLIDER - Rechts onder
   ============================================ */

.newsletter-slider {
    position: fixed;
    bottom: 30px;
    right: -400px;
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: slideInFromRight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 3s forwards;
}

.newsletter-slider.show {
    right: 30px;
}

.newsletter-slider-content {
    background: linear-gradient(135deg, rgba(26, 35, 64, 0.98) 0%, rgba(10, 17, 40, 0.98) 100%);
    border: 2px solid var(--kht-gold-1);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.5),
                0 0 30px rgba(212, 175, 55, 0.3),
                inset 0 0 20px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transform-origin: bottom right;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes slideInFromRight {
    0% {
        right: -400px;
        opacity: 0;
        transform: scale(0.8);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        right: 30px;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 50px rgba(212, 175, 55, 0.5),
                    0 0 30px rgba(212, 175, 55, 0.3),
                    inset 0 0 20px rgba(212, 175, 55, 0.1);
    }
    50% {
        box-shadow: 0 10px 60px rgba(212, 175, 55, 0.7),
                    0 0 40px rgba(212, 175, 55, 0.5),
                    inset 0 0 25px rgba(212, 175, 55, 0.15);
    }
}

.newsletter-slider-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--kht-gold-1);
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.newsletter-slider-close:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
    color: var(--kht-white);
}

.newsletter-slider-close svg {
    width: 18px;
    height: 18px;
}

.newsletter-slider-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--kht-gold-1) 0%, var(--kht-gold-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kht-dark-blue-1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.newsletter-slider-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.newsletter-slider-text {
    text-align: center;
}

.newsletter-slider-text h3 {
    color: var(--kht-gold-1);
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}

.newsletter-slider-text p {
    color: var(--kht-text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
}

.newsletter-slider-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--kht-gold-1) 0%, var(--kht-gold-2) 100%);
    color: var(--kht-dark-blue-1);
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 2px solid var(--kht-gold-1);
}

.newsletter-slider-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--kht-gold-2) 0%, var(--kht-gold-1) 100%);
}

/* Responsive voor nieuwsbrief slider */
@media (max-width: 768px) {
    .newsletter-slider {
        bottom: 20px;
        right: -350px;
    }
    
    .newsletter-slider.show {
        right: 20px;
    }
    
    .newsletter-slider-content {
        min-width: 280px;
        max-width: 320px;
        padding: 1.2rem;
    }
    
    .newsletter-slider-text h3 {
        font-size: 1.1rem;
    }
    
    .newsletter-slider-text p {
        font-size: 0.85rem;
    }
    
    .newsletter-slider-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .newsletter-slider {
        bottom: 15px;
        right: -100%;
        left: 15px;
        right: 15px;
        max-width: calc(100% - 30px);
    }
    
    .newsletter-slider-content {
        min-width: auto;
        max-width: 100%;
    }
}


    @keyframes slideInFromRight {
        0% {
            right: -100%;
            opacity: 0;
            transform: scale(0.8);
        }
        60% {
            transform: scale(1.05);
        }
        100% {
            right: 15px;
            opacity: 1;
            transform: scale(1);
        }
    }
}
