/* Gyergyói Programok - Custom Design CSS */
/* Based on the redesign mockup */

:root {
  --brand-yellow: #FFB800;
  --brand-black: #1a1a1a;
  --cat-theater: #3f3259;
  --cat-festival: #ff4a00;
  --cat-community: #ffcc26;
  --cat-nature: #00964b;
  --cat-music: #3884ba;
  --cat-dance: #f2aaf4;
  --cat-tradition: #ca1f5b;
  --cat-film: #8f9438;
  --cat-exhibition: #accce4;
  --tint-yellow: #FFF8E1;
  --tint-green: #E8F5E9;
  --tint-blue: #E3F2FD;
  --tint-pink: #FCE4EC;
  --tint-purple: #EDE7F6;
  --tint-orange: #FFF3E0;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1200px;
  --gap: 24px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--gray-900); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* PAGE SWITCHER */
.time-tab { cursor: pointer; user-select: none; }
/* Page switcher removed - not needed in WP */

/* HEADER */
header { padding: 16px 0; border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); z-index: 100; }
.header-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.header-search { position: relative; flex: 0 0 220px; }
.header-search input { width: 100%; padding: 8px 12px 8px 36px; border: 1px solid var(--gray-200); border-radius: 24px; font-size: 13px; background: var(--gray-50); outline: none; transition: border-color 0.2s; font-family: var(--font-body); }
.header-search input:focus { border-color: var(--brand-yellow); background: #fff; }
.header-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--gray-400); }
.logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brand-black); text-decoration: none; }
.logo .sun { color: var(--brand-yellow); }
nav { display: flex; align-items: center; gap: 28px; }
nav ul { list-style: none; display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; }
nav li { display: inline; }
nav a { text-decoration: none; color: var(--gray-600); font-size: 14px; font-weight: 500; transition: color 0.2s; }
nav a:hover { color: var(--brand-black); }
nav a.active, nav .current-menu-item > a { color: var(--brand-black); border-bottom: 2px solid var(--brand-yellow); padding-bottom: 2px; }

/* HERO */
.hero { padding: 48px 0 32px; background: linear-gradient(135deg, var(--tint-yellow) 0%, #fff 50%, var(--tint-green) 100%); position: relative; overflow: hidden; }
.hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }
.hero h1 { font-family: var(--font-display); font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.hero h1 .highlight { color: var(--brand-yellow); }
.hero p.subtitle { font-size: 18px; color: var(--gray-600); margin-bottom: 32px; max-width: 500px; }
.hero .date-display { font-size: 15px; color: var(--gray-500); margin-bottom: 4px; font-weight: 500; }

/* CATEGORIES */
.categories { max-width: var(--container); margin: 0 auto; padding: 24px var(--gap) 8px; }
.categories h3 { font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-400); margin-bottom: 12px; }
.cat-scroll-wrapper { position: relative; padding: 0 44px 0 0; }
.cat-scroll-wrapper.has-left { padding-left: 44px; }
.cat-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.cat-row::-webkit-scrollbar { display: none; }
.cat-scroll-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--gray-200); background: white; color: var(--gray-500); cursor: pointer; display: none; align-items: center; justify-content: center; transition: all 0.2s; z-index: 2; padding: 0; }
.cat-scroll-btn:hover { border-color: var(--gray-400); color: var(--gray-700); background: var(--gray-50, #f9f9f9); }
.cat-scroll-left { left: 0; }
.cat-scroll-right { right: 0; }
.cat-pill { display: flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 24px; border: 2px solid var(--gray-200); background: white; cursor: pointer; white-space: nowrap; font-size: 13px; font-weight: 500; transition: all 0.2s; color: var(--gray-700); }
.cat-pill:hover { border-color: var(--gray-400); transform: translateY(-1px); }
.cat-pill .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cat-pill img.cat-icon { width: 36px; height: 36px; flex-shrink: 0; }

/* TIME TABS */
.time-tabs { max-width: var(--container); margin: 0 auto; padding: 24px var(--gap) 0; display: flex; gap: 0; border-bottom: 1px solid var(--gray-200); }
.time-tab { padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--gray-500); cursor: pointer; border-bottom: 3px solid transparent; transition: all 0.2s; font-family: var(--font-display); }
.time-tab:hover { color: var(--gray-700); }
.time-tab.active { color: var(--brand-black); border-bottom-color: var(--brand-yellow); }
.time-tab .count { background: var(--gray-200); color: var(--gray-600); font-size: 11px; padding: 2px 7px; border-radius: 10px; margin-left: 6px; }
.time-tab.active .count { background: var(--brand-yellow); color: var(--brand-black); }

/* EVENT CARDS */
.events-section { max-width: var(--container); margin: 0 auto; padding: var(--gap); }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: var(--gap); }
.event-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; cursor: pointer; }
.event-card:hover { border-color: var(--gray-300); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.event-card .card-image { width: 100%; height: 200px; background-size: cover; background-position: center; position: relative; }
.event-card .card-image .date-badge { position: absolute; top: 12px; left: 12px; background: white; border-radius: 10px; padding: 6px 10px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); line-height: 1; }
.date-badge .day { font-family: var(--font-display); font-size: 22px; font-weight: 700; display: block; }
.date-badge .month { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); display: block; margin-top: 2px; }
.event-card .card-image .cat-badge { position: absolute; bottom: 12px; left: 12px; padding: 6px 12px 6px 8px; border-radius: 8px; font-size: 12px; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.cat-badge { color: white; display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.cat-badge img { width: 22px; height: 22px; filter: brightness(0) invert(1); }
.card-body { padding: 16px 20px 20px; }
.card-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.card-meta { display: flex; flex-direction: column; gap: 4px; color: var(--gray-500); font-size: 13px; }
.card-meta .meta-item { display: flex; align-items: center; gap: 6px; }
.card-meta svg { width: 15px; height: 15px; flex-shrink: 0; }

/* FEATURED */
.featured-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--brand-black); border-radius: 20px; overflow: hidden; color: white; min-height: 340px; }
.featured-card .feat-image { background-size: cover; background-position: center; min-height: 340px; }
.featured-card .feat-content { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.featured-card .feat-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--brand-yellow); margin-bottom: 12px; }
.featured-card h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 12px; line-height: 1.2; }
.featured-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.featured-card .feat-meta { display: flex; gap: 20px; font-size: 13px; color: rgba(255,255,255,0.5); }
.feat-meta span { display: flex; align-items: center; gap: 6px; }
.btn-details { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-yellow); color: var(--brand-black); border: none; padding: 11px 22px; border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer; align-self: flex-start; margin-top: 8px; transition: all 0.2s; }
.btn-details:hover { background: #e5a600; transform: translateY(-1px); }

/* SECTION HEADER */
.section-header { max-width: var(--container); margin: 0 auto; padding: 40px var(--gap) 0; display: flex; align-items: center; justify-content: space-between; }
.section-header h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; }
.section-header a { color: var(--brand-yellow); text-decoration: none; font-weight: 600; font-size: 13px; }

/* FOOTER */
footer { background: var(--gray-50); border-top: 1px solid var(--gray-200); margin-top: 64px; padding: 48px 0 32px; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand p { color: var(--gray-500); font-size: 13px; margin-top: 12px; max-width: 320px; }
footer h4 { font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li a { color: var(--gray-600); text-decoration: none; font-size: 13px; line-height: 2; }
footer ul li a:hover { color: var(--brand-black); }
.footer-bottom { max-width: var(--container); margin: 32px auto 0; padding: 24px var(--gap) 0; border-top: 1px solid var(--gray-200); font-size: 12px; color: var(--gray-400); }

/* EVENT DETAIL */
.event-hero { position: relative; height: 420px; background-size: cover; background-position: center; }
.event-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 250px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); }
.event-hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gap) 40px; color: white; }
.event-hero-content .cat-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.event-hero-content .cat-badge img { width: 26px; height: 26px; }
.event-hero-content h1 { font-family: var(--font-display); font-size: 38px; font-weight: 700; max-width: 700px; line-height: 1.2; margin-bottom: 12px; }
.event-hero-content .organizer { font-size: 14px; opacity: 0.8; }
.event-layout { max-width: var(--container); margin: 0 auto; padding: var(--gap); display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.event-content { position: relative; overflow: hidden; }
.event-content .bg-icon { position: absolute; bottom: -30px; left: -30px; width: 280px; height: 280px; opacity: 0.3; pointer-events: none; z-index: 0; }
.event-content > * { position: relative; z-index: 1; }
.event-content h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 28px 0 12px; }
.event-content h2:first-child { margin-top: 0; }
.event-content p { color: var(--gray-700); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.event-content .program-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.program-item .time { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--brand-yellow); min-width: 56px; flex-shrink: 0; }
.program-item .desc { font-size: 14px; color: var(--gray-700); }
.event-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--gray-50); border-radius: 16px; padding: 20px; }
.sidebar-card h4 { font-family: var(--font-display); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-400); margin-bottom: 10px; }
.sidebar-card .info-row { display: flex; align-items: center; gap: 12px; }
.sidebar-card .info-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-card .info-label { font-size: 12px; color: var(--gray-500); }
.sidebar-card .info-value { font-size: 14px; font-weight: 600; }
.sidebar-card .big-date { font-family: var(--font-display); font-size: 44px; font-weight: 700; line-height: 1; color: var(--brand-black); }
.sidebar-card .big-date-sub { font-size: 13px; color: var(--gray-600); margin-top: 4px; }
.btn-calendar { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; background: var(--brand-yellow); color: var(--brand-black); border: none; border-radius: 12px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font-body); }
.btn-calendar:hover { background: #e5a600; }
.share-row { display: flex; gap: 8px; }
.share-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--gray-200); background: white; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.share-btn:hover { background: var(--gray-100); }

/* ESEMENYEK PAGE - with calendar sidebar */
.events-page-layout { max-width: var(--container); margin: 0 auto; padding: var(--gap); display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.events-main { min-width: 0; }
.events-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* Mini Calendar */
.mini-calendar { background: white; border: 1px solid var(--gray-200); border-radius: 16px; padding: 20px; }
.mini-calendar .cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mini-calendar .cal-header h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.cal-nav { display: flex; gap: 4px; }
.cal-nav button { width: 28px; height: 28px; border-radius: 6px; border: 1px solid var(--gray-200); background: white; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; padding: 0;}
.cal-nav button:hover { background: var(--gray-100); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.cal-grid .day-name { font-size: 11px; font-weight: 600; color: var(--gray-400); padding: 4px; text-transform: uppercase; }
.cal-grid .day-cell { font-size: 13px; padding: 6px; border-radius: 8px; cursor: pointer; transition: all 0.15s; }
.cal-grid .day-cell:hover { background: var(--gray-100); }
.cal-grid .day-cell.today { background: var(--brand-yellow); color: var(--brand-black); font-weight: 700; }
.cal-grid .day-cell.has-event { position: relative; padding-bottom: 10px; cursor: pointer; }
.cal-grid .day-cell.selected { background: var(--brand-black, #1a1a1a); color: white; font-weight: 700; }
.cal-grid .day-cell .cal-dots { position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); display: flex; gap: 2px; }
.cal-grid .day-cell .cal-dot { width: 5px; height: 5px; border-radius: 50%; display: block; }
.cal-grid .day-cell .cal-bar { position: absolute; bottom: 2px; left: 20%; right: 20%; height: 4px; border-radius: 2px; display: block; }
.cal-grid .day-cell.other-month { color: var(--gray-300); }

/* HELYSZINEK PAGE */
.venue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--gap); max-width: var(--container); margin: 0 auto; padding: var(--gap); }
.venue-card { background: white; border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.venue-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.venue-card .venue-img { height: 180px; background-size: cover; background-position: center; }
.venue-card .venue-body { padding: 16px 20px; flex: 1; display: flex; flex-direction: column; }
.venue-card .venue-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.venue-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin: 0; }
.venue-card .venue-event-count { font-size: 11px; font-weight: 600; color: var(--gray-500); background: var(--gray-100, #f0f0f0); padding: 2px 8px; border-radius: 10px; white-space: nowrap; flex-shrink: 0; }
.venue-card .venue-address { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray-500); margin-bottom: 8px; }
.venue-card .venue-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin: 0 0 12px; }
.venue-card .venue-upcoming { border-top: 1px solid var(--gray-100, #f0f0f0); padding-top: 10px; margin-top: auto; display: flex; flex-direction: column; gap: 6px; }
.venue-card .venue-upcoming-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); }
.venue-card .venue-upcoming-item { display: flex; gap: 10px; align-items: center; font-size: 13px; text-decoration: none; color: inherit; padding: 3px 0; transition: color 0.15s; }
.venue-card .venue-upcoming-item:hover { color: var(--brand-yellow); }
.venue-card .venue-upcoming-date { font-size: 11px; font-weight: 600; color: var(--gray-400); min-width: 45px; }
.venue-card .venue-upcoming-title { font-weight: 500; }
.venue-card .venue-all-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--brand-yellow); text-decoration: none; margin-top: 12px; transition: gap 0.2s; }
.venue-card .venue-all-link:hover { gap: 10px; }

/* KAPCSOLAT PAGE */
.contact-layout { max-width: var(--container); margin: 0 auto; padding: var(--gap); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-group input, .form-group textarea { padding: 12px 16px; border: 1px solid var(--gray-200); border-radius: 10px; font-size: 14px; font-family: var(--font-body); transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-yellow); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-card { background: var(--gray-50); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.contact-item .ci-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-item .ci-value { font-size: 15px; font-weight: 500; margin-top: 2px; }
.contact-item a { color: var(--brand-black); text-decoration: none; }

/* SZERVEZOKNEK PAGE */
.organizer-hero { background: linear-gradient(135deg, var(--brand-black) 0%, #2d2d2d 100%); color: white; padding: 64px 0; text-align: center; }
.organizer-hero h1 { font-family: var(--font-display); font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.organizer-hero p { font-size: 16px; opacity: 0.7; max-width: 500px; margin: 0 auto; }
.steps-grid { max-width: var(--container); margin: 0 auto; padding: 48px var(--gap); display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.steps-column { display: flex; flex-direction: column; gap: 24px; }
.form-column iframe { width: 100%; min-height: 1417px; border: none; border-radius: 12px; }
.step-card { text-align: left; padding: 32px 24px; background: var(--gray-50); border-radius: 12px; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--brand-yellow); line-height: 1; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.benefits-section { background: var(--gray-50); padding: 48px 0; }
.benefits-grid { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.benefit-card { background: white; border-radius: 16px; padding: 28px; border: 1px solid var(--gray-200); }
.benefit-card .bc-icon { font-size: 28px; margin-bottom: 12px; }
.benefit-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.benefit-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* Quick info bar */
.quick-info { background: var(--tint-yellow); padding: 10px 0; text-align: center; font-size: 13px; color: var(--gray-700); }
.quick-info strong { color: var(--brand-black); }

/* Page hero (generic) */
.page-hero { padding: 40px 0 32px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.page-hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }
.page-hero h1 { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.page-hero p { font-size: 15px; color: var(--gray-600); }

/* Sidebar filter card */
.filter-card { background: white; border: 1px solid var(--gray-200); border-radius: 16px; padding: 20px; }
.filter-card h4 { font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 12px; }
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-item { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; padding: 6px 8px; border-radius: 8px; transition: background 0.15s; }
.filter-item:hover { background: var(--gray-50); }
.filter-item.active { background: var(--gray-100, #f0f0f0); font-weight: 600; }
.filter-item .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.filter-item img.filter-icon { width: 32px; height: 32px; flex-shrink: 0; }
.filter-item .filter-count { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--gray-400); background: var(--gray-100, #f0f0f0); padding: 1px 7px; border-radius: 10px; }

/* Highlight box */
.highlight-box { background: var(--tint-yellow); border-radius: 12px; padding: 16px; font-size: 13px; color: var(--gray-700); }
.highlight-box strong { color: var(--brand-black); }

/* CTA block */
.cta-block { max-width: var(--container); margin: 48px auto 0; padding: 0 var(--gap); }
.cta-inner { background: var(--brand-black); color: white; border-radius: 20px; padding: 48px; text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-inner p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 24px; }

/* SLIDER */
.slider-wrapper { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); position: relative; }
.slider-track { overflow: hidden; border-radius: 20px; }
.slider-inner { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.slider-slide { min-width: 100%; }
.slider-slide .featured-card { border-radius: 0; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: all 0.2s; padding: 0; }
.slider-dot.active { background: var(--brand-yellow); width: 28px; border-radius: 5px; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 5; box-shadow: 0 2px 8px rgba(0,0,0,0.1); font-size: 18px; transition: all 0.2s; padding: 0;}
.slider-nav:hover { background: white; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.slider-nav.prev { left: 8px; }
.slider-nav.next { right: 8px; }

/* Responsive */
/* HAMBURGER MENU */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 201; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--brand-black); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE OVERLAY NAV */
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 150; opacity: 0; transition: opacity 0.3s; }
.mobile-overlay.show { opacity: 1; }

/* TABLET — 1024px */
@media (max-width: 1024px) {
  .header-search { flex: 0 0 180px; }
  nav { gap: 16px; }
  nav ul { gap: 16px; }
  nav a { font-size: 13px; }
  .events-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .event-layout, .events-page-layout { gap: 32px; }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE — 768px */
@media (max-width: 768px) {
  :root { --gap: 16px; }
  .hamburger { display: block; }

  /* MOBILE NAV */
  nav { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: #fff; flex-direction: column; align-items: flex-start; padding: 80px 24px 24px; gap: 0; z-index: 200; box-shadow: -4px 0 24px rgba(0,0,0,0.1); transition: right 0.3s ease; }
  nav.open { right: 0; }
  nav ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  nav li { width: 100%; }
  nav a { font-size: 16px; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--gray-100); }
  nav a.active, nav .current-menu-item > a { border-bottom-color: var(--brand-yellow); }
  .mobile-overlay.show { display: block; }

  .header-inner { flex-wrap: wrap; }
  .header-search { flex: 1 1 100%; order: 3; margin-top: 8px; }

  /* QUICK INFO */
  .quick-info { font-size: 12px; padding: 8px var(--gap); }

  /* HERO */
  .hero h1 { font-size: 26px; }
  .hero p.subtitle { font-size: 15px; }

  /* SLIDER */
  .featured-card { grid-template-columns: 1fr; }
  .featured-card .feat-image { min-height: 200px; border-radius: 12px 12px 0 0; }
  .featured-card .feat-content { padding: 20px; }
  .featured-card .feat-content h2 { font-size: 20px; }
  .slider-nav { width: 36px; height: 36px; font-size: 20px; }

  /* CATEGORIES */
  .cat-pill img.cat-icon { width: 28px; height: 28px; }
  .cat-pill { padding: 6px 10px; font-size: 12px; }

  /* TIME TABS */
  .time-tabs { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .time-tabs::-webkit-scrollbar { display: none; }
  .time-tab { padding: 10px 16px; font-size: 13px; white-space: nowrap; flex-shrink: 0; }

  /* EVENT CARDS GRID */
  .events-grid { grid-template-columns: 1fr; }

  /* EVENT LIST CARDS (events page) */
  .event-card[style*="grid-template-columns: 200px"] { grid-template-columns: 120px 1fr !important; }
  .event-card[style*="grid-template-columns: 200px"] .card-body h3 { font-size: 15px; }

  /* EVENT DETAIL */
  .event-layout, .events-page-layout, .contact-layout { grid-template-columns: 1fr; }
  .event-hero { height: 260px; }
  .event-hero-content h1 { font-size: 22px; }
  .event-content .bg-icon { width: 180px; height: 180px; }

  /* SIDEBAR */
  .event-sidebar { order: -1; }
  .sidebar-card .big-date { font-size: 36px; }

  /* VENUES */
  .venue-grid { grid-template-columns: 1fr; }

  /* ORGANIZERS */
  .steps-grid, .benefits-grid { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  footer .footer-inner div ul { margin-left: 0 !important;}

  /* CTA */
  .cta-inner { padding: 32px 20px; }
  .cta-inner h2 { font-size: 22px; }
}

/* SMALL MOBILE — 480px */
@media (max-width: 480px) {
  .hero h1 { font-size: 22px; }
  .events-grid { gap: 16px; }
  .event-card[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .event-card[style*="grid-template-columns"] > div:first-child { min-height: 160px !important; border-radius: 12px 12px 0 0 !important; }
  .event-hero { height: 220px; }
  .event-hero-content h1 { font-size: 20px; }
  .cat-badge { font-size: 11px; }
  .cat-badge img { width: 18px; height: 18px; }
  .time-tab { padding: 8px 12px; font-size: 12px; }
  .logo { font-size: 16px !important; }
}

/* WordPress Astra overrides */
.ast-container { max-width: var(--container); }
.site-header, #masthead { display: none !important; }
.site-content > .ast-container { max-width: 100%; padding: 0; display: block; }
#primary { width: 100%; margin: 0; padding: 0; }
.entry-content { margin: 0; padding: 0; }
.ast-separate-container .ast-article-single { padding: 0; margin: 0; background: transparent; }
.ast-separate-container .ast-article-post { padding: 0; margin: 0; background: transparent; }
#secondary { display: none; }
.site-footer, .ast-small-footer, .ast-footer-overlay { display: none !important; }
.ast-separate-container { background: #fff; }
body { font-family: var(--font-body); }

/* SEARCH RESULTS */
.search-again { margin-top: 16px; max-width: 480px; }
.search-again form { display: flex; border: 2px solid var(--gray-200); border-radius: 12px; overflow: hidden; background: white; }
.search-again input { flex: 1; border: none; padding: 10px 16px; font-size: 14px; font-family: var(--font-body); outline: none; }
.search-again button { border: none; background: var(--brand-yellow); padding: 10px 16px; cursor: pointer; color: var(--brand-black); transition: background 0.2s; }
.search-again button:hover { background: #e6a600; }
.search-results-layout { max-width: var(--container); margin: 0 auto; padding: 24px var(--gap) 48px; }
.search-results-list { display: flex; flex-direction: column; gap: 16px; }
.search-result-item { display: flex; gap: 16px; background: white; border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.search-result-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.search-result-thumb { width: 180px; min-height: 120px; background-size: cover; background-position: center; flex-shrink: 0; }
.search-result-content { padding: 16px; flex: 1; }
.search-result-type { display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 4px; }
.search-result-content h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin: 0 0 6px; }
.search-result-content h3 a { text-decoration: none; color: inherit; }
.search-result-content h3 a:hover { color: var(--brand-yellow); }
.search-result-content p { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin: 0; }
.search-no-results { text-align: center; padding: 60px 20px; }
.search-no-results h2 { font-family: var(--font-display); font-size: 22px; margin: 16px 0 8px; }
.search-no-results p { color: var(--gray-500); font-size: 14px; margin: 0 0 8px; }
.search-no-results .btn-details { margin-top: 16px; display: inline-flex; }
.search-pagination { display: flex; justify-content: center; gap: 4px; margin-top: 32px; }
.search-pagination a, .search-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; color: var(--gray-600); border: 1px solid var(--gray-200); transition: all 0.15s; }
.search-pagination a:hover { background: var(--gray-50); border-color: var(--gray-400); }
.search-pagination .current { background: var(--brand-yellow); color: var(--brand-black); font-weight: 700; border-color: var(--brand-yellow); }
@media (max-width: 600px) {
  .search-result-item { flex-direction: column; }
  .search-result-thumb { width: 100%; min-height: 160px; }
  .search-results-list .event-card { grid-template-columns: 1fr !important; }
  .search-results-list .event-card .search-card-image { border-radius: 12px 12px 0 0; min-height: 160px; }
}
