@charset "utf-8";
/* CSS Document */

		:root {
            --black: #121212;
            --grey: #666;
            --light-grey: #f8f8f8;
            --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; }

		/* Breadcrumbs - Minimalist Style */
        .breadcrumbs {
            font-size: 0.75rem;
            color: var(--grey);
            margin: 2rem 0 3rem 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .breadcrumbs a {
            text-decoration: none;
            color: var(--grey);
        }
        .breadcrumbs a:hover { color: var(--black); }
        .breadcrumbs .sep { margin: 0 0.8rem; opacity: 0.3; }
        .breadcrumbs .current { color: var(--black); font-weight: 700; }
		
        /* Main Container */
        .container { max-width: 1100px; margin: 0 auto; padding: 0 5% 6rem; }

        /* Split Header (Same as Front Page) */
        .event-header-grid {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 4rem;
            margin-bottom: 5rem;
            align-items: start;
        }

        .poster-wrapper {
            width: 100%;
            cursor: zoom-in;
        }

        .poster-wrapper img {
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .event-main-info h1 {
            font-size: 3.5rem;
            margin: 0 0 1.5rem 0;
            line-height: 1;
            letter-spacing: -2px;
        }

        .event-description {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .event-location {
            font-size: 1rem;
            margin-bottom: 2.5rem;
            color: var(--grey);
        }
        .event-location a { color: var(--black); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }

        /* Action Buttons */
        .btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
        .btn-group a {
            text-decoration: none;
            font-size: 0.8rem;
            color: var(--black);
            font-weight: 700;
            padding: 0.6rem 1.2rem;
            border: 1px solid var(--black);
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.2s;
        }
        .btn-group a:hover { background: var(--black); color: #fff; }

        /* Content Sections */
        .content-section { margin-bottom: 5rem; max-width: 1100px; }
        .section-title { 
            font-size: 1.2rem; 
            margin-bottom: 2rem; 
            border-bottom: 2px solid var(--black); 
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 800;
        }

        /* Skills */
        .skills-list { display: flex; gap: 1rem; flex-wrap: wrap; }
        .skill-item { font-weight: 600; border-bottom: 1px solid var(--black); padding-bottom: 2px; }

        /* Pricing Table */
        .pricing-table { width: 100%; border-collapse: collapse; }
        .pricing-table tr { border-bottom: 1px solid var(--border); }
        .pricing-table td { padding: 1.2rem 0; font-size: 1.1rem; }
        .pricing-table td:last-child { text-align: right; font-weight: 700; }

        /* Gallery & Video */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        .gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: zoom-in; }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            background: #000;
        }
        .video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

        /* Lightbox */
        #lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.95);
            display: none; justify-content: center; align-items: center;
            z-index: 2000; cursor: zoom-out;
        }
        #lightbox img { max-width: 90%; max-height: 90%; }

        /* Footer Area */
        footer { 
            padding: 4rem 5%; 
            text-align: center; 
            background-color: #fafafa;
            border-top: 1px solid var(--border); 
            font-size: 0.9rem; 
            color: var(--grey); 
        }

        @media (max-width: 850px) {
            .event-header-grid { grid-template-columns: 1fr; gap: 2rem; }
            .poster-wrapper { max-width: 400px; margin: 0 auto; }
            .event-main-info h1 { font-size: 2.5rem; }
        }