/* Linkelab AI Lab - Main Stylesheet */

/* CSS Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background: #FFFFFF !important;
    color: #2A2A2A;
    font-family: 'Courier Prime', 'Courier New', monospace;
    line-height: 1.6;
    font-size: 0.75em;
    scroll-behavior: smooth;
}

/* Dynamic gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #4A4A4A 0%, #2A2A2A 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2A2A2A;
}

h1 {
    font-size: 1.125em;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.125em;
    font-weight: 600;
    color: #2A2A2A;
}

h3 {
    font-size: 1.125em;
    font-weight: 600;
    color: #4A4A4A;
}

h4 {
    font-size: 1.125em;
    font-weight: 500;
    color: #4A4A4A;
}

p {
    margin-bottom: 1rem;
    color: #666666;
}

a {
    color: #6366F1;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #8B5CF6;
    transform: translateY(-1px);
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* More padding on larger screens */
@media (min-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

.section {
    padding: 3rem 0;
}

/* Less padding on smaller screens for more content space */
@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
}

.section-gray {
    background: linear-gradient(135deg, #FAFAFA 0%, rgba(99, 102, 241, 0.03) 100%);
    position: relative;
}

.section-gray::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 0;
}

.section-subtitle {
    color: #555555;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.section-link {
    color: #0A84FF;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.section-link:hover {
    color: #0066CC;
    text-decoration: underline;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.4rem;
    color: #111111;
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.2));
    transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo {
    transform: scale(1.1);
}

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

.nav-link {
    color: #555555;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.nav-link:hover,
.nav-link.active {
    color: #111111;
    font-weight: 600;
}

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

.nav-social {
    color: #555555;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.nav-social:hover {
    color: #0A84FF;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #111111;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.btn-primary {
    background: #111111;
    color: #FFFFFF;
    border: 1px solid #111111;
}

.btn-primary:hover {
    background: #333333;
    color: #FFFFFF;
}

.btn-ghost {
    background: transparent;
    color: #111111;
    border: 1px solid #E5E7EB;
}

.btn-ghost:hover {
    background: #F8F9FA;
    border-color: #111111;
}

.btn-outline {
    background: transparent;
    color: #111111;
    border: 1px solid #111111;
}

.btn-outline:hover {
    background: #111111;
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    padding: 0.25rem 0 0.5rem 0;
    text-align: center;
    background: #FFFFFF;
    position: relative;
}

/* Removed hero animation overlay for minimalism */

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: -1rem;
    animation: float 8s ease-in-out infinite;
}

.hero-logo svg {
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.hero-description {
    margin: 0rem 0 0.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555555;
    text-align: center;
    margin: 0;
}

.hero-intro strong {
    color: #111111;
    font-weight: 700;
}

.hero-video {
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 15px;
    border-radius: 0 0 12px 12px;
    margin: 0 -20px -20px -20px;
}

.hero-title {
    font-size: 1.125em;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    text-align: center;
}

/* Removed color shift animation for minimalism */

.hero-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-schools {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

/* Page Header */
.page-header {
    padding: 2.5rem 0 2rem;
    text-align: center;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
}

.page-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-header-text {
    flex: 1;
    text-align: right;
}

.page-header-logo {
    flex-shrink: 0;
}

.tech-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.page-title {
    font-size: 1.125em;
    color: #111111;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #555555;
    max-width: 600px;
    text-align: right;
}

/* Responsive adjustments for tech page */
@media (max-width: 768px) {
    .page-header-content {
        flex-direction: column;
        text-align: center;
    }

    .page-header-text {
        text-align: center;
    }

    .tech-logo {
        max-width: 120px;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

/* Removed feature card overlay for minimalism */

/* Removed feature card hover overlay */

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #FFFFFF;
}

.feature-title {
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 1rem;
}

.feature-description {
    color: #555555;
    font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #FFFFFF;
}

.service-title {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-list {
    list-style: none;
    text-align: left;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555555;
    font-size: 1.2rem;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0A84FF;
    font-weight: 600;
}

/* Steps styling for tech page */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111111;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125em;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.125em;
    color: #111111;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-description {
    color: #555555;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Price list styling */
.price-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: #555555;
    font-size: 1.2rem;
}

.price-value {
    color: #111111;
    font-weight: 600;
    font-size: 1.2rem;
}

.price-note {
    color: #666666;
    font-size: 1.2rem;
    margin: 0;
    font-style: italic;
}

/* CTA content styling */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.4rem;
    color: #555555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Events Carousel */
.events-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.events-carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

/* Workshops Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    padding: 1rem 0;
    transition: transform 0.5s ease;
    max-width: none;
    height: auto;
}



.workshop-poster {
    position: relative;
    width: 100%;
    height: 600px; /* Veel meer hoogte voor maximale poster weergave */
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

/* Cinema Poster Styling */
.cinema-poster,
.event-card .event-poster {
    position: relative;
    background: #FFFFFF;
    height: 600px; /* Behoud oorspronkelijke hoogte voor layout */
    overflow: hidden;
    flex-shrink: 0;
}

.workshop-poster-image,
.event-poster-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 300%; /* 3x breder */
    height: 300%; /* 3x hoger */
    object-fit: cover; /* Cover voor volledige container vulling */
    object-position: center;
    transform: translate(-33.33%, -33.33%); /* Centreer de vergroterde afbeelding */
    filter: brightness(0.9);
    transition: all 0.3s ease;
    z-index: 1;
}

.workshop-card:hover .workshop-poster-image,
.event-card:hover .event-poster-image {
    filter: brightness(1.0);
    transform: scale(1.02);
}

/* Workshop poster overlay verwijderd - geen tekst meer op poster */

.workshop-poster-content,
.event-poster-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
}

.event-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.workshop-level-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: 500;
}

.workshop-info,
.event-info {
    padding: 1.25rem;
    flex-shrink: 0;
}

.event-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-tag {
    background: #F0F8FF;
    color: #0A84FF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.event-description {
    color: #555555;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-size: 1rem;
}

.event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #666666;
    background: #F8F9FA;
    padding: 0.5rem;
    border-radius: 4px;
}

.event-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-detail-label {
    font-weight: 600;
    color: #111111;
    font-size: 1.2rem;
}

.event-detail-value {
    color: #555555;
    font-size: 1.2rem;
}

.event-actions {
    text-align: center;
}

/* Events */
.events-list,
.events-calendar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.2s ease;
    position: relative;
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Event Poster Styling */
.event-poster {
    width: 120px; /* Behoud container grootte */
    height: 160px; /* Behoud container grootte */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.event-item .event-poster-image {
    width: 300%; /* 3x breder */
    height: 300%; /* 3x hoger */
    object-fit: cover;
    transform: translate(-33.33%, -33.33%); /* Centreer de vergroterde afbeelding */
    transition: all 0.3s ease;
}

.event-item:hover .event-poster-image {
    transform: scale(1.05);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-day {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111111;
    display: block;
}

.event-month {
    font-size: 1.2rem;
    color: #555555;
    text-transform: uppercase;
    font-weight: 500;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 0.25rem;
}

.event-location {
    color: #555555;
    font-size: 1.2rem;
}

.event-status {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-capacity {
    font-size: 1.2rem;
    color: #666666;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.badge-sold-out {
    background: #FFE5E5;
    color: #CC0000;
}

.badge-few-spots {
    background: #FFF3CD;
    color: #B8860B;
}

.badge-available {
    background: #E8F5E8;
    color: #0F7B0F;
}

.events-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 6px;
}

.note-text {
    color: #555555;
    margin: 0;
    font-size: 1.2rem;
}

/* Workshops/Events Grid Layout - Gebaseerd op het poster design */
.workshops-grid,
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Carousel Navigation */
.carousel-nav {
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000000;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    font-weight: bold;
}

.carousel-nav:hover {
    background: #000000;
    border-color: #000000;
    color: #FFFFFF;
    transform: scale(1.08);
}

.carousel-nav:active {
    transform: scale(0.98);
}

.carousel-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    background: #F5F5F5;
    border-color: #E5E7EB;
    color: #9CA3AF;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #6B7280;
    transform: scale(1.2);
}

/* Responsive Grid Layout - 2 rijen van 3 events */
@media (min-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .workshops-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1199px) and (min-width: 769px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1.5rem;
    }
    
    .events-carousel-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .carousel-nav {
        order: 2;
    }
    
    .events-carousel-wrapper {
        order: 1;
    }
}

/* Event cards - Poster design zoals in de referentie */
.event-card,
.workshop-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 650px; /* Vaste hoogte voor poster effect */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.event-card-clickable {
    cursor: pointer;
}

.event-card-clickable:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.event-card:hover,
.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Poster card header */
.poster-card-header {
    background: #FFFFFF;
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    text-align: center;
    position: relative;
    z-index: 10;
}

.poster-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2A2A2A;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.poster-card-badges {
    display: none; /* Verplaatst naar de afbeelding */
}

.poster-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    position: absolute;
    z-index: 15;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.poster-badges-left {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 8px;
    z-index: 25;
    pointer-events: none;
}

.badge-age {
    background: #6366F1;
    pointer-events: auto; /* Re-enable pointer events for the badge itself */
}

.badge-junior {
    background: #10B981;
    color: #000000;
    pointer-events: auto;
}

.badge-duration {
    background: #2A2A2A;
    pointer-events: auto;
}

/* Poster image container - vult de volledige hoogte */
.poster-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
    /* Ensure all child elements are positioned relative to this container */
    z-index: 1;
}

.poster-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.event-card:hover .poster-card-image,
.workshop-card:hover .poster-card-image {
    transform: scale(1.05);
}

/* Poster card footer */
.poster-card-footer {
    background: #FFFFFF;
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    position: relative;
    z-index: 10;
}

.poster-card-duration {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2A2A2A;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.poster-card-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #666666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.poster-card-actions {
    margin-top: 1rem;
    text-align: center;
}

.poster-card-button {
    background: #6366F1;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.poster-card-button:hover {
    background: #5855EB;
    transform: translateY(-1px);
    color: #FFFFFF;
    text-decoration: none;
}

.poster-card-price-top {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #2A2A2A;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 25;
    pointer-events: auto;
}

/* Spots bubble on image - top center */
.poster-spots-bubble {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: #FFFFFF;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    white-space: nowrap;
    z-index: 25;
    text-align: center;
    pointer-events: none;
    line-height: 1.3;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    font-family: 'Courier Prime', monospace;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Date bubble on image - bottom left */
.poster-date-bubble {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.85);
    color: #FFFFFF;
    padding: 0.5rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    z-index: 25;
    text-align: center;
    pointer-events: none;
    line-height: 1.3;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    font-family: 'Courier Prime', monospace;
}

/* Overlay button on image - bottom right */
.poster-button-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 25;
    pointer-events: auto;
}

.poster-card-button-overlay {
    background: rgba(255, 255, 255, 0.95);
    color: #2A2A2A;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.poster-card-button-overlay:hover {
    background: #6366F1;
    color: #FFFFFF;
    transform: translateY(-1px);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Calendar Layout */
.calendar-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.calendar-main {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
}

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

.calendar-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2A2A2A;
    margin: 0;
}

.calendar-nav {
    background: #6366F1;
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #5855EB;
    transform: scale(1.05);
}

.calendar-nav:disabled {
    background: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    transform: none;
}

.calendar-nav:disabled:hover {
    background: #E5E7EB;
    transform: none;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1px;
    background: #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.calendar-day-header {
    background: #F8F9FA;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #6B7280;
    font-size: 1.4rem;
    min-width: 0;
    word-break: keep-all;
}

.calendar-day {
    background: #FFFFFF;
    padding: 1.5rem;
    min-height: 120px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.calendar-day:hover {
    background: #F8F9FA;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    animation: selectedGlow 2s ease-in-out infinite;
}

.calendar-day.selected .calendar-day-number {
    color: #FFFFFF;
    font-weight: 700;
}

@keyframes selectedGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 25px rgba(245, 158, 11, 0.7);
    }
}

.calendar-day.other-month {
    background: #F8F9FA;
    color: #9CA3AF;
}

.calendar-day.has-events {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.calendar-day.has-events::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmerEvent 4s ease-in-out infinite;
    pointer-events: none;
}

.calendar-day.has-events .calendar-day-number {
    color: #FFFFFF;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.calendar-day.has-events.selected {
    background: linear-gradient(135deg, #6366F1 0%, #5855EB 100%);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    animation: selectedPulse 2s ease-in-out infinite;
}

.calendar-day.has-events.selected::before {
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.calendar-day.has-events:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
}

.calendar-day.has-events.selected:hover {
    background: linear-gradient(135deg, #5855EB 0%, #4F46E5 100%);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
    }
}

@keyframes shimmerEvent {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes selectedPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.8);
        transform: scale(1.02);
    }
}

.calendar-day-number {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

/* Calendar event styles removed since events are now shown as colored cells only */

/* Calendar Sidebar */
.calendar-sidebar {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    height: fit-content;
}

.selected-date-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2A2A2A;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.selected-date-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.no-events-text {
    color: #6B7280;
    font-style: italic;
    text-align: center;
    margin: 2rem 0;
    font-size: 1.3rem;
}

.sidebar-event {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 2rem;
    border-left: 6px solid #6366F1;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.sidebar-event:hover {
    background: #EEF2FF;
    transform: translateX(2px);
}

/* Simplified sidebar event styling */
.sidebar-event-simple {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.sidebar-event-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sidebar-event-poster-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.sidebar-event-poster-simple {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-event-simple:hover .sidebar-event-poster-simple {
    transform: scale(1.05);
}

.sidebar-event-poster-placeholder-simple {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #FFFFFF;
    text-align: center;
}

.sidebar-event-poster-placeholder-simple .poster-placeholder-content h4 {
    color: #FFFFFF;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    padding: 1rem;
}

.sidebar-event-button-container {
    padding: 1.5rem;
    text-align: center;
}

.sidebar-event-meer-info-btn {
    background: #6366F1;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.sidebar-event-meer-info-btn:hover {
    background: #5855EB;
    transform: translateY(-1px);
}

.sidebar-event-title {
    font-weight: 600;
    color: #2A2A2A;
    margin: 0 0 0.75rem 0;
    font-size: 1.8rem;
}

.sidebar-event-time {
    color: #6366F1;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.sidebar-event-price {
    color: #059669;
    font-size: 1.5rem;
    font-weight: 600;
}

.sidebar-event-description {
    color: #6B7280;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 0.75rem;
}

.sidebar-event-image {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.sidebar-event-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-event-poster-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #FFFFFF;
    text-align: center;
}

.poster-placeholder-content h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.poster-placeholder-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin: 0;
}

.sidebar-event-content {
    flex: 1;
    min-width: 0;
}

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

.sidebar-event-type {
    background: #6366F1;
    color: #FFFFFF;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    white-space: nowrap;
}

.sidebar-event-details {
    margin-bottom: 1rem;
}

.sidebar-event-details > div {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.sidebar-event-details strong {
    color: #4A4A4A;
    font-weight: 600;
}

.sidebar-event-location,
.sidebar-event-capacity,
.sidebar-event-age {
    color: #6B7280;
}

.sidebar-event-actions {
    margin-top: 1rem;
}

.sidebar-event-book-btn {
    background: #6366F1;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.sidebar-event-book-btn:hover {
    background: #5855EB;
    transform: translateY(-1px);
}

/* Mobile aanpassingen voor calendar */
@media (max-width: 768px) {
    .calendar-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calendar-day {
        min-height: 50px;
        padding: 0.5rem;
    }

    .calendar-event-indicator {
        font-size: 0.6rem;
    }

    .calendar-title {
        font-size: 1.3rem;
    }
}

/* Filters */


/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-main {
    font-size: 1.2rem;
    line-height: 1.7;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.content-list {
    list-style: none;
    margin: 1.5rem 0;
}

.content-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555555;
    font-size: 1.2rem;
}

.content-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0A84FF;
    font-weight: 600;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.info-title {
    font-family: 'Courier Prime', monospace;
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-text {
    color: #555555;
    margin: 0;
    font-size: 1.2rem;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.project-title {
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 0;
}

.project-tag {
    background: #F0F8FF;
    color: #0A84FF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    white-space: nowrap;
}

.project-description {
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.2rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
}

.project-author {
    color: #666666;
    font-size: 1.2rem;
}

.project-status {
    color: #0A84FF;
    font-weight: 500;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: #F8F9FA;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.cta-title {
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.4rem;
    color: #555555;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.cta-option {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.option-title {
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 0.5rem;
}

.option-text {
    color: #555555;
    margin: 0;
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

/* Discovery Grid */
.discovery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.discovery-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discovery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.discovery-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F0F8FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #0A84FF;
}

.discovery-title {
    font-size: 1.25rem;
    color: #111111;
    margin-bottom: 1rem;
}

.discovery-description {
    color: #555555;
    line-height: 1.6;
}

/* Format Content */
.format-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.format-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.format-item {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 1.5rem;
}

.format-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.format-heading {
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 0.5rem;
}

.format-text {
    color: #555555;
    margin: 0;
    font-size: 1.2rem;
}

.booking-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    text-align: center;
}

.booking-title {
    font-family: 'Courier Prime', monospace;
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 1rem;
}

.booking-text {
    color: #555555;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.booking-btn {
    width: 100%;
    margin-bottom: 1rem;
}

.booking-note {
    font-size: 1.2rem;
    color: #666666;
    margin: 0;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.faq-question {
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #555555;
    margin: 0;
    line-height: 1.6;
    font-size: 1.2rem;
}

/* Contact Page Enhancements */
.contact-hero {
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 50%, #FFFFFF 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(10, 132, 255, 0.1);
}

.mascot-container {
    text-align: center;
    margin-bottom: 2rem;
}

.mascot-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.mascot-logo:hover {
    transform: translateY(-4px);
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro h2 {
    font-size: 1.5rem;
    color: #111111;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.contact-info {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
}

.contact-title {
    font-size: 1.25rem;
    color: #111111;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #FAFBFC;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
}

.contact-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 132, 255, 0.1);
    border-color: #E6F3FF;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A84FF, #0066CC);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.contact-heading {
    font-size: 1.25rem;
    color: #111111;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-text {
    color: #555555;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.contact-text a {
    color: #0A84FF;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-text a:hover {
    color: #0066CC;
}

.contact-directions,
.contact-note {
    font-size: 1.1rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0A84FF;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.contact-link:hover {
    color: #0066CC;
    background: #F0F8FF;
    transform: translateX(4px);
}

/* Enhanced Form Styling */
.contact-form-section {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
}

.contact-form {
    background: transparent;
    padding: 0;
    border: none;
}

.form-title {
    font-size: 1.25rem;
    color: #111111;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1.1rem;
    background: #FAFBFC;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0A84FF;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.1);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.form-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #0A84FF, #0066CC);
    border: none;
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4);
}

.form-actions .btn-ghost {
    background: transparent;
    border: 2px solid #E5E7EB;
    color: #666666;
}

.form-actions .btn-ghost:hover {
    border-color: #0A84FF;
    color: #0A84FF;
    background: #F0F8FF;
}

.form-note {
    font-size: 1.1rem;
    color: #666666;
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    font-style: italic;
}

/* Community Strip */
.section-community {
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.community-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.community-title {
    font-size: 1.125rem;
    color: #111111;
    margin-bottom: 1rem;
}

.community-description {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 2rem;
}

.community-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Partners */
.partners {
    padding: 2rem 0;
    background: #FAFAFA;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.partners-text {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

.partners-text a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.partners-text a:hover {
    color: #004499;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #111111;
    color: #CCCCCC;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.125rem;
}

.footer-heading {
    font-size: 1.125rem;
}

.footer-description,
.footer-address {
    color: #E5E7EB;
    line-height: 1.6;
    font-size: 1.2rem;
}

.footer-address a {
    color: #60A5FA;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #E5E7EB;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1.2rem;
}

.footer-nav a:hover {
    color: #60A5FA;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social a {
    color: #E5E7EB;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: #60A5FA;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-credits {
    color: #D1D5DB;
    font-size: 1.2rem;
    margin: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 6px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2001;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666666;
    z-index: 2002;
}

.modal-close:hover {
    color: #111111;
}

.modal-body {
    padding: 2rem;
}

/* Notice Banner */
.notice-banner {
    background: #FFF3CD;
    border-bottom: 1px solid #FFE69C;
    padding: 0.75rem 0;
    text-align: center;
}

.notice-text {
    color: #856404;
    font-size: 1.2rem;
    margin: 0;
}

/* ===== EVENT DETAIL PAGE ===== */
.event-detail-hero {
    padding: 3rem 0 2rem 0;
    background: #FFFFFF;
    min-height: auto;
}

.back-navigation {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #2a2a2a;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.back-btn:hover {
    background: #f8f9fa;
    transform: translateX(-4px);
}

.event-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.event-poster {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.event-poster-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.event-info {
    padding: 1rem 0;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.event-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #6366F1;
    color: white;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.event-junior-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #10B981;
    color: #000000;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.event-title {
    font-size: 1.125em;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Clean Event Detail Layout */
.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #6366F1;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 1.2rem;
}

.back-link:hover {
    color: #8B5CF6;
}

.event-header-clean {
    margin-bottom: 3rem;
    text-align: center;
}

/* New Grid Layout for Event Detail */
.event-main-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    margin-bottom: 3rem;
    align-items: start;
}

.event-media-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.event-content-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1rem;
}

.event-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.event-info {
    flex: 1;
}

.event-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

/* Event badges overlay on detail page poster */
.event-badges-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 30;
    max-width: calc(100% - 32px);
}

.badge {
    padding: 0.5rem 1rem;
    background: #6366F1;
    color: white;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Courier Prime', 'Courier New', monospace;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge.junior {
    background: #10B981;
    color: #000000;
}

.badge.age {
    background: #F59E0B;
    color: #000000;
}

.badge.price {
    background: #EF4444;
    color: #FFFFFF;
}

.event-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2A2A2A;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-align: center;
}

.event-details-clean {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #111111;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.value {
    font-size: 1.4rem;
    font-weight: 400;
    color: #555555;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Description Card Styling */
.event-description-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.event-description-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A2A2A;
    margin-bottom: 1rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.event-description-card div {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666666;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.ticket-info-clean {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    margin-bottom: 3rem;
}

.ticket-info-clean h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.availability {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.spots {
    font-size: 1.8rem;
    font-weight: 600;
    color: #10B981;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.spots-text {
    font-size: 1.2rem;
    color: #555555;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.register-section {
    text-align: center;
    margin-bottom: 3rem;
}

.register-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #111111;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
    transition: all 0.2s ease;
}

.register-btn:hover {
    background: #333333;
    color: white;
}

.event-description {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.event-description h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.event-description div {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666666;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.ticket-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.ticket-info h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.ticket-availability {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.availability-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.availability-item strong {
    color: #111111;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.spots-count {
    font-size: 1.6rem;
    font-weight: 600;
    color: #10B981;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.event-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-message {
    text-align: center;
    padding: 3rem 2rem;
    background: #F8F9FA;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.error-message h2 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: 600;
}

.error-message p {
    color: #555555;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid #E5E7EB;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .workshops-grid,
    .features-grid,
    .discovery-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .content-grid,
    .format-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    .mascot-logo {
        max-width: 220px;
    }

    .contact-intro h2 {
        font-size: 1.25rem;
    }

    .contact-intro p {
        font-size: 1.1rem;
    }

    .contact-info,
    .contact-form-section {
        padding: 2rem;
    }

    .contact-block {
        padding: 1.25rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
        text-align: center;
    }

    .event-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .event-status {
        justify-content: center;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav,
    .footer-social {
        align-items: center;
    }

    /* Event detail mobile styles */
    .event-detail-hero {
        padding: 6rem 0 3rem 0;
    }

    .event-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .event-poster {
        max-width: 300px;
        margin: 0 auto;
    }

    .event-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .event-header-clean {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .event-image img {
        width: 250px;
    }

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

    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Mobile responsive for new event grid */
    .event-main-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-content-section {
        padding-left: 0;
    }

    .event-media-section {
        order: 1;
    }

    .event-content-section {
        order: 2;
    }
}



/* YouTube Video Styles */
.event-youtube-clean {
    background: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.youtube-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

    .ticket-availability {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-actions {
        flex-direction: column;
        align-items: center;
    }

    .event-actions .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .workshop-card,
    .project-card,
    .discovery-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }
}

/* Dynamic Animations */
.color-cycle {
    animation: colorCycle 8s ease-in-out infinite;
}

@keyframes colorCycle {
    0% { filter: hue-rotate(0deg) saturate(1); }
    25% { filter: hue-rotate(90deg) saturate(1.2); }
    50% { filter: hue-rotate(180deg) saturate(1); }
    75% { filter: hue-rotate(270deg) saturate(1.2); }
    100% { filter: hue-rotate(360deg) saturate(1); }
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Pulse effect for interactive elements */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(184, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(184, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 255, 0, 0); }
}

.pulse-on-hover:hover {
    animation: pulse 2s infinite;
}

/* Gradient text animation */
.gradient-text-animated {
    background: linear-gradient(-45deg, #6366F1, #8B5CF6, #3B82F6, #6366F1);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero::before,
    .color-cycle,
    .float-animation,
    .gradient-text-animated {
        animation: none !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid #0A84FF;
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Agenda Page Styles */
.agenda-sidebar-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #E5E7EB;
}

.selected-date-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-align: center;
    letter-spacing: 0.5px;
}

.agenda-sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.filter-select-small {
    padding: 0.5rem 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background: white;
    font-size: 0.9rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select-small:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.agenda-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F8F9FA;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.filter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    background: white;
    font-size: 1rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Agenda Events List */
.agenda-events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.agenda-event-item {
    padding: 1.5rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.agenda-event-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: #6366F1;
}

.event-date-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.event-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6366F1;
    font-family: 'Courier Prime', 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.event-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
    line-height: 1.2;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-type {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #6366F1;
    color: white;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Courier Prime', 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-type.junior {
    background: #10B981;
    color: #000000;
}

.event-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
}

.event-location {
    font-size: 1.1rem;
    color: #6B7280;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-weight: 500;
}

.event-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10B981;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Scrollbar styling for agenda list */
.agenda-events-list::-webkit-scrollbar {
    width: 6px;
}

.agenda-events-list::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 3px;
}

.agenda-events-list::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

.agenda-events-list::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* No events message styling */
.no-events-message {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.no-events-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin: 0 0 1rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.no-events-message p {
    font-size: 1.1rem;
    color: #6B7280;
    font-family: 'Courier Prime', 'Courier New', monospace;
    margin: 0;
    line-height: 1.5;
}

.event-price-amount {
    font-size: 0.9rem;
    font-weight: 600;
    color: #059669;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.event-price-amount.paid {
    color: #DC2626;
}

.event-action {
    margin-top: 0.5rem;
}

.agenda-more-info-btn {
    padding: 0.4rem 0.8rem;
    background: #6366F1;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: 'Courier Prime', 'Courier New', monospace;
    width: 100%;
}

.agenda-more-info-btn:hover {
    background: #5855EB;
    color: white;
    text-decoration: none;
}

.loading-events {
    text-align: center;
    padding: 3rem;
    color: #6B7280;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.no-events-message {
    text-align: center;
    padding: 3rem;
    background: #F8F9FA;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.no-events-message h3 {
    color: #374151;
    margin-bottom: 1rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.no-events-message p {
    color: #6B7280;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Show All Events Button */
.show-all-events-btn {
    width: 100%;
    padding: 0.75rem;
    background: #F8F9FA;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6366F1;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.show-all-events-btn:hover {
    background: #6366F1;
    color: white;
    border-color: #6366F1;
}

/* Events Controls Section */
.events-controls-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #F8F9FA;
    border-bottom: 1px solid #E5E7EB;
}

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

/* Search Container */
.search-container {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-input::placeholder {
    color: #9CA3AF;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    pointer-events: none;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.filter-select:focus {
    outline: none;
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-select:hover {
    border-color: #D1D5DB;
}

/* Results Info */
.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid #E5E7EB;
}

#results-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

#active-filters {
    font-size: 0.95rem;
    color: #6B7280;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-top: 2rem;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin: 0 0 1rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.no-results p {
    font-size: 1.1rem;
    color: #6B7280;
    margin: 0 0 2rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Responsive Design */
@media (min-width: 768px) {
    .events-controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .filter-controls {
        flex-shrink: 0;
    }
    
    .results-info {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Schools Page Styling */
.schools-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.schools-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.schools-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.schools-hero .hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2.5rem 0;
    line-height: 1.5;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    gap: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}

.floating-elements .element {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 40%;
    animation-delay: 2s;
}

.element-3 {
    top: 40%;
    right: 10%;
    animation-delay: 4s;
}

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

/* Lectures Grid */
.lectures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lecture-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lecture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.lecture-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
}

.lecture-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981, #06B6D4);
}

.lecture-header {
    margin-bottom: 1.5rem;
}

.lecture-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-icon {
    color: #6366F1;
}

.lecture-badge .badge-text {
    background: #F3F4F6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lecture-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.5rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.lecture-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    margin: 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.lecture-content {
    margin-bottom: 2rem;
}

.lecture-description {
    margin-bottom: 1.5rem;
}

.lecture-description p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.lecture-highlights {
    margin-bottom: 1.5rem;
}

.highlights-title {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.75rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 0.5rem 0;
    color: #4B5563;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.highlights-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.lecture-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #374151;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.detail-icon {
    font-size: 1rem;
}

.lecture-price {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.price-label {
    font-size: 0.9rem;
    color: #6B7280;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0.5rem;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.price-unit {
    font-size: 0.9rem;
    color: #6B7280;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.lecture-footer {
    text-align: center;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    color: #6366F1;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.75rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.benefit-description {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 0.75rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.step-description {
    font-size: 1.1rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-tag {
    background: #F3F4F6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

rap;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
    margin: 0;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.author-name {
    font-weight: 600;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
    font-family: 'Courier Prime', 'Courier New', monospace;
}

/* Responsive Design for Schools */
@media (max-width: 768px) {
    .schools-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .lectures-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-stats {
        gap: 1rem;
    }
    
    .hero-visual {
        display: none;
    }
}

/* Mobile responsive for agenda */
@media (max-width: 768px) {
    .agenda-filters {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        min-width: unset;
    }

    .agenda-event-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .event-date-time {
        min-width: unset;
    }

    .event-info {
        text-align: center;
    }

    .event-price {
        align-items: center;
    }
}