:root {
    /* APAC Events Design System */
    --border-radius: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    
    /* Color Palette */
    --black: #000000;
    --white: #ffffff;
    --gray-100: #fafafa;
    --gray-200: #eaeaea;
    --gray-300: #999999;
    --gray-400: #888888;
    --gray-500: #666666;
    --gray-600: #444444;
    --gray-700: #333333;
    --gray-800: #111111;
    --gray-900: #000000;
    
    /* Green Theme Colors */
    --green-50: #f0f9ff;
    --green-100: #e0f2fe;
    --green-200: #bae6fd;
    --green-300: #7dd3fc;
    --green-400: #38bdf8;
    --green-500: #00c851;
    --green-600: #00a844;
    --green-700: #00883a;
    --green-800: #006831;
    --green-900: #004d23;
    
    /* Primary Colors - Green Theme */
    --primary: var(--green-600);
    --primary-hover: var(--green-700);
    --success: var(--green-600);
    --warning: #f5a623;
    --error: #ee0000;
    
    /* Default Theme (Light First with Green) */
    --background: var(--white);
    --foreground: var(--green-800);
    --muted: var(--gray-500);
    --muted-foreground: var(--gray-400);
    --card: var(--white);
    --card-foreground: var(--green-800);
    --border: var(--gray-200);
    --input: var(--gray-200);
    --accent: var(--green-50);
    --accent-foreground: var(--green-800);
    
    /* Minimal Shadows */
    --shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
}

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Additional global reset */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.rounded-custom {
    border-radius: var(--border-radius) !important;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--border-radius-xl) !important;
}

/* Next.js Style Hero Section with Video Background */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding: 0px 0px 60px 0px;
    overflow: hidden;
    margin-top: 0;
    top: 0;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Video Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    text-align: left;
    max-width: 900px;
    margin: 0;
    position: relative;
    z-index: 3;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    margin-bottom: 32px;
    transition: all 0.2s ease;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 700;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    margin-top: 40px;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    gap: 0;
}

.hero-stat {
    text-align: left;
    padding: 6px 0px 6px 0;
    /* Removed background and border for cleaner look */
    background: transparent;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 38px;
    box-sizing: border-box;
    margin-right: 40px;
    margin-left: 0px;
    width: auto;
}

.hero-stat-number {
    font-size: clamp(10px, 1.25vw, 15px);
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    text-align: left;
    margin-bottom: 3px;
    white-space: nowrap;
}

.hero-stat-label {
    font-size: clamp(6px, 0.8125vw, 9px);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    text-align: left;
    font-weight: 400;
    white-space: nowrap;
}

.btn-hero {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    padding: 10px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    background: #000000;
    border-color: #000000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 10px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    position: relative;
    backdrop-filter: blur(10px);
    min-width: 160px;
}

.btn-hero-outline:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 68, 0.25);
}

/* Navbar styling - Green background */
.navbar {
    background: #86D335 !important;
    border-bottom: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: all 0.2s ease;
    margin: 0 !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
    color: white;
}

.navbar-brand:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-nav .nav-link {
    font-weight: 400;
    font-size: 16px;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: var(--border-radius);
    transition: color 0.2s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
}

/* Override any Bootstrap navbar borders */
.navbar,
.navbar-expand-lg,
.navbar-expand-lg .navbar-nav,
.navbar-expand-lg .navbar-nav .nav-link {
    border: none !important;
    box-shadow: none !important;
}

/* Override Bootstrap container borders only */
.container,
.container-fluid {
    border: none !important;
    outline: none !important;
}

/* Ensure no white borders on main content areas */
main,
section {
    margin: 0 !important;
    border: none !important;
    outline: none !important;
}

/* Hero section container override for full width */
.hero-section .container {
    padding: 0 24px !important;
}

/* Form controls */
.form-control {
    background-color: var(--accent);
    border: 1px solid var(--border);
    color: var(--foreground);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-control:focus {
    background-color: var(--accent);
    border-color: var(--primary);
    color: var(--foreground);
    box-shadow: 0 0 0 2px rgba(0, 112, 243, 0.1);
    outline: none;
}

/* Next.js Style Event Cards */
.event-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
}

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

.event-card-image {
    background: var(--border);
    position: relative;
    display: block;
    overflow: hidden;
}

.event-card-image i {
    font-size: 48px;
    color: var(--muted);
    opacity: 0.6;
}

.event-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--background);
    color: var(--foreground);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--border);
}

.event-card-body {
    padding: 24px;
}

.event-title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--card-foreground);
    line-height: 1.4;
}

.event-description {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--muted);
}

.event-meta i {
    width: 16px;
    color: var(--muted);
}

.event-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 16px;
}

.btn-event {
    background: var(--foreground);
    color: var(--background);
    border: 1px solid var(--foreground);
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    width: 100%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-event:hover {
    background: var(--muted);
    border-color: var(--muted);
    color: var(--background);
}

.section-title {
    font-weight: 700;
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 16px;
    text-align: center;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.2;
    background-color: #000;
    padding: 12px 24px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--muted);
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
    position: relative;
}

/* Events section top border */
section.content-section#events {
    border-top: 1px solid #dedede !important;
}

/* Next.js Style Stats Section */
.stats-section {
    background: transparent;
    padding: 80px 0;
    margin: 100px 0;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
}

.stat-number {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 700;
    color: var(--foreground);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--muted);
    font-weight: 400;
}

/* Next.js Style Footer */
.footer {
    background: #86D335;
    color: black;
    padding: 60px 0 30px;
    border-top: 1px solid #75B82D;
}

.footer-brand {
    font-weight: 700;
    font-size: 20px;
    color: black;
    margin-bottom: 16px;
}

.footer-text {
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-link {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 400;
    display: inline-block;
    padding: 6px 0;
    font-size: 15px;
}

.footer-link:hover {
    color: black;
    padding-left: 8px;
}

.footer-social {
    color: rgba(0, 0, 0, 0.75);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.footer-social:hover {
    color: black;
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.footer h6 {
    color: black;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer .form-control {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 8px 0 0 8px;
    padding: 12px 16px;
    font-size: 15px;
}

.footer .form-control:focus {
    box-shadow: 0 0 0 3px rgba(0, 168, 68, 0.2);
    border-color: #00a844;
}

.footer .btn-subscribe {
    background: #00a844;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer .btn-subscribe:hover {
    background: #00883a;
    transform: translateX(2px);
}

.footer .footer-logo {
    filter: brightness(0) saturate(100%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer .footer-logo:hover {
    opacity: 1;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 9999;
    font-weight: 500;
}

.skip-link:focus {
    top: 6px;
    color: white;
    text-decoration: none;
}

/* Video Controls for Accessibility */
.video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
}

.btn-video-control {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.btn-video-control:hover {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transform: scale(1.1);
}

/* Button Styles for New Classes */
.btn-create-event {
    border-radius: var(--border-radius) !important;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none !important;
    color: white !important;
}

.btn-create-event:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border: none !important;
}

.btn-view-all {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    padding: 12px 32px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border-radius: var(--border-radius) !important;
    transition: all 0.2s ease;
}

.btn-view-all:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

.btn-subscribe {
    background: var(--primary) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary) !important;
    padding: 12px 24px !important;
    border-radius: var(--border-radius) !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-subscribe:hover {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: var(--white) !important;
}

/* Newsletter Form */
.newsletter-form .input-group {
    margin-bottom: 0;
}

.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.2);
    color: black;
}

.newsletter-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.newsletter-form .form-control:focus {
    background: white;
    border-color: black;
    color: black;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: 0 !important;
}

/* Footer Divider */
.footer-divider {
    border-color: var(--border) !important;
    margin: 3rem 0 2rem !important;
}

/* Copyright Section */
.copyright-section {
    background-color: #2d5016;
    color: white;
    padding: 10px 0;
}

.copyright-text,
.copyright-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.copyright-link:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

/* Clients Section */
.clients-section {
    overflow: hidden;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.clients-container {
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: scroll-left 60s linear infinite;
    width: max-content;
}

.client-card {
    width: 100px;
    height: 60px;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.client-card img {
    max-width: 90px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100px * 36 - 20px * 36));
    }
}

/* Pause animation on hover */
.clients-section:hover .clients-track {
    animation-play-state: paused;
}

/* Improved Focus Styles for Accessibility */
button:focus-visible,
a:focus-visible,
.form-control:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .btn-video-control {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .hero-badge {
        background: rgba(255, 255, 255, 0.3);
        border: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-badge {
        animation: none;
        border: none;
    }
    
    @keyframes fadeInUp {
        0%, 100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .btn-hero::before {
        transition: none;
    }
    
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-video,
    .hero-overlay,
    .video-controls,
    .btn-video-control {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
        background: white;
        color: black;
    }
    
    .hero-content {
        color: black;
    }
    
    .hero-title {
        color: black;
        text-shadow: none;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(4, auto);
        max-width: none;
        gap: 0;
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .hero-stats {
        grid-template-columns: repeat(3, auto);
        max-width: none;
        gap: 0;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0px 0px 60px 0px;
        min-height: 100vh;
        margin-top: 0;
        top: 0;
    }
    
    .hero-title {
        font-size: clamp(40px, 12vw, 56px);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 48px;
        align-items: flex-start;
    }
    
    .btn-hero,
    .btn-hero-outline {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, auto);
        gap: 0;
        margin-top: 40px;
        max-width: none;
    }
    
    .section-title {
        font-size: clamp(28px, 8vw, 40px);
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 48px;
    }
    

}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(2, auto);
        gap: 0;
        max-width: none;
        margin-left: 0;
    }
    
    .hero-stat {
        min-height: 35px;
        padding: 6px 0px 6px 0;
        align-items: flex-start;
        margin-right: 40px;
        margin-left: 0px;
        width: auto;
    }
    
    .hero-stat-number {
        font-size: clamp(8px, 1.875vw, 10px);
    }
    
    .hero-stat-label {
        font-size: clamp(5px, 1.5625vw, 6px);
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
        border: none;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, auto);
        gap: 0;
        max-width: none;
        margin-top: 40px;
        margin-left: 0;
    }
    
    .hero-stat {
        min-height: 31px;
        padding: 5px 0px 5px 0;
        align-items: flex-start;
        margin-right: 40px;
        margin-left: 0px;
        width: auto;
    }
}

@media (max-width: 360px) {
    .hero-stats {
        grid-template-columns: auto;
        gap: 0;
        max-width: none;
        margin-left: 0;
    }
    
    .hero-stat {
        padding: 6px 0px 6px 0;
        margin-bottom: 0;
        align-items: flex-start;
        margin-right: 40px;
        margin-left: 0px;
        width: auto;
    }
}

/* Event View Page Layout - Match Fullscreen Preview */

/* Fullscreen hero - edge to edge */
.event-view-page .fullscreen-hero {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
}

/* Hero image styling */
.event-view-page .fullscreen-hero .hero img {
    width: 100% !important;
}

/* Event Summary Accordion - 1087px centered */
.event-view-page #eventSummaryAccordion {
    max-width: 1087px;
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

/* Main content section - 1087px centered */
.event-view-page #main-content {
    max-width: 1087px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* Prevent horizontal scroll from fullscreen hero */
body:has(.event-view-page) {
    overflow-x: hidden;
}

/* Large screens - more space for stats */
@media (min-width: 1200px) {
    .hero-stats {
        gap: 0;
        max-width: none;
        margin-left: 0;
    }
    
    .hero-stat-number {
        font-size: 23px;
    }
    
    .hero-stat-label {
        font-size: 10px;
    }
}

/* Extra large screens */
@media (min-width: 1400px) {
    .hero-stats {
        gap: 0;
        margin-left: 0;
    }
    
    .hero-stat-number {
        font-size: 25px;
    }
    
    .hero-stat-label {
        font-size: 11px;
    }
} 


/* ============================================
   Event Card Simple - Clean Design
   ============================================ */

.event-card-simple {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    height: 100%;
}

.event-card-simple-image {
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.event-card-simple-image img {
    width: 100%;
    height: auto;
    display: block;
}

.event-card-simple-content {
    padding: 15px;
}

.event-card-simple-date {
    font-size: 13px;
    font-weight: 600;
    color: #00883a;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-card-simple-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}
