@charset "utf-8";
/* CSS Document */

		:root {
            --black: #121212;
            --grey: #666;
            --light-grey: #f0f0f0;
            --border: #eee;
            --accent: #007aff;
            --nav-height: 70px;
        }

        * { box-sizing: border-box; }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
            line-height: 1.6;
            color: var(--black);
            margin: 0;
            padding-top: var(--nav-height);
            background-color: #fff;
        }

        /* Fixed Navigation */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            height: var(--nav-height);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
        }

        .logo { font-weight: 800; font-size: 1.2rem; text-decoration: none; color: #000; }
        .nav-links a { margin-left: 1.5rem; text-decoration: none; color: var(--black); font-size: 0.9rem; font-weight: 500; }

        /* Header & Filters */
        header {
            max-width: 1100px;
            margin: 4rem auto 1rem;
            padding: 0 5%;
        }

        h1 { font-size: 3rem; margin-bottom: 0.5rem; letter-spacing: -2px; }
        .site-desc { color: var(--grey); font-size: 1.1rem; max-width: 1100px; margin-bottom: 2rem; }

        .filter-bar {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .filter-btn {
			text-decoration: none;
            background: var(--light-grey);
            border: none;
            padding: 0.5rem 1.2rem;
            border-radius: 4px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: 0.2s;
            color: var(--black);
            font-weight: 500;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--black);
            color: #fff;
        }

        /* Event Card Styles */
        .container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }

        .event-card {
            display: flex;
            gap: 3rem;
            margin-bottom: 5rem;
            padding-bottom: 3rem;
        }

        .poster-wrapper { flex: 0 0 320px; cursor: zoom-in; }
        .poster-wrapper img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            border-radius: 2px;
            transition: transform 0.3s ease;
        }
        .poster-wrapper:hover img { transform: scale(1.02); }

        .event-content { flex: 1; }
        .event-date { font-weight: 600; color: var(--grey); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 0.5rem; }
        
        /* Event Title as Link */
        .event-title-link { text-decoration: none; color: inherit; }
        .event-title { font-size: 2.2rem; margin: 0 0 1rem 0; line-height: 1.1; transition: color 0.2s; }
        .event-title-link:hover .event-title { color: var(--accent); }

        .event-desc { font-size: 1.1rem; color: #444; margin-bottom: 0.5rem; }
        
        .event-location {
            font-size: 0.9rem;
            margin-bottom: 2rem;
            color: var(--grey);
        }
        .event-location a { color: var(--black); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

        .links { display: flex; gap: 0.8rem; flex-wrap: wrap; }
        .links a {
            text-decoration: none;
            font-size: 0.75rem;
            color: var(--black);
            font-weight: 700;
            padding: 0.5rem 1rem;
            border: 1px solid var(--black);
            text-transform: uppercase;
        }
        .links a:hover { background: var(--black); color: #fff; }

        /* Lightbox Overlay */
        #lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            cursor: zoom-out;
        }
        #lightbox img {
            max-width: 90%;
            max-height: 90%;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
        }

        /* Pagination & Footer */
        .pagination { display: flex; justify-content: center; gap: 1rem; margin: 4rem 0 6rem; }
        .pagination a { text-decoration: none; color: var(--grey); padding: 0.5rem 1rem; border: 1px solid var(--border); }
        .pagination a.active { border-color: var(--black); color: var(--black); font-weight: bold; }

        footer {
            background: #fafafa;
            padding: 4rem 5%;
            text-align: center;
            border-top: 1px solid var(--border);
            font-size: 0.9rem;
            color: var(--grey);
        }

        /* Mobile */
        @media (max-width: 800px) {
            .event-card { flex-direction: column; gap: 1.5rem; }
            .poster-wrapper { width: 100%; }
            h1 { font-size: 2.2rem; }
        }