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

/* CSS Variables - Inspiring Business/Zen */
:root {
    /* Primary Colors - Deep Forest & Warm Gold */
    --primary-color: #2c4a3b;
    --primary-light: #3d5e4c;
    --primary-dark: #1e3327;
    --accent-color: #c29d3f;
    --accent-light: #d9b865;
    --accent-dark: #a08432;
    --red-color: #d63031;
    --red-light: #e84142;
    --red-dark: #c23031;
    
    /* Section Colors for Visual Distinction */
    --hero-gradient: linear-gradient(135deg, #fefefe 0%, #f8faf9 100%);
    --aanbod-gradient: linear-gradient(135deg, #f8faf9 0%, #fcf9f4 100%);
    --methode-gradient: linear-gradient(135deg, #fcf9f4 0%, #f7f4ed 100%);
    --imre-gradient: linear-gradient(135deg, #f7f4ed 0%, #f8faf9 100%);
    --contact-gradient: linear-gradient(135deg, #f8faf9 0%, #fefefe 100%);
    
    /* Text Colors */
    --text-primary: #2c3e35;
    --text-secondary: #4a5d52;
    --text-muted: #7a8f84;
    --text-light: #a5b8ad;
    --background: #fefefe;
    --surface: #ffffff;
    --border: #e8ede9;
    --border-warm: #f1ede3;
    
    /* Inspiring Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Serif Pro', Georgia, serif;
    
    /* Harmonious Spacing */
    --space-xs: 0.75rem;
    --space-sm: 1.25rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    /* Natural Shadows */
    --shadow-soft: 0 2px 16px rgba(44, 74, 59, 0.08);
    --shadow-medium: 0 4px 24px rgba(44, 74, 59, 0.12);
    --shadow-strong: 0 8px 48px rgba(44, 74, 59, 0.16);
    --shadow-warm: 0 4px 24px rgba(194, 157, 63, 0.12);
    
    /* Organic Shapes */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Smooth Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.005em;
}

/* Inspiring Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-xl);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-md);
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 4px;
    height: 3.5rem;
    background: linear-gradient(to bottom, var(--accent-color), var(--accent-light));
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-warm);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--accent-dark);
    margin-bottom: var(--space-md);
    position: relative;
}

h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    border-radius: var(--radius-sm);
}

p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 70ch;
}

/* Header - Elegant Navigation */
.header {
    background: rgba(248, 250, 249, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: var(--space-sm) 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.3;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(var(--shadow-soft));
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Navigation - Compact & Professional */
.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-sm);
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.nav-list a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    opacity: 0;
    transition: var(--transition);
}

.nav-list a:hover::before {
    opacity: 0.08;
}

.nav-list a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 2px;
    background: var(--surface);
    border-radius: var(--radius-full);
    padding: 0.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.lang-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    opacity: 0;
    transition: var(--transition);
}

.lang-btn.active::before {
    opacity: 0.15;
}

.lang-btn:hover::before {
    opacity: 0.08;
}

.lang-btn img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.content-grid {
    max-width: 900px;
    margin: 0 auto;
}

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

/* Hero Section - Perfect One Page */
.hero {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-lg) 0;
    height: calc(100vh - 100px);
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
    scroll-margin-top: 0px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(194, 157, 63, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-text {
    margin-bottom: var(--space-xl);
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: var(--surface);
    color: var(--primary-color);
    border: 2px solid var(--border-warm);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: rgba(194, 157, 63, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.hero-images {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    height: 100%;
}

.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
    margin-bottom: var(--space-sm);
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.hero-gallery-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    opacity: 0.9;
}

.hero-gallery-img:hover {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

/* Section Visual Distinction */
#aanbod {
    background: var(--aanbod-gradient);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    scroll-margin-top: 100px;
}

#achtergrond {
    background: var(--methode-gradient);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    scroll-margin-top: 100px;
}

#over-imre {
    background: var(--imre-gradient);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    scroll-margin-top: 100px;
}

#agenda {
    background: linear-gradient(135deg, #f7f4ed 0%, #f8faf9 100%);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    scroll-margin-top: 100px;
}

#contact {
    background: var(--contact-gradient);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    scroll-margin-top: 100px;
}

/* Content Cards - Zen & Professional */
.content-card {
    background: var(--surface);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.6;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* Section Images - Uniform Layout */
.section-image {
    margin: var(--space-xl) 0;
    text-align: center;
}

.section-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.section-img:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-strong);
}

/* Gallery Images - Three Small Images */
.gallery-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    opacity: 0.9;
}

.gallery-img:hover {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-images {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .gallery-img {
        height: 200px;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.service-item {
    background: linear-gradient(145deg, var(--surface) 0%, rgba(248, 250, 249, 0.8) 100%);
    padding: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-warm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin-bottom: var(--space-md);
}

.service-item > :not(.service-img) {
    padding: 0 var(--space-lg);
}

.service-item > ul {
    padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
}

.service-item::after {
    content: '';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--accent-color);
    opacity: 0.4;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.service-item:hover::after {
    opacity: 0.8;
    background: var(--accent-light);
}

.service-item h4 {
    color: var(--primary-color);
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    font-family: var(--font-display);
}

.service-subtitle {
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-body);
    margin-bottom: var(--space-md);
    font-size: 1rem;
    line-height: 1.6;
}

.service-item ul,
.content-card ul {
    margin: var(--space-lg) 0;
    padding-left: 0;
    list-style: none;
}

.service-item li,
.content-card li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    position: relative;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 500;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.content-card li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1rem;
}

/* Contact Section */
.contact-details {
    margin: var(--space-lg) 0;
    padding: var(--space-xl);
    background: rgba(252, 249, 244, 0.6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-warm);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-xl);
}

.contact-info p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--surface);
    border: 1px solid var(--border-warm);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: var(--transition);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer */
.footer {
    margin-top: var(--space-3xl);
    padding: var(--space-xl) 0;
    background: var(--contact-gradient);
    border-top: 1px solid var(--border);
}

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

.footer-bottom p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    font-family: var(--font-body);
}

/* Language Toggle Functionality */
.language-toggle .lang-btn {
    display: flex !important;
}

body.lang-en .connect-extra[data-lang="en"] {
    display: block !important;
}

body.lang-nl .connect-extra[data-lang="en"] {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        padding: var(--space-lg) 0;
        height: auto;
        min-height: 85vh;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-images {
        order: 2;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .hero-gallery-img {
        height: 80px;
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .nav-list {
        gap: var(--space-sm);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    :root {
        --space-xs: 0.5rem;
        --space-sm: 1rem;
        --space-md: 1.5rem;
        --space-lg: 2rem;
        --space-xl: 2.5rem;
        --space-2xl: 3.5rem;
        --space-3xl: 5rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .nav-list a {
        padding: var(--space-sm);
        text-align: center;
    }
    
    .header-content {
        gap: var(--space-sm);
    }
    
    h2 {
        padding-left: var(--space-sm);
    }
    
    h2::before {
        left: -var(--space-xs);
    }
}

@media (max-width: 640px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: var(--space-md) var(--space-lg);
        text-align: center;
        justify-content: center;
        min-width: 200px;
    }
    
    .contact-details {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
    }
    
    .content-card {
        padding: var(--space-lg);
    }
}

/* Event Cards Styling */
.dynamic-events {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    width: 100%;
}

.event-preview {
    width: 100%;
}

.event-card {
    background: var(--surface);
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(44, 74, 59, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0;
    padding: 0;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(44, 74, 59, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.event-image {
    grid-row: 1 / -1;
    grid-column: 1;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

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

.event-title {
    grid-column: 2;
    grid-row: 1;
    padding: 1.5rem 1.5rem 0 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    font-family: var(--font-display);
    margin: 0;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-description {
    grid-column: 2;
    grid-row: 2;
    padding: 1rem 1.5rem;
}

.event-meta-row {
    grid-column: 2;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0.5rem 1.5rem;
}

.event-datetime {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.event-location-cost {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}



.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.event-detail-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
}



.event-excerpt {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1.5rem 0 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.event-meta-item {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    line-height: 1;
}

.event-meta-item svg {
    width: 10px;
    height: 10px;
    opacity: 0.7;
}

.event-trainer {
    background: none;
    color: var(--text-muted);
    font-weight: 500;
    border: none;
}

.event-actions {
    grid-column: 2;
    grid-row: 4;
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.event-link {
    background: #832232;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.2;
    box-shadow: none;
    letter-spacing: 0.02em;
    font-family: var(--font-primary);
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.event-link:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Responsive event cards */
@media (max-width: 1024px) {
    .event-card {
        grid-template-columns: 1fr;
        grid-template-rows: 200px auto auto auto auto;
    }
    
    .event-image {
        grid-row: 1;
        grid-column: 1;
        height: 200px;
    }
    
    .event-title {
        grid-row: 2;
        grid-column: 1;
        padding: 1.5rem 1.5rem 0 1.5rem;
    }
    
    .event-description {
        grid-row: 3;
        grid-column: 1;
    }
    
    .event-meta-row {
        grid-row: 4;
        grid-column: 1;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .event-actions {
        grid-row: 5;
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .event-card {
        margin-bottom: 1.5rem;
        grid-template-rows: 160px auto auto auto auto;
    }
    
    .event-image {
        height: 160px;
    }
    
    .event-title {
        font-size: 1.25rem;
        padding: 1.25rem 1.25rem 0 1.25rem;
    }
    
    .event-description {
        padding: 1rem 1.25rem;
    }
    
    .event-excerpt {
        font-size: 0.9rem;
    }
    
    .event-meta-row {
        grid-template-columns: 1fr;
        padding: 0.5rem 1.25rem;
        gap: 1rem;
    }
    
    .event-actions {
        padding: 0.5rem 1.25rem 1.25rem 1.25rem;
    }
}

/* Focus & Accessibility */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}