/* ===========================
   DALLAS DOSAGE — STYLES
   Built on the same multi-city template; see _reference/ for origin.
   =========================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Open Sans', sans-serif; background: #f5f5f5; color: #1a1a1a; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- CSS VARIABLES --- */
:root {
  --navy: #0d1b2a;
  --navy-mid: #1b2d42;
  --gold: #c9a84c;
  --gold-light: #e8c96b;

  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-text: #555;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
  --header-h: 68px;
}

/* --- TOP BAR --- */
.top-bar { background: var(--navy); color: #ccc; font-size: 0.78rem; padding: 6px 0; border-bottom: 1px solid #243347; }
.top-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; align-items: center; gap: 12px; }
.weather-widget { color: var(--gold); font-weight: 600; }
.weather-widget i { margin-right: 4px; }
.top-bar-divider { color: #444; }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-right a { color: #bbb; font-size: 0.9rem; transition: color var(--transition); }
.top-bar-right a:hover { color: var(--gold); }
.top-bar-cta { background: var(--gold); color: var(--navy) !important; padding: 3px 10px; border-radius: 4px; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.5px; text-transform: uppercase; transition: background var(--transition); }
.top-bar-cta:hover { background: var(--gold-light) !important; }

/* --- HEADER --- */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; height: var(--header-h); gap: 32px; }

/* --- LOGO --- */
.site-logo { display: flex; align-items: baseline; gap: 4px; line-height: 1; }
.logo-only { font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 400; color: #aaa; letter-spacing: 2px; text-transform: uppercase; }
.logo-city { font-family: 'Oswald', sans-serif; font-size: 1.55rem; font-weight: 700; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }
.logo-badge { background: var(--gold); color: var(--navy); font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 700; padding: 1px 7px; border-radius: 4px; margin-left: 4px; }
.footer-logo { flex-direction: column; align-items: flex-start; gap: 2px; }

/* --- NAVIGATION --- */
.main-nav { flex: 1; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; padding: 8px 12px; color: #ccc; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; border-radius: 4px; transition: color var(--transition), background var(--transition); }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--gold); }
.main-nav > ul > li > a .fa-chevron-down { font-size: 0.65rem; margin-left: 3px; }

/* Dropdown */
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--navy-mid); border-top: 2px solid var(--gold); min-width: 180px; border-radius: 0 0 6px 6px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all var(--transition); z-index: 200; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 16px; color: #ccc; font-size: 0.82rem; font-weight: 500; transition: color var(--transition), background var(--transition); }
.dropdown li a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.dropdown li a i { color: var(--gold); margin-right: 6px; font-size: 0.75rem; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.search-btn, .hamburger { background: none; border: none; color: #aaa; cursor: pointer; padding: 6px 10px; font-size: 1rem; transition: color var(--transition); border-radius: 4px; }
.search-btn:hover, .hamburger:hover { color: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #ccc; border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search bar */
.search-bar { background: #162032; border-top: 1px solid #243347; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.search-bar.open { max-height: 80px; }
.search-bar-inner { max-width: 1280px; margin: 0 auto; padding: 12px 20px; display: flex; gap: 10px; align-items: center; }
.search-bar-inner input { flex: 1; background: #243347; border: none; border-radius: 6px; color: #fff; padding: 10px 16px; font-size: 0.95rem; outline: none; }
.search-bar-inner input::placeholder { color: #666; }
.search-submit, .search-close { background: var(--gold); border: none; color: var(--navy); padding: 10px 16px; border-radius: 6px; cursor: pointer; font-size: 0.9rem; font-weight: 700; transition: background var(--transition); }
.search-submit:hover { background: var(--gold-light); }
.search-close { background: #243347; color: #aaa; }
.search-close:hover { background: #3a3a3a; color: #fff; }

/* --- HERO SECTION --- */
.hero-section { background: #111; padding: 0; }
.hero-featured { display: grid; grid-template-columns: 3fr 2fr; max-height: 540px; }
.hero-card { position: relative; display: block; overflow: hidden; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.5s ease; }
.hero-card.map-pack-card img { object-position: center 85%; }
.hero-card.map-pack-card .hero-overlay { background: none; }

.hero-card:hover img { transform: scale(1.04); }
.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 22px; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 60%, transparent 100%); }
.hero-large .hero-overlay { padding: 30px 28px; }
.hero-category { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 9px; border-radius: 3px; margin-bottom: 8px; }
.hero-large h2 { color: #fff; font-family: 'Oswald', sans-serif; font-size: 1.85rem; font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.hero-large p { color: #ddd; font-size: 0.88rem; line-height: 1.5; margin-bottom: 8px; }
.hero-small h3 { color: #fff; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; line-height: 1.25; margin-bottom: 4px; }
.hero-meta { color: #aaa; font-size: 0.75rem; }
.hero-meta i { color: var(--gold); margin-right: 3px; }
.hero-sidebar { display: flex; flex-direction: column; border-left: 2px solid #222; }
.hero-small { flex: 1; border-bottom: 1px solid #222; max-height: 180px; }
.hero-small:last-child { border-bottom: none; }

/* --- SECTIONS --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.section-block { padding: 56px 0; }
.section-dark { background: #eef1f6; }
.section-navy { background: var(--navy); }
.section-navy .section-title { color: var(--white); }
.section-navy .see-all { color: var(--gold); }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.accent-bar { display: none; }
.see-all { color: var(--gold); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 5px; transition: color var(--transition); }
.see-all:hover { color: var(--navy); }
.section-navy .see-all:hover { color: #fff; }

/* --- NEWS CARDS GRID --- */
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.news-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--card-shadow); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.16); }
.news-card-img { height: 180px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.news-card-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 6px; }
.news-card-body h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 8px; flex: 1; }
.news-card-body p { font-size: 0.8rem; color: var(--gray-text); line-height: 1.55; margin-bottom: 10px; }
.news-card-meta { font-size: 0.72rem; color: #999; display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.news-card-meta i { color: var(--gold); margin-right: 2px; }
.news-card-meta span:last-child { font-style: italic; }

/* Text-only news card variant (no image) */
.news-card--text { border-top: 3px solid var(--gold); }
.news-card--text .news-card-body { padding: 20px; }
.news-card--text .news-card-body h3 { font-size: 1.05rem; }

/* --- EVENTS GRID --- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--card-shadow); display: flex; flex-direction: column; transition: transform var(--transition); }
.event-card:hover { transform: translateY(-4px); }
.event-card-img { height: 160px; overflow: hidden; position: relative; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-date-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy); text-align: center; padding: 6px 10px; border-radius: 6px; font-family: 'Oswald', sans-serif; line-height: 1; }
.event-date-badge .month { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; }
.event-date-badge .day { font-size: 1.4rem; font-weight: 700; display: block; }
.event-card-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; }
.event-card-body h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.event-card-body p { font-size: 0.78rem; color: var(--gray-text); flex: 1; }
.event-card-footer { padding: 10px 16px; border-top: 1px solid var(--gray-mid); font-size: 0.75rem; color: #888; display: flex; gap: 12px; }
.event-card-footer i { color: var(--gold); margin-right: 3px; }


/* --- BUSINESS GRID --- */
.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.business-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--card-shadow); display: flex; flex-direction: column; border-top: 3px solid var(--gold); transition: transform var(--transition); }
.business-card:hover { transform: translateY(-4px); }
.business-card-img { height: 150px; overflow: hidden; }
.business-card-img img { width: 100%; height: 100%; object-fit: cover; }
.business-card-body { padding: 14px 16px; flex: 1; }
.business-card-body h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.business-card-body .biz-category { font-size: 0.72rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.business-card-body p { font-size: 0.78rem; color: var(--gray-text); line-height: 1.5; }
.business-card-footer { padding: 10px 16px; border-top: 1px solid var(--gray-mid); display: flex; justify-content: space-between; align-items: center; }
.stars { color: var(--gold); font-size: 0.78rem; }
.biz-link { font-size: 0.75rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.biz-link:hover { color: var(--navy); }

/* --- HERO NEWSLETTER PANEL --- */
.hero-newsletter {
  width: 100%;
  height: 100%;
  min-height: 540px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/Dallas Newsletter image.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-newsletter-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
}
.hero-newsletter-overlay .hero-category { margin-bottom: 12px; }
.hero-newsletter-overlay h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-newsletter-overlay p {
  color: #ddd;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 420px;
}
.hero-newsletter-form { display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
.hero-newsletter-form input { padding: 12px 16px; border: none; border-radius: 6px; font-size: 0.9rem; outline: none; background: rgba(255,255,255,0.95); color: #1a1a1a; }
.hero-newsletter-form input::placeholder { color: #888; }
.hero-newsletter-form button { background: var(--gold); color: var(--navy); border: none; border-radius: 6px; padding: 12px 20px; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: background var(--transition); }
.hero-newsletter-form button:hover { background: var(--gold-light); }

/* Events loading / empty message */
.events-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-mid);
  padding: 3rem 1rem;
  font-size: 1rem;
}
.events-msg i { margin-right: 8px; color: var(--gold); }

/* Events monthly calendar */
.events-calendar-section { padding-top: 1rem; padding-bottom: 1rem; }
.events-calendar-section + .section-block { padding-top: 1rem; }
.events-calendar-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}
.events-calendar-head h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
  min-width: 200px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ec-nav {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 31, 63, 0.06);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.ec-nav:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-1px); }
.events-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(0, 31, 63, 0.08);
}
.ec-dow {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  color: var(--navy);
  text-transform: uppercase;
  padding: 6px 0 8px;
  border-bottom: 1px solid var(--border);
}
.ec-day {
  position: relative;
  min-height: 64px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fafafa;
  color: var(--gray-mid);
  display: flex;
  flex-direction: column;
  padding: 6px 5px 6px;
  cursor: default;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.ec-day.ec-empty { background: transparent; border-color: transparent; }
.ec-day.ec-past { opacity: 0.4; }
.ec-day.ec-today { border-color: var(--gold); border-width: 2px; padding: 5px 4px 5px; color: var(--navy); background: #fffbea; }
.ec-day.ec-has-events { background: #fff9e6; color: var(--navy); cursor: pointer; border-color: #f2e4b0; }
.ec-day.ec-has-events:hover { background: #fff; border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(212, 175, 55, 0.35); }
.ec-day.ec-selected { background: var(--navy); color: #fff; border-color: var(--navy); }
.ec-day.ec-selected:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.ec-day-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 0 2px;
  margin-bottom: 4px;
}
.ec-bars {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  gap: 3px;
  width: 100%;
}
.ec-bar {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 1px 2px rgba(0, 31, 63, 0.15);
}
.ec-bar-local     { background: #d4b04e; }
.ec-bar-music     { background: #8a6dc2; }
.ec-bar-sports    { background: #46985e; }
.ec-bar-arts      { background: #d66187; }
.ec-bar-film      { background: #3b8ea2; }
.ec-bar-community { background: #de9750; }
.ec-bar-default   { background: #6b7a89; }
.ec-day.ec-selected .ec-bar { box-shadow: 0 0 0 1.5px rgba(255,255,255,0.9); }
.events-calendar-legend {
  max-width: 640px;
  margin: 12px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  font-size: 0.72rem;
  color: var(--gray-mid);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.events-calendar-legend span { display: inline-flex; align-items: center; gap: 5px; }
.events-calendar-legend i {
  display: inline-block;
  width: 16px;
  height: 8px;
  border-radius: 2px;
}
.ec-more {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3px;
  margin-left: 2px;
  align-self: center;
}
.ec-day.ec-has-events:hover .ec-more { color: var(--navy); }
.ec-day.ec-selected .ec-more { color: #fff; }
.events-calendar-selected {
  margin: 14px auto 0;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(0, 31, 63, 0.12);
}
.events-calendar-selected .ec-clear {
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition);
}
.events-calendar-selected .ec-clear:hover { background: var(--gold-light); }
@media (max-width: 640px) {
  .events-calendar { gap: 3px; padding: 10px; max-width: 100%; }
  .ec-day { min-height: 54px; padding: 4px 3px 4px; }
  .ec-day-num { font-size: 0.85rem; margin-bottom: 2px; }
  .ec-bar { width: 6px; height: 6px; }
  .ec-bars { gap: 2px; }
  .ec-more { font-size: 0.52rem; }
  .events-calendar-head h2 { font-size: 1.2rem; min-width: 160px; }
  .ec-nav { width: 34px; height: 34px; }
}

/* Ticketmaster category badge on event cards */
.event-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.event-cat-badge::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}
.event-cat-badge--local::before     { background: #8a5a1a; }
.event-cat-badge--music::before     { background: #8a6dc2; }
.event-cat-badge--sports::before    { background: #46985e; }
.event-cat-badge--arts::before      { background: #d66187; }
.event-cat-badge--film::before      { background: #3b8ea2; }
.event-cat-badge--community::before { background: #de9750; }
.event-cat-badge--default::before   { background: var(--navy); }

/* Event cards are now clickable divs — no anchor wrapper */
.event-card { cursor: pointer; }
.event-card:hover h3 { color: var(--gold); }

/* ---- EVENTS LISTING PAGE ---- */
.events-page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 52px 0 44px;
  text-align: center;
}
.events-page-banner h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}
.events-page-banner h1 i { color: var(--gold); margin-right: 12px; }
.events-page-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; }

.events-filter-bar { background: #fff; border-bottom: 1px solid #e8e8e8; padding: 14px 0; position: sticky; top: 72px; z-index: 100; }
.events-filter { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.filter-btn:hover  { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Category dots on filter buttons (match calendar bar colors) */
.filter-btn[data-cat="Music"]::before,
.filter-btn[data-cat="Sports"]::before,
.filter-btn[data-cat="Arts & Theatre"]::before,
.filter-btn[data-cat="Film"]::before,
.filter-btn[data-cat="Community"]::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.filter-btn[data-cat="Music"]::before         { background: #8a6dc2; }
.filter-btn[data-cat="Sports"]::before        { background: #46985e; }
.filter-btn[data-cat="Arts & Theatre"]::before{ background: #d66187; }
.filter-btn[data-cat="Film"]::before          { background: #3b8ea2; }
.filter-btn[data-cat="Community"]::before     { background: #de9750; }

/* Per-category hover & active states */
.filter-btn[data-cat="Music"]:hover         { border-color: #8a6dc2; color: #8a6dc2; }
.filter-btn[data-cat="Music"].active        { background: #8a6dc2; border-color: #8a6dc2; color: #fff; }
.filter-btn[data-cat="Sports"]:hover        { border-color: #46985e; color: #46985e; }
.filter-btn[data-cat="Sports"].active       { background: #46985e; border-color: #46985e; color: #fff; }
.filter-btn[data-cat="Arts & Theatre"]:hover { border-color: #d66187; color: #d66187; }
.filter-btn[data-cat="Arts & Theatre"].active{ background: #d66187; border-color: #d66187; color: #fff; }
.filter-btn[data-cat="Film"]:hover          { border-color: #3b8ea2; color: #3b8ea2; }
.filter-btn[data-cat="Film"].active         { background: #3b8ea2; border-color: #3b8ea2; color: #fff; }
.filter-btn[data-cat="Community"]:hover     { border-color: #de9750; color: #de9750; }
.filter-btn[data-cat="Community"].active    { background: #de9750; border-color: #de9750; color: #fff; }
.filter-btn.active::before { box-shadow: 0 0 0 2px rgba(255,255,255,0.9); }

.events-load-more { text-align: center; margin-top: 40px; }
.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 13px 36px;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.load-more-btn:hover { background: var(--navy); color: #fff; }

/* ---- EVENT DETAIL PAGE ---- */

/* Hero — full-width image with dark gradient overlay */
.ep-hero {
  width: 100%;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.ep-hero-overlay {
  width: 100%;
  padding: 60px 0 48px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}
.ep-hero-overlay .container { position: relative; z-index: 1; }
.ep-hero-overlay h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.ep-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.ep-hero-meta i { color: var(--gold); margin-right: 7px; }

/* Content area — two column layout */
.ep-content { background: #f7f8fa; padding: 56px 0 72px; }
.ep-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

/* Left column */
.ep-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 28px;
  transition: color var(--transition);
}
.ep-back:hover { color: var(--gold); }
.ep-body h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.ep-desc {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Right column — details card */
.ep-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  position: sticky;
  top: 100px;
}
.ep-card-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.ep-card-row:last-of-type { border-bottom: none; }
.ep-card-row i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; width: 18px; }
.ep-card-row div { display: flex; flex-direction: column; gap: 2px; }
.ep-card-row strong { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-mid); }
.ep-card-row span { font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.ep-ticket-wrap { padding-top: 22px; text-align: center; }

/* Get Tickets button */
.btn-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 28px;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-ticket:hover { background: var(--navy); color: var(--gold); transform: translateY(-2px); }

/* Responsive */
@media (max-width: 860px) {
  .ep-inner { grid-template-columns: 1fr; }
  .ep-card  { position: static; }
  .ep-hero  { min-height: 360px; }
}

/* --- INSTAGRAM FEED --- */
.ig-section { background: #fff; }
.ig-title-icon { color: #e1306c; margin-right: 4px; }

/* Carousel wrapper with room for nav buttons */
.ig-carousel-wrapper {
  position: relative;
  padding: 0 52px;
}

/* Scrollable row */
.ig-carousel {
  display: flex;
  gap: 12px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 6px 2px 12px;
}

/* Instagram photo card: wider tile that shows the WHOLE post image
   (no crop) with a blurred copy of the same image filling any
   letterbox space -- the look Apple Photos / native IG uses when an
   off-ratio post is shown in a fixed frame. */
.ig-post {
  /* 4:5 portrait matches Instagram's native feed ratio, so full-post
     covers (title cards, swipe graphics, etc.) display at real size with
     all text readable instead of being letterboxed into a square. */
  flex: 0 0 175px;
  width: 175px;
  height: 219px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  position: relative;
  background: #1a1a1a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ig-post:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
/* Blurred backdrop: same thumbnail scaled up + blurred so letterbox
   bars feel like a soft halo of the post itself instead of black. JS
   sets --ig-bg on the anchor per post. */
.ig-post::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--ig-bg);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.7);
  transform: scale(1.15);
  z-index: 0;
}
.ig-post img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* `contain` shows the entire post without cropping; off-ratio space
     is filled by the blurred ::before backdrop above. */
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.ig-post:hover img { transform: scale(1.04); }

/* Fallback tile shown when Instagram blocked the preview scrape or the
   stored CDN URL has since expired. Uses the brand gradient instead of
   leaving an empty square. */
.ig-post-fallback {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  padding: 12px;
}
.ig-post-fallback::before { display: none; }
.ig-post-fallback i { font-size: 2.4rem; position: relative; z-index: 1; }
.ig-post-fallback span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; position: relative; z-index: 1; }

/* Instagram icon overlay on hover */
.ig-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.ig-post:hover .ig-overlay { opacity: 1; }
.ig-overlay i { color: #fff; font-size: 2rem; }

/* Nav arrows */
.ig-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background var(--transition), transform var(--transition);
}
.ig-nav:hover { background: var(--gold); color: var(--navy); }
.ig-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.ig-prev { left: 0; }
.ig-next { right: 0; }

/* Dot indicators */
.ig-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.ig-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.ig-dot.active {
  background: #e1306c;
  transform: scale(1.35);
}

/* Follow CTA */
.ig-follow-cta { text-align: center; margin-top: 28px; }
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  padding: 13px 32px;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 18px rgba(220,39,67,0.35);
}
.ig-follow-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.ig-follow-btn i { font-size: 1.25rem; }

/* --- FOOTER --- */
.site-footer { background: #0a1520; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { color: #888; font-size: 0.85rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: #888; font-size: 1rem; transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-links h4 { font-family: 'Oswald', sans-serif; font-size: 0.9rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links ul li { margin-bottom: 9px; }
.footer-links ul li a { color: #888; font-size: 0.85rem; transition: color var(--transition); }
.footer-links ul li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #162030; padding: 18px 0; text-align: center; }
.footer-bottom p { color: #555; font-size: 0.8rem; }
.footer-bottom a { color: #777; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Instagram: slightly smaller cards on mid screens */
  .ig-post { flex: 0 0 150px; width: 150px; height: 188px; }
}

@media (max-width: 900px) {
  /* Instagram cards on tablet */
  .ig-post { flex: 0 0 180px; width: 180px; height: 225px; }
  .hero-featured { grid-template-columns: 1fr; max-height: none; }
  .hero-sidebar { flex-direction: row; border-left: none; border-top: 2px solid #222; }
  .hero-small { max-height: 200px; border-bottom: none; border-right: 1px solid #222; }
  .hero-small:last-child { border-right: none; }
  .hero-large h2 { font-size: 1.4rem; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-newsletter-overlay h2 { font-size: 1.5rem; }
  .hero-newsletter-form { max-width: 100%; }
  .top-bar-left span:not(.weather-widget) { display: none; }
  .top-bar-divider { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--navy-mid); flex-direction: column; padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav > ul > li > a { padding: 12px 24px; border-radius: 0; font-size: 0.9rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; background: rgba(0,0,0,0.2); border-radius: 0; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .header-inner { gap: 12px; }
  .site-header { position: sticky; }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .news-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: 1fr; }
  /* Instagram cards on mobile */
  .ig-post { flex: 0 0 200px; width: 200px; height: 250px; }
  .ig-carousel-wrapper { padding: 0 36px; }

  .footer-grid { grid-template-columns: 1fr; }
  .hero-sidebar { flex-direction: column; }
  .hero-small { max-height: 160px; border-right: none; border-bottom: 1px solid #222; }
  .top-bar-right .fa-instagram, .top-bar-right .fa-tiktok,
  .top-bar-right .fa-facebook, .top-bar-right .fa-youtube { display: none; }
}

/* --- UTILITY --- */
.text-gold { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* =============================
   LIFESTYLE PAGE
   ============================= */

/* Hero banner */
.lifestyle-hero {
  position: relative;
  min-height: 420px;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
  background-size: cover;
  background-position: center 35%;
  display: flex;
  align-items: flex-end;
}
.lifestyle-hero-overlay {
  width: 100%;
  padding: 64px 0 52px;
  background: linear-gradient(to top, rgba(13,27,42,0.96) 0%, rgba(13,27,42,0.6) 55%, rgba(13,27,42,0.15) 100%);
}
.lifestyle-hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.lifestyle-hero-overlay h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.lifestyle-hero-overlay h1 em {
  color: var(--gold);
  font-style: normal;
}
.lifestyle-hero-overlay p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 580px;
}

/* Section tab nav */
.lifestyle-tab-nav {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}
.lifestyle-tabs {
  display: flex;
  gap: 0;
}
.lifestyle-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  color: rgba(255,255,255,0.65);
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color var(--transition), border-color var(--transition);
}
.lifestyle-tab i { font-size: 0.85rem; }
.lifestyle-tab:hover { color: var(--gold-light); }
.lifestyle-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Section layout */
.lifestyle-section { padding: 64px 0 72px; }
.lifestyle-section.section-dark-deep {
  background: #0d1b2a;
}
.lifestyle-section.section-dark-deep .lifestyle-section-intro { color: rgba(255,255,255,0.68); }
.lifestyle-section.section-dark-deep .section-title { color: #fff; }
.lifestyle-section.section-dark-deep .see-all { color: var(--gold); }

.lifestyle-section-header { margin-bottom: 36px; }
.lifestyle-section-intro {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 780px;
  margin-top: 14px;
}

/* Cards grid */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Individual card */
.lifestyle-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.lifestyle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.lifestyle-section.section-dark-deep .lifestyle-card {
  background: #162032;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Card image */
.lifestyle-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.lifestyle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lifestyle-card:hover .lifestyle-card-img img { transform: scale(1.06); }

/* Category badge on image */
.lifestyle-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
}
.lifestyle-section.section-dark-deep .lifestyle-cat-badge {
  background: var(--gold);
  color: var(--navy);
}

/* Card body */
.lifestyle-card-body {
  padding: 20px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lifestyle-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.lifestyle-section.section-dark-deep .lifestyle-card-body h3 { color: #fff; }
.lifestyle-card-body p {
  font-size: 0.855rem;
  color: var(--gray-text);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 14px;
}
.lifestyle-section.section-dark-deep .lifestyle-card-body p { color: rgba(255,255,255,0.6); }

/* Tip callout */
.lifestyle-card-tip {
  background: #fffbef;
  border-left: 3px solid var(--gold);
  padding: 9px 13px;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.55;
  border-radius: 0 5px 5px 0;
  margin-bottom: 14px;
}
.lifestyle-card-tip i { color: var(--gold); margin-right: 5px; }
.lifestyle-card-tip strong { color: var(--navy); }
.lifestyle-section.section-dark-deep .lifestyle-card-tip {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: rgba(255,255,255,0.75);
}
.lifestyle-section.section-dark-deep .lifestyle-card-tip strong { color: var(--gold); }

/* Card meta row */
.lifestyle-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #999;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  margin-top: auto;
}
.lifestyle-section.section-dark-deep .lifestyle-card-meta {
  border-top-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
}
.lifestyle-card-meta i { color: var(--gold); margin-right: 4px; }
.lifestyle-price {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy);
  background: var(--gray-light);
  padding: 2px 8px;
  border-radius: 4px;
}
.lifestyle-section.section-dark-deep .lifestyle-price {
  background: rgba(255,255,255,0.08);
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1000px) {
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-tab { padding: 13px 16px; font-size: 0.8rem; }
  .lifestyle-tab i { display: none; }
  .lifestyle-hero { min-height: 340px; }
  .lifestyle-hero-overlay { padding: 40px 0 36px; }
}

/* =============================
   BUSINESSES PAGES — SHARED
   ============================= */

/* Page banner (reused on all biz pages) */
.biz-page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 52px 0 44px;
  text-align: center;
}
.biz-page-banner h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}
.biz-page-banner h1 i { color: var(--gold); margin-right: 12px; }
.biz-page-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.biz-page-banner .biz-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: var(--gold);
  color: var(--navy);
  padding: 11px 28px;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background var(--transition);
}
.biz-page-banner .biz-banner-cta:hover { background: var(--gold-light); }

/* Map + listings two-column layout */
.biz-map-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  min-height: 600px;
}
.biz-map-pane { position: relative; min-height: 600px; }
#biz-map, #services-map, #guide-map { width: 100%; height: 100%; min-height: 600px; }

/* Full-width list layout (used by the Services tab which has no map) */
.biz-list-layout { display: block; }
.biz-list-pane-full {
  border-left: none !important;
  max-height: none !important;
  max-width: 1100px;
  margin: 0 auto;
}
.biz-list-pane-full .biz-scroll-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
  padding: 20px;
  max-height: none;
  overflow: visible;
}

/* Sidebar listing panel */
.biz-list-pane {
  background: #fff;
  border-left: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  max-height: 700px;
}
.biz-list-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-mid);
  background: var(--navy);
  color: #fff;
}
.biz-list-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.biz-filter-row { display: flex; flex-wrap: wrap; gap: 6px; }
.biz-filter-btn {
  padding: 5px 13px;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #ccc;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.biz-filter-btn:hover  { border-color: var(--gold); color: var(--gold); }
.biz-filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Scrollable card list */
.biz-scroll-list { overflow-y: auto; flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.biz-list-card {
  background: #f9f9fb;
  border-radius: 8px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.biz-list-card:hover { background: #fffbf0; transform: translateX(3px); }
.biz-list-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.biz-list-card .blc-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 5px;
}
.biz-list-card .blc-info { font-size: 0.78rem; color: var(--gray-text); display: flex; flex-direction: column; gap: 3px; }
.biz-list-card .blc-info i { color: var(--gold); width: 14px; }

/* =============================
   BUSINESS INQUIRY PAGE
   ============================= */
.inquiry-section { padding: 64px 0; background: #f5f7fa; }
.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* Left — form */
.inquiry-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.inquiry-form-wrap h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.inquiry-form-wrap .inquiry-sub {
  font-size: 0.88rem;
  color: var(--gray-text);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.form-group label .field-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-text);
  font-size: 0.72rem;
  margin-left: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  background: #fdfdfd;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.inquiry-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.inquiry-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.inquiry-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.inquiry-success i { font-size: 3rem; color: #2ecc71; margin-bottom: 16px; }
.inquiry-success h3 { font-family: 'Oswald', sans-serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }
.inquiry-success p { color: var(--gray-text); font-size: 0.9rem; line-height: 1.7; }

/* Right — info panel */
.inquiry-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.inquiry-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-top: 3px solid var(--gold);
}
.inquiry-info-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.inquiry-info-card p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.7; }
.inquiry-info-card ul { padding-left: 0; }
.inquiry-info-card ul li {
  font-size: 0.85rem;
  color: var(--gray-text);
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inquiry-info-card ul li:last-child { border-bottom: none; }
.inquiry-info-card ul li i { color: var(--gold); width: 16px; }

/* --- TAB SWITCHER (combined businesses page) --- */
.biz-tab-bar {
  background: #fff;
  border-bottom: 2px solid var(--gray-mid);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}
.biz-tab-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
}
.biz-tab-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 28px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -2px;
}
.biz-tab-btn i { font-size: 0.9rem; }
.biz-tab-btn:hover { color: var(--navy); }
.biz-tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }

/* Tab panels */
.biz-tab-panel { display: none; }
.biz-tab-panel.active { display: block; }

/* Section divider between map and inquiry */
.biz-section-divider {
  background: var(--navy);
  padding: 40px 0;
  text-align: center;
}
.biz-section-divider h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 8px;
}
.biz-section-divider h2 i { color: var(--gold); margin-right: 10px; }
.biz-section-divider p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* Responsive — biz pages */
@media (max-width: 960px) {
  .biz-map-layout { grid-template-columns: 1fr; }
  .biz-list-pane { max-height: 400px; border-left: none; border-top: 1px solid var(--gray-mid); }
  .inquiry-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .biz-tab-btn { padding: 13px 16px; font-size: 0.8rem; gap: 6px; }
  .biz-tab-btn i { display: none; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form-wrap { padding: 24px 18px; }
}


/* ============================================================
   SUBMIT EVENT — filter bar layout
   ============================================================ */
.events-filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Local Events filter tab (matches gold calendar bars) */
.filter-btn--local { gap: 6px; }
.filter-btn--local i { font-size: 0.72rem; color: var(--gold); }
.filter-btn--local:hover  { border-color: var(--gold); color: var(--gold); }
.filter-btn--local:hover i { color: var(--gold); }
.filter-btn--local.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.filter-btn--local.active i { color: var(--navy); }

/* Submit trigger button (in filter bar) */
.events-submit-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.events-submit-trigger-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Local badge on event cards */
.event-local-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
}
.event-local-badge i { margin-right: 3px; font-size: 0.6rem; }

/* ============================================================
   SUBMIT EVENT MODAL
   ============================================================ */
.event-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.event-modal-overlay.open { opacity: 1; visibility: visible; }

.event-modal-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 36px;
  max-width: 660px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  transform: translateY(24px);
  transition: transform 0.3s ease;
}
.event-modal-overlay.open .event-modal-card { transform: translateY(0); }

.event-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.event-modal-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.event-modal-header h2 i { color: var(--gold); margin-right: 9px; }

.event-modal-close {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #999;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.event-modal-close:hover { background: #f0f0f0; color: var(--navy); }

.event-modal-sub {
  font-size: 0.84rem;
  color: var(--gray-text);
  margin-bottom: 24px;
  line-height: 1.55;
}

/* Listing-fee disclaimer inside submit-event modal */
.event-fee-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff8e1;
  border: 1px solid #f5d87a;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 10px 12px;
  margin: -12px 0 20px;
  font-size: 0.82rem;
  color: #5a4b1b;
  line-height: 1.45;
}
.event-fee-notice i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.event-fee-notice strong { color: var(--navy); }

/* Required field marker */
.form-required { color: #e53e3e; }

/* Submit button inside modal */
.submit-event-btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition: background var(--transition), transform var(--transition);
}
.submit-event-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Success state */
.submit-success-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 20px;
  gap: 14px;
}
.submit-success-msg > i { font-size: 3.2rem; color: #22c55e; }
.submit-success-msg h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  text-transform: uppercase;
}
.submit-success-msg p { color: var(--gray-text); font-size: 0.95rem; }

/* Modal responsive */
@media (max-width: 600px) {
  .event-modal-card { padding: 24px 20px; }
  .events-filter-bar-inner { gap: 10px; }
  .events-submit-trigger-btn { padding: 7px 14px; font-size: 0.75rem; }
}

/* --- Media upload (Submit Story form) --- */
.form-hint { font-size: 0.72rem; color: var(--gray-text); font-weight: 400; text-transform: none; letter-spacing: 0; }
.media-upload-area {
  border: 2px dashed var(--gray-mid);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  transition: border-color var(--transition);
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-upload-area.has-media { border-color: var(--gold); }
.media-upload-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background var(--transition);
}
.media-upload-btn:hover { background: rgba(212,175,55,0.1); }
#photo-preview { max-width: 100%; max-height: 130px; border-radius: 6px; object-fit: cover; display: block; }
.media-remove-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}
.media-remove-btn:hover { background: rgba(0,0,0,0.8); }
.news-card-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.news-card-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}
.news-card-play-overlay i { font-size: 2.5rem; color: #fff; opacity: 0.9; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }

.media-or-divider {
  font-size: 0.72rem;
  color: #bbb;
  text-align: center;
  margin: 7px 0;
  letter-spacing: 0.3px;
}
#video-file-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
  padding: 4px 2px;
  width: 100%;
  position: relative;
}
#video-file-info i { color: var(--gold); flex-shrink: 0; }
#video-file-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Video lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-lightbox.open { opacity: 1; visibility: visible; }
.video-lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.video-lightbox-inner video { width: 100%; border-radius: 10px; background: #000; max-height: 80vh; }
.video-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  padding: 6px;
}
.video-lightbox-close:hover { opacity: 1; }


/* ============================================================
   COMMUNITY PAGE
   ============================================================ */

/* Banner */
.comm-page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 52px 0 44px;
  text-align: center;
}
.comm-page-banner h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.comm-page-banner h1 i { color: var(--gold); margin-right: 12px; }
.comm-page-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* Jump nav */
.comm-jump-nav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.comm-jump-nav .container { display: flex; gap: 0; }
.comm-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.comm-jump-link i { color: var(--gold); font-size: 0.8rem; }
.comm-jump-link:hover { color: var(--navy); border-bottom-color: var(--gold); }

/* Shared two-column layout */
.comm-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.comm-two-col--reverse { direction: rtl; }
.comm-two-col--reverse > * { direction: ltr; }

/* Eyebrow label */
.comm-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}
.comm-eyebrow--gold { color: var(--gold); }

/* Headings & body text */
.comm-h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 14px;
}
.comm-h2--light { color: #fff; }
.comm-subtext { font-size: 0.92rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 22px; }
.comm-subtext--light { color: rgba(255,255,255,0.78); }

/* Benefit / feature lists */
.comm-benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.comm-benefit-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--gray-text); }
.comm-benefit-list li i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.comm-benefit-list--light li { color: rgba(255,255,255,0.85); }
.comm-benefit-list--light li i { color: var(--gold); }

/* Form card (newsletter & contact) */
.comm-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
}
.comm-form .form-group { margin-bottom: 16px; }
.comm-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 6px;
  transition: background var(--transition), transform var(--transition);
}
.comm-submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.comm-privacy-note {
  text-align: center;
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Contact success state */
.comm-success-msg {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 14px;
}
.comm-success-msg > i { font-size: 3rem; color: #22c55e; }
.comm-success-msg h3 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--navy); text-transform: uppercase; }
.comm-success-msg p { color: var(--gray-text); font-size: 0.95rem; }

/* Map Pack */
.comm-map-img-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
.comm-map-img { width: 100%; height: 380px; object-fit: cover; display: block; }
.comm-map-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.comm-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 26px;
  transition: background var(--transition), transform var(--transition);
}
.comm-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Swag coming soon block */
.swag-coming-soon {
  text-align: center;
  padding: 64px 24px;
  background: #f8f9fb;
  border-radius: 16px;
  border: 2px dashed #dde1e9;
  max-width: 600px;
  margin: 0 auto;
}
.swag-cs-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.swag-cs-badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.swag-coming-soon h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.swag-coming-soon p {
  font-size: 0.92rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.swag-notify-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.swag-notify-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.swag-notify-form input:focus { border-color: var(--gold); }
.swag-notify-form button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: background var(--transition);
}
.swag-notify-form button:hover { background: var(--gold-light); }
.swag-notify-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #22c55e;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}
.swag-notify-success i { font-size: 1.1rem; }
@media (max-width: 500px) {
  .swag-notify-form { flex-direction: column; }
  .swag-notify-form button { justify-content: center; }
}

/* Swag product grid (kept for future use) */
.swag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.swag-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.swag-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.14); }
.swag-card-img { position: relative; height: 200px; overflow: hidden; }
.swag-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.swag-card:hover .swag-card-img img { transform: scale(1.06); }
.swag-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 4px;
}
.swag-badge--new  { background: var(--gold); color: var(--navy); }
.swag-badge--soon { background: #64748b; color: #fff; }
.swag-card-body { padding: 14px 16px; flex: 1; }
.swag-card-body h3 { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.swag-card-body p  { font-size: 0.78rem; color: var(--gray-text); line-height: 1.5; }
.swag-card-footer { padding: 12px 16px; border-top: 1px solid var(--gray-mid); display: flex; align-items: center; justify-content: space-between; }
.swag-price { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.swag-btn {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background var(--transition);
}
.swag-btn:hover { background: var(--gold); color: var(--navy); }
.swag-btn--muted { background: #e2e8f0; color: #64748b; }
.swag-btn--muted:hover { background: #94a3b8; color: #fff; }

/* Contact details */
.comm-contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.comm-contact-row { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.comm-contact-row i { color: var(--gold); font-size: 1rem; width: 20px; flex-shrink: 0; }
.comm-contact-row a { color: var(--gold); transition: color var(--transition); }
.comm-contact-row a:hover { color: #fff; }

/* Community page responsive */
@media (max-width: 900px) {
  .comm-two-col { grid-template-columns: 1fr; gap: 36px; }
  .comm-two-col--reverse { direction: ltr; }
  .swag-grid { grid-template-columns: repeat(2, 1fr); }
  .comm-map-img { height: 260px; }
  .comm-jump-link { padding: 12px 14px; font-size: 0.72rem; }
}
@media (max-width: 500px) {
  .swag-grid { grid-template-columns: 1fr; }
  .comm-jump-nav .container { flex-wrap: wrap; }
  .comm-jump-link { flex: 1 1 40%; justify-content: center; }
}

.biz-list-card.is-featured {
  border-left-color: #c9a84c;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.25);
}
.biz-list-card .blc-featured {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  background: #c9a84c;
  color: #0b1a33;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ---- Homepage Contact Us ---- */
.home-contact-section { padding: 72px 0 88px; background: #fbfaf6; border-top: 1px solid #eee3c9; }
.home-contact-head { text-align: center; max-width: 560px; margin: 0 auto 32px; }
.home-contact-head h2 { font-size: 2rem; color: var(--navy); margin: 0 0 10px; }
.home-contact-head h2 i { color: var(--gold); margin-right: 8px; }
.home-contact-head p { color: var(--gray-text); font-size: 1rem; line-height: 1.5; margin: 0; }
.home-contact-card { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid #eee3c9; border-radius: 14px; padding: 28px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }

/* ---- Hybrid category filter dropdown ---- */
.biz-filter-select { background: #fff; border: 1px solid #d9cfb4; border-radius: 8px; padding: 8px 14px; font-size: 0.95rem; color: #222; cursor: pointer; min-width: 200px; margin-left: 8px; }
.biz-filter-select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(218,165,32,0.15); }
.biz-filter-row { flex-wrap: wrap; gap: 8px; align-items: center; }


/* ---- Map pin popup (Mapbox GL) ----
   Wider popup so business info is easier to read; the "Visit website"
   link is styled in blue for stronger visual affordance. */
.mapboxgl-popup.on239-biz-popup { max-width: 340px !important; }
.on239-biz-popup .mapboxgl-popup-content {
  padding: 16px 18px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.on239-biz-popup strong { font-size: 1.05rem; color: var(--navy); }
.on239-biz-popup em { color: var(--gray-text); font-size: 0.85rem; }
.on239-biz-popup .on239-visit-website {
  display: inline-block;
  margin-top: 6px;
  color: #1a6fdb;
  font-weight: 600;
  text-decoration: none;
}
.on239-biz-popup .on239-visit-website:hover { text-decoration: underline; color: #0d56b3; }


/* ============================================================
   DALLAS DOSAGE — secondary page chrome
   Page intros + simple filter row used by /events, /lifestyle,
   /whats-happening, /map-pack, /community.
   ============================================================ */
.page-intro { padding: 36px 0 24px; }
.page-intro h1.section-title { margin-bottom: 6px; font-size: 2rem; }
.page-intro-sub { color: var(--gray-text); font-size: 1rem; max-width: 640px; margin-bottom: 18px; }
.section-dark .page-intro-sub { color: #cfd6dd; }

.events-filter-bar > input,
.events-filter-bar > select {
  background: #fff;
  border: 1px solid var(--gray-mid);
  color: var(--navy);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
}
.section-block .events-filter-bar {
  position: static;
  background: transparent;
  border-bottom: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}
.events-filter-bar > input { flex: 1 1 220px; min-width: 200px; }
.events-filter-bar > input:focus,
.events-filter-bar > select:focus { border-color: var(--gold); }

/* Community page cards */
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.community-card { background: #fff; border-radius: 8px; padding: 22px 20px; box-shadow: var(--card-shadow); display: flex; flex-direction: column; gap: 10px; }
.community-card .cc-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.community-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.15rem; color: var(--navy); }
.community-card p { color: var(--gray-text); font-size: 0.9rem; line-height: 1.5; }
.community-card .cc-cta { margin-top: auto; align-self: flex-start; background: var(--navy); color: #fff; padding: 8px 16px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; border: none; }
.community-card .cc-cta:hover { background: var(--gold); color: var(--navy); }


/* === COMMUNITY PAGE EXTRAS === */
.comm-cta-card { background: #fff; border-radius: 10px; padding: 44px 28px; box-shadow: var(--card-shadow); text-align: center; max-width: 720px; margin: 0 auto; }
.comm-cta-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin: 0 auto 18px; }
.comm-cta-badge { display: inline-block; background: var(--navy); color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 4px; margin-bottom: 12px; }
.comm-cta-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.55rem; color: var(--navy); margin-bottom: 12px; }
.comm-cta-card p { color: var(--gray-text); font-size: 1rem; line-height: 1.6; margin-bottom: 22px; max-width: 560px; margin-left: auto; margin-right: auto; }
.comm-newsletter-form { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; align-items: stretch; }
.comm-newsletter-form input { flex: 1 1 60%; min-width: 0; padding: 0 16px; height: 52px; box-sizing: border-box; border: 1px solid rgba(13,27,42,0.15); border-radius: 6px; font-family: 'Open Sans', sans-serif; font-size: 0.95rem; color: var(--navy); background: #fff; }
.comm-newsletter-form input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.2); }
.comm-newsletter-form button { flex: 0 0 auto; width: auto; height: 52px; padding: 0 22px; white-space: nowrap; margin: 0; }
@media (max-width: 560px) {
  .comm-newsletter-form { flex-direction: column; }
  .comm-newsletter-form button { width: 100%; }
}

.comm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comm-feature-card { background: #fff; border: 1px solid rgba(13,27,42,0.08); border-radius: 10px; padding: 28px 22px; color: var(--navy); text-align: center; box-shadow: var(--card-shadow); }
.comm-feature-card i { font-size: 1.9rem; color: var(--gold); margin-bottom: 14px; display: block; }
.comm-feature-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; margin-bottom: 10px; letter-spacing: 0.5px; color: var(--navy); text-transform: uppercase; }
.comm-feature-card p { color: var(--gray-text); font-size: 0.92rem; line-height: 1.55; }
.section-navy .comm-feature-card { background: rgba(255,255,255,0.04); border-color: rgba(201,168,76,0.25); color: #fff; box-shadow: none; }
.section-navy .comm-feature-card h3 { color: #fff; }
.section-navy .comm-feature-card p { color: rgba(255,255,255,0.78); }

.comm-cta-row { text-align: center; margin-top: 32px; }
.comm-about-wrap { max-width: 820px; margin: 0 auto; color: var(--gray-text); font-size: 1.02rem; line-height: 1.7; }
.comm-about-wrap p { margin-bottom: 16px; }
.comm-about-wrap a { color: var(--navy); text-decoration: underline; font-weight: 600; }

@media (max-width: 768px) {
  .comm-grid-3 { grid-template-columns: 1fr; }
  .comm-cta-card { padding: 32px 20px; }
}
