/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand colors */
  --color-bg: #000;
  --color-bg-alt: #0a0a0a;
  --color-bg-card: #111;
  --color-bg-elevated: #1a1a1a;
  --color-bg-input: #1e1e1e;
  --color-accent: #6ba3a0;
  --color-accent-hover: #5a908d;
  --color-cta: #e04a32;
  --color-cta-hover: #c73d28;
  --color-teal-section: #7fb5b0;
  --color-text: #fff;
  --color-text-muted: #ccc;
  --color-text-dim: #aaa;
  --color-text-subtle: #888;
  --color-text-ghost: #666;
  --color-border: #222;
  --color-border-light: #333;
  --color-border-subtle: #1e1e1e;
  --color-border-card: #2a2a2a;
  /* Typography */
  --font-body: 'Libre Baskerville', 'Georgia', serif;
  --font-heading: 'Oswald', 'Arial Narrow', sans-serif;
  /* Spacing */
  --section-padding: 50px 20px;
  --container-max: 1100px;
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== AGE GATE MODAL ===== */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-gate-overlay.hidden { display: none; }
.age-gate-box {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 40px 50px;
  text-align: center;
  max-width: 500px;
}
.age-gate-box h2 { font-size: 1.6rem; margin-bottom: 8px; }
.age-gate-box p { font-size: 0.95rem; margin-bottom: 24px; color: #555; }
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; }
.age-gate-buttons button,
.age-gate-buttons a {
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
}
.btn-over-21 { background: #1a7a2e; color: #fff; }
.btn-over-21:hover { background: #15621f; }
.btn-under-21 { background: #e0e0e0; color: #333; }
.btn-under-21:hover { background: #ccc; }

/* ===== HEADER ===== */
.site-header {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-logo-left img,
.header-logo-right img {
  height: 60px;
  width: auto;
}
.header-tagline {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ccc;
  text-align: center;
  flex: 1;
}
.header-login {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #ccc;
  cursor: pointer;
}
.header-login svg { width: 20px; height: 20px; fill: #ccc; }

/* ===== NAVIGATION ===== */
.main-nav {
  background: #000;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.main-nav li {
  position: relative;
  flex: 1;
  text-align: center;
}
.main-nav > ul > li > a,
.main-nav > ul > li > span {
  display: block;
  padding: 14px 10px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > span:hover,
.main-nav > ul > li.active > a,
.main-nav > ul > li.active > span {
  color: #6ba3a0;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid #333;
  min-width: 200px;
  z-index: 999;
}
.main-nav li:hover > .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ccc;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: #222; color: #6ba3a0; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 14px 20px; }

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  overflow: hidden;
}
.hero-side-image {
  width: 25%;
  min-height: 100%;
  object-fit: cover;
}
.hero-main {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-main-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  padding: 50px 60px;
  max-width: 600px;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 30px;
}

/* Full-width hero variant */
.hero-full {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-full .hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
}
.hero-full h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.hero-full p {
  font-size: 1rem;
  color: #ddd;
  font-style: italic;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #e04a32;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: #c73d28; }

.btn-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 32px;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline:hover { background: #fff; color: #000; }

.btn-dark {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 14px 36px;
  border: none;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-dark:hover { background: #444; }

/* ===== CONTACT / SOCIAL SECTION ===== */
.contact-section {
  background-image: url('images/barrels-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
}
.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.social-icons a:hover { opacity: 0.8; }
.social-icons .ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icons .fb { background: #1877f2; }
.social-icons .yt { background: #ff0000; }
.social-icons svg { width: 22px; height: 22px; fill: #fff; }

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.85);
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  color: #333;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #888; }
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form label {
  font-size: 0.8rem;
  text-align: left;
  color: #ddd;
}
.contact-form .btn-outline {
  align-self: stretch;
  text-align: center;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: #7fb5b0;
  padding: 50px 20px;
  max-width: 700px;
  margin: 0 auto;
}
.newsletter-section h2 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  color: #000;
}
.newsletter-section label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  display: block;
  margin-bottom: 8px;
}
.newsletter-section input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #555;
  background: #fff;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.newsletter-section .note {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 16px;
}
.newsletter-section .btn-dark {
  width: 100%;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
  color: #999;
  line-height: 1.8;
}
.site-footer a { color: #999; }
.site-footer a:hover { color: #fff; }

/* ===== TEAL INFO SECTION ===== */
.teal-section {
  background: #7fb5b0;
  color: #000;
  padding: 50px 40px;
  text-align: center;
}
.teal-section p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}
.card {
  background: #6ba3a0;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
}
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.card-body {
  padding: 24px 20px;
}
.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.card-body .btn-outline {
  border-color: #000;
  color: #000;
  font-size: 0.75rem;
}
.card-body .btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Dark cards variant */
.card-dark {
  background: #1a1a1a;
  text-align: center;
  padding: 30px 20px;
}
.card-dark .card-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 10px;
}
.card-dark h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.card-dark img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 20px;
}

/* ===== PHOTO GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}
.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid .tall { grid-row: span 2; height: 100%; }

/* ===== SPLIT HERO (taproom style) ===== */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}
.split-hero > div {
  position: relative;
  overflow: hidden;
}
.split-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-hero .overlay-text {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
.split-hero .overlay-text h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.split-hero .overlay-text p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.8;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  align-items: start;
}
.two-col-text h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.two-col-text h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  text-transform: lowercase;
  font-style: italic;
}
.two-col-text p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== COMMUNITY / ABOUT PAGE ===== */
.community-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
}
.community-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.community-section p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 16px;
}
.community-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.community-section li {
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.6;
}
.community-section li strong { color: #fff; }

.veterans-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin: 40px 0;
  align-items: center;
}
.veterans-banner img { width: 100%; border-radius: 4px; }
.veterans-info {
  background: #d4c5a0;
  color: #333;
  padding: 30px;
}
.veterans-info h2 { color: #222; margin-bottom: 12px; font-size: 1.4rem; }
.veterans-info p { color: #444; margin-bottom: 16px; }

.press-list { margin-top: 30px; }
.press-list h2 { margin-bottom: 20px; }
.press-list a {
  display: block;
  padding: 10px 0;
  color: #6ba3a0;
  border-bottom: 1px solid #222;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.press-list a:hover { color: #fff; }

/* ===== VIDEO THUMBNAILS ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.video-thumb .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}
.video-thumb .play-btn svg {
  width: 50px;
  height: 50px;
  fill: #fff;
  opacity: 0.8;
}
.video-thumb:hover .play-btn svg { opacity: 1; }

/* ===== FORM SECTION (gray bg) ===== */
.form-section {
  background: #1a1a1a;
  padding: 50px 20px;
}
.form-section h2 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.form-section form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-section input,
.form-section textarea,
.form-section select {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}
.form-section input::placeholder,
.form-section textarea::placeholder { color: #777; }
.form-section textarea { min-height: 100px; resize: vertical; }
.form-section label { font-size: 0.8rem; color: #aaa; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== CENTERED TEXT SECTION ===== */
.centered-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}
.centered-text h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.centered-text p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
}

/* ===== SLIDESHOW ===== */
.slideshow {
  position: relative;
  max-width: 900px;
  margin: 30px auto;
  overflow: hidden;
}
.slideshow img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: none;
}
.slideshow img.active { display: block; }
.slideshow-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.85rem;
}
.slideshow-controls button {
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .main-nav > ul { display: none; flex-direction: column; }
  .main-nav > ul.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { flex-direction: column; min-height: auto; }
  .hero-side-image { width: 100%; height: 200px; }
  .card-grid, .video-grid { grid-template-columns: 1fr; }
  .split-hero { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .veterans-banner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 30px; }
  .hero-full h1 { font-size: 2rem; }
}

/* ===== EVENTS PAGE ===== */
.events-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* ── View Toggle Toolbar ── */
.events-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 4px;
  color: #999;
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.view-btn:hover { color: #fff; border-color: #555; }
.view-btn.active {
  background: #6ba3a0;
  color: #000;
  border-color: #6ba3a0;
}

/* ── Empty State ── */
.events-empty {
  background: #111;
  padding: 50px 40px;
  border-radius: 8px;
  text-align: center;
}
.events-empty h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.events-empty p { color: #999; }

/* ── Feed View: Event Cards ── */
.events-feed {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.event-card {
  display: flex;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.event-card:hover { border-color: #333; }

.event-card-image {
  width: 240px;
  min-height: 200px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.event-card-image:hover img { transform: scale(1.05); }

.event-card-zoom {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.event-card-image:hover .event-card-zoom { opacity: 1; }

.event-card-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.event-card-meta {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e04a32;
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  min-width: 52px;
  flex-shrink: 0;
}
.event-date-badge strong {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.event-date-badge span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.event-card-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.event-time {
  font-size: 0.9rem;
  color: #6ba3a0;
  font-style: italic;
}

.event-description {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Badges ── */
.event-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.event-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.event-badge-genre { background: rgba(107,163,160,0.2); color: #6ba3a0; }
.event-badge-price { background: rgba(224,74,50,0.2); color: #e04a32; }
.event-badge-age { background: rgba(255,255,255,0.1); color: #ccc; }

/* ── Eventbrite Button ── */
.eventbrite-btn {
  display: inline-block;
  background: #f6682f;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.eventbrite-btn:hover { background: #e05820; }

/* ── Calendar View ── */
.events-calendar {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 24px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-nav h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.calendar-nav-btn {
  background: none;
  border: 1px solid #333;
  color: #999;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}
.calendar-nav-btn:hover { border-color: #6ba3a0; color: #6ba3a0; }

.calendar-grid, .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-header {
  text-align: center;
  padding: 10px 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}

.calendar-day {
  position: relative;
  min-height: 60px;
  padding: 8px;
  background: #1a1a1a;
  border-radius: 4px;
  text-align: center;
}

.calendar-day-empty { background: transparent; }

.calendar-day-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: #888;
}

.calendar-day-today .calendar-day-num {
  color: #fff;
  font-weight: 700;
}
.calendar-day-today {
  border: 1px solid #6ba3a0;
}

.calendar-day-has-event {
  cursor: pointer;
  transition: background 0.2s;
}
.calendar-day-has-event:hover { background: #222; }
.calendar-day-has-event .calendar-day-num { color: #fff; }

.calendar-day-selected {
  background: #6ba3a0 !important;
}
.calendar-day-selected .calendar-day-num { color: #000; }
.calendar-day-selected .calendar-day-dot { background: #000; color: #6ba3a0; }

.calendar-day-dot {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #e04a32;
  border-radius: 50%;
  margin: 4px auto 0;
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  color: #fff;
}

/* Calendar events panel below calendar */
.calendar-events-panel {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #222;
}
.calendar-events-panel h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}

.calendar-event-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #1a1a1a;
  border-radius: 6px;
  margin-bottom: 12px;
}

.cal-event-img {
  width: 100px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.cal-event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cal-event-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.cal-event-time {
  color: #6ba3a0;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 8px;
}
.cal-event-desc {
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ── Lightbox ── */
.event-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  cursor: pointer;
}
.event-lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #e04a32; }

.event-lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
}

.lightbox-caption {
  color: #ccc;
  font-size: 1rem;
  margin-top: 16px;
  text-align: center;
  font-style: italic;
  cursor: default;
}

/* ── Events Responsive ── */
@media (max-width: 768px) {
  .event-card { flex-direction: column; }
  .event-card-image { width: 100%; min-height: 200px; max-height: 250px; }
  .calendar-day { min-height: 44px; padding: 4px; }
  .calendar-day-num { font-size: 0.8rem; }
  .calendar-day-dot { width: 16px; height: 16px; line-height: 16px; font-size: 0.55rem; }
  .calendar-event-card { flex-direction: column; }
  .cal-event-img { width: 100%; height: 150px; }
  .events-toolbar { flex-direction: row; }
  .event-lightbox { padding: 20px; }
  .event-lightbox img { max-width: 95vw; max-height: 70vh; }
}

/* ===== EVENT DETAIL PAGE ===== */
.event-detail-section { padding: 40px 20px 60px; }
.event-detail-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.event-detail-image { margin-bottom: 20px; border-radius: 8px; overflow: hidden; }
.event-detail-image img { width: 100%; height: auto; }
.event-detail-info h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.event-detail-meta { margin-bottom: 20px; }
.event-detail-meta p { margin-bottom: 6px; color: #ccc; }
.event-detail-meta strong { color: #fff; }
.event-detail-description { color: #bbb; line-height: 1.8; }

/* Ticket Box */
.ticket-box {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 20px;
}
.ticket-box h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #2a2a2a;
}
.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #1a1a1a;
}
.ticket-row-info h3 { font-size: 1rem; margin-bottom: 2px; }
.ticket-row-desc { font-size: 0.8rem; color: #888; margin-bottom: 4px; }
.ticket-row-price { font-family: 'Oswald', sans-serif; font-size: 1rem; color: #6ba3a0; }
.ticket-row-remaining { font-size: 0.75rem; color: #c89632; }
.ticket-sold-out { opacity: 0.5; }
.ticket-sold-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e88;
  padding: 4px 12px;
  border: 1px solid #8b2020;
  border-radius: 4px;
}
.ticket-qty-select {
  width: 60px;
  padding: 8px;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
}

/* Promo Code */
.promo-section { padding: 16px 0; border-bottom: 1px solid #1a1a1a; }
.promo-input-group { display: flex; gap: 8px; }
.promo-input-group input {
  flex: 1;
  padding: 10px 12px;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
}
.promo-apply-btn {
  padding: 10px 16px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.promo-apply-btn:hover { background: #444; }
.promo-message { font-size: 0.8rem; margin-top: 8px; }
.promo-success { color: #6ba3a0; }
.promo-error { color: #e88; }

/* Order Summary */
.order-summary { padding: 16px 0; }
.order-summary-row { display: flex; justify-content: space-between; padding: 6px 0; color: #aaa; }
.order-summary-total { font-size: 1.2rem; color: #fff; padding-top: 12px; border-top: 1px solid #2a2a2a; margin-top: 8px; }
.order-summary-total span { font-weight: bold; }

/* Customer Form in ticket box */
.ticket-box .form-group { margin-bottom: 14px; }
.ticket-box .form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}
.ticket-box .form-group input {
  width: 100%;
  padding: 10px 12px;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}
.ticket-box .form-group input:focus { outline: none; border-color: #6ba3a0; }

/* Checkout Button */
.checkout-btn {
  width: 100%;
  padding: 14px;
  background: #6ba3a0;
  color: #000;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
}
.checkout-btn:hover { background: #5a908d; }
.checkout-btn:disabled { background: #333; color: #666; cursor: not-allowed; }

/* ===== CHECKOUT PAGE ===== */
.checkout-section { padding: 40px 20px 60px; }
.checkout-container {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.checkout-summary {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 24px;
}
.checkout-summary h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.checkout-event-title { font-size: 1.1rem; margin-bottom: 4px; }
.checkout-event-date { color: #888; font-size: 0.9rem; margin-bottom: 16px; }
.checkout-items { border-top: 1px solid #2a2a2a; padding-top: 12px; }
.checkout-item-row { display: flex; justify-content: space-between; padding: 6px 0; color: #ccc; }
.checkout-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px solid #2a2a2a;
  font-size: 1.2rem;
  font-weight: bold;
}
.checkout-payment {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 24px;
}
.checkout-payment h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.stripe-card-element {
  padding: 14px;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 4px;
  margin-bottom: 12px;
}
.stripe-errors { color: #e88; font-size: 0.85rem; margin-bottom: 12px; min-height: 20px; }
.checkout-pay-btn {
  width: 100%;
  padding: 14px;
  background: #6ba3a0;
  color: #000;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.checkout-pay-btn:hover { background: #5a908d; }
.checkout-pay-btn:disabled { background: #333; color: #666; cursor: not-allowed; }
.checkout-secure-note { color: #666; font-size: 0.8rem; text-align: center; margin-top: 16px; }

/* ===== CONFIRMATION PAGE ===== */
.confirmation-section { padding: 40px 20px 60px; }
.confirmation-container { max-width: 600px; margin: 0 auto; text-align: center; }
.confirmation-icon { margin-bottom: 16px; }
.confirmation-container h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.confirmation-subtitle { color: #ccc; margin-bottom: 24px; font-size: 1rem; }
.confirmation-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}
.confirmation-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #1a1a1a;
}
.confirmation-detail span { color: #888; font-size: 0.85rem; }
.confirmation-detail strong { color: #fff; font-size: 0.9rem; text-align: right; }
.confirmation-tickets { margin-top: 16px; padding-top: 16px; border-top: 1px solid #2a2a2a; }
.confirmation-tickets h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #888;
}
.confirmation-ticket-row { display: flex; justify-content: space-between; padding: 6px 0; color: #ccc; }
.confirmation-total { font-weight: bold; color: #fff; border-top: 1px solid #2a2a2a; margin-top: 8px; padding-top: 8px; }
.confirmation-actions { margin-bottom: 20px; }
.confirmation-email-note { color: #888; font-size: 0.9rem; }

/* ===== RESPONSIVE - TICKETS ===== */
@media (max-width: 768px) {
  .event-detail-container { grid-template-columns: 1fr; }
  .ticket-box { position: static; }
  .event-detail-info h1 { font-size: 1.5rem; }
}

/* ===== RECURRING EVENTS GRID ===== */
/* ===== SIGNATURE EVENT CARDS ===== */
.signature-events {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}
.signature-events-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}
.signature-card {
  flex: 1 1 0%;
  min-width: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}
.signature-card-img {
  position: absolute;
  inset: 0;
}
.signature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.signature-card:hover .signature-card-img img {
  transform: scale(1.06);
}
.signature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  transition: background var(--transition-med);
}
.signature-card:hover .signature-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 80%);
}
.signature-card-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.signature-card-overlay p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .signature-events-grid {
    flex-wrap: wrap;
  }
  .signature-card {
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
  }
}
@media (max-width: 480px) {
  .signature-card {
    flex: 1 1 100%;
    min-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* ===== RECURRING EVENT DETAIL ===== */
.recurring-event-hero {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.recurring-event-hero-overlay {
  width: 100%;
  padding: 80px 40px 36px;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.95) 100%);
  display: flex;
  align-items: center;
  gap: 24px;
}
.recurring-event-hero-overlay h1,
.recurring-event-hero-simple h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.recurring-event-hero-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
}
.recurring-event-hero-simple {
  padding: 50px 30px 30px;
  text-align: center;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}
.recurring-event-hero-simple .recurring-event-hero-icon {
  margin: 0 auto 16px;
}
.recurring-event-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-dim);
  margin-top: 6px;
  letter-spacing: 1px;
}

/* Layout: main + sidebar */
.recurring-event-layout {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-padding);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
}
.recurring-event-main {
  min-width: 0;
}
.recurring-event-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}
.recurring-event-body p {
  margin-bottom: 18px;
}
.recurring-event-body h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 32px 0 14px;
  color: var(--color-text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}
.recurring-event-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 24px 0 10px;
  color: var(--color-accent);
}
.recurring-event-body strong {
  color: var(--color-text);
}

/* Info bar */
.recurring-event-info-bar {
  margin-top: 32px;
  padding: 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.info-bar-item svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

/* Sidebar */
.recurring-event-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}
.recurring-event-sidebar h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-event-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.sidebar-event-link:hover {
  border-color: var(--color-accent);
  background: var(--color-bg-elevated);
}
.sidebar-event-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.sidebar-event-link strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
}
.sidebar-event-link span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .recurring-event-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .recurring-event-sidebar {
    position: static;
  }
  .recurring-event-hero-overlay {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px 24px;
  }
  .recurring-event-hero-overlay h1,
  .recurring-event-hero-simple h1 {
    font-size: 1.8rem;
  }
}

/* ===== MEDIA PAGE ===== */
.media-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-padding);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.media-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-card);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.media-card:hover {
  border-color: var(--color-accent);
}
.media-card video {
  width: 100%;
  display: block;
  background: #000;
}
.media-card-info {
  padding: 16px;
}
.media-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.media-card-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}
.media-date {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  font-family: var(--font-heading);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 400px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE - HEADER ===== */
@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    padding: 10px 15px 8px;
    gap: 0;
  }
  .header-logo-left {
    order: 1;
  }
  .header-logo-right {
    order: 2;
    margin-left: auto;
  }
  .header-logo-left img {
    height: 36px;
    width: auto;
  }
  .header-logo-right img {
    height: 36px;
    width: auto;
  }
  .header-tagline {
    order: 3;
    flex: none;
    width: 100%;
    font-size: 0.55rem;
    letter-spacing: 2px;
    margin: 6px 0 0;
    padding-top: 6px;
    border-top: 1px solid #222;
  }
}
