/* ============================================
   PUKEKOHE COSMOPOLITAN CLUB — STYLESHEET
   Aesthetic: Refined Heritage • Navy & Gold
   ============================================ */

:root {
  --navy:       #0d1b2e;
  --navy-mid:   #162540;
  --navy-light: #1e3358;
  --gold:       #c8973a;
  --gold-light: #e4b96a;
  --gold-pale:  #f5e8cc;
  --cream:      #faf7f1;
  --white:      #ffffff;
  --text:       #2a2a2a;
  --text-muted: #6b7280;
  --border:     #e2d9c8;
  --shadow:     0 4px 24px rgba(13,27,46,0.10);
  --shadow-lg:  0 12px 48px rgba(13,27,46,0.18);
  --radius:     8px;
  --radius-lg:  16px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', Arial, sans-serif;
  --nav-h:      72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
img.emoji, h1 img, h2 img, h3 img, h4 img, h5 img, h6 img, p img, span img { display: inline; vertical-align: middle; }
a { color: inherit; text-decoration: none; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-h);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.35); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.logo-emblem {
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(200,151,58,0.12);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-mid);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  list-style: none;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
.dropdown a {
  padding: 10px 18px;
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.dropdown a:hover { background: var(--navy-light); color: var(--gold-light); }
.has-dropdown:hover .dropdown { display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d1b2e 0%, #1e3a5f 50%, #0d1b2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(200,151,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(200,151,58,0.06) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,0.015) 48px,
    rgba(255,255,255,0.015) 50px
  );
}
.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 40px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,151,58,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 78px);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  letter-spacing: 2px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,151,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ---- INFO BAR ---- */
.info-bar {
  background: var(--gold);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-right: 1px solid rgba(0,0,0,0.1);
}
.info-item:last-child { border-right: none; }
.info-icon { font-size: 16px; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section.small-top-padding { padding: 10px 0 80px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-top: 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}
.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header.light .section-tag { color: var(--gold-light); }

/* ---- HOURS ---- */
.hours-section { background: var(--cream); }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hours-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hours-icon { font-size: 36px; margin-bottom: 16px; }
.hours-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 600;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table td { padding: 7px 4px; border-bottom: 1px solid var(--border); }
.hours-table td:first-child { text-align: left; color: var(--text-muted); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.hours-table tr:last-child td { border-bottom: none; }

.happy-hour-banner {
  background: var(--navy);
  color: var(--gold-light);
  text-align: center;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  letter-spacing: 1px;
}
.hh-star { color: var(--gold); margin: 0 8px; }

/* ---- FEATURED EVENTS SPOTLIGHT ---- */
.fe-section { background: var(--gold-pale); }

.fe-grid {
  display: grid;
  gap: 28px;
}
.fe-grid--1 { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
.fe-grid--2 { grid-template-columns: repeat(2, 1fr); }
.fe-grid--3 { grid-template-columns: repeat(3, 1fr); }

.fe-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.fe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.fe-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-mid);
  flex-shrink: 0;
}
.fe-grid--1 .fe-card-image { aspect-ratio: 21 / 9; }

.fe-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.fe-card:hover .fe-card-image img { transform: scale(1.04); }

.fe-card-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  font-size: 64px;
}

/* Corner date badge */
.fe-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 6px 12px;
  text-align: center;
  line-height: 1;
  min-width: 52px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.fe-date-month {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.fe-date-day {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 2px;
}

/* Featured ribbon */
.fe-featured-ribbon {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 36px;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.fe-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fe-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.fe-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

.fe-card-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.fe-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.fe-meta-icon { font-size: 15px; flex-shrink: 0; }
.fe-meta-cost { color: var(--navy); font-weight: 700; }

.fe-card-cta {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: letter-spacing 0.2s;
}
.fe-card:hover .fe-card-cta { letter-spacing: 1px; }

.fe-view-all {
  text-align: center;
  margin-top: 44px;
}

@media (max-width: 900px) {
  .fe-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fe-grid--2,
  .fe-grid--3 { grid-template-columns: 1fr; }
  .fe-card-image { aspect-ratio: 16 / 9; }
  .fe-grid--1 .fe-card-image { aspect-ratio: 16 / 9; }
}

/* ---- FEATURES ---- */
.features-section { background: var(--navy); }
.features-section .section-header h2 { color: var(--white); }
.features-section .section-tag { color: var(--gold-light); }
.features-section .section-header p { color: rgba(255,255,255,0.65); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,151,58,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.feature-card:hover {
  background: rgba(200,151,58,0.08);
  border-color: rgba(200,151,58,0.5);
  transform: translateY(-4px);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}
.feature-card p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 20px; }
.feature-link { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }

/* feature-cards on light backgrounds */
.features-grid--light .feature-card { background: rgba(255,255,255,0.7); border-color: rgba(200,151,58,0.3); }
.features-grid--light .feature-card:hover { background: rgba(200,151,58,0.1); }
.features-grid--light .feature-card h3 { color: var(--navy); }
.features-grid--light .feature-card p { color: var(--text-muted); }

/* ---- MAP SECTION ---- */
.map-section { background: var(--white); }
.map-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}
.map-details { display: flex; flex-direction: column; gap: 24px; }
.map-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.map-info-icon {
  font-size: 22px;
  min-width: 32px;
  margin-top: 2px;
}
.map-info-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.map-info-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border);
}
.map-embed iframe { display: block; }

/* ---- 3D WALKTHROUGH ---- */
.walkthrough-section { background: var(--white); }
.walkthrough-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border);
}
.walkthrough-embed iframe { display: block; }

/* ---- INFO CARDS ---- */
.info-cards-section { background: var(--gold-pale); }
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.info-card-icon { font-size: 40px; margin-bottom: 16px; }
.info-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.info-card p { font-size: 14px; color: var(--text-muted); }
.info-card a { color: var(--gold); font-weight: 700; }

/* ---- CONTACT ---- */
.contact-section { background: var(--navy); }
.contact-wrapper { max-width: 700px; margin: 0 auto; }
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  color: var(--gold-light);
  font-weight: 700;
  padding: 12px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: calc(var(--nav-h) + 60px) 24px 60px;
  text-align: center;
}
.page-hero .hero-badge { margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}

/* ---- CLUBS NZ BAR ---- */
.clubs-nz-bar {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(200,151,58,0.2);
  padding: 28px 0;
}
.clubs-nz-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.clubs-nz-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.85);
}
.clubs-nz-emblem {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.clubs-nz-badge strong {
  display: block;
  color: var(--gold-light);
  font-size: 16px;
  margin-bottom: 4px;
}
.clubs-nz-badge span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.clubs-nz-link {
  white-space: nowrap;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.clubs-nz-link:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---- FOOTER ---- */
.footer { background: #070f1c; color: rgba(255,255,255,0.7); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(200,151,58,0.3);
  padding-bottom: 8px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 14px; margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 20px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ---- PRICING TABLES ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-card-header {
  background: var(--navy);
  padding: 20px 24px;
  text-align: center;
}
.pricing-card-header h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 18px;
  margin-bottom: 4px;
}
.pricing-card-header .tag { color: var(--gold-light); font-size: 12px; letter-spacing: 1px; }
.pricing-card-body { padding: 24px; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .price { font-weight: 700; color: var(--navy); font-size: 16px; }

/* ---- SCHEDULE / LEAGUE ---- */
.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.highlight-box h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 20px;
}
.highlight-box ul {
  list-style: none;
  padding: 0;
}
.highlight-box li {
  padding: 6px 0;
  color: var(--text);
  font-size: 15px;
}
.highlight-box li::before {
  content: '✦ ';
  color: var(--gold);
  font-size: 10px;
  margin-right: 4px;
}

/* ---- ACTIVITIES ---- */
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  border-left: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.activity-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.activity-icon { font-size: 48px; text-align: center; padding-top: 4px; }
.activity-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.activity-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 12px; }
.activity-contact {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.activity-contact strong { color: var(--navy); }

/* ---- MEMBERSHIP ---- */
.membership-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.step-card h3 { font-family: var(--font-serif); color: var(--navy); margin-bottom: 8px; font-size: 17px; }
.step-card p { font-size: 13px; color: var(--text-muted); }

.membership-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 560px;
  margin: 0 auto 48px;
}
.membership-price-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.membership-price-card h3 { font-family: var(--font-serif); margin-bottom: 8px; color: var(--gold-light); }
.membership-price-card .amount { font-size: 42px; font-weight: 700; color: var(--white); line-height: 1; }
.membership-price-card .period { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 1px; margin-top: 4px; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  user-select: none;
}
.faq-arrow { color: var(--gold); font-size: 18px; transition: transform 0.3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ---- EVENTS CALENDAR ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card-header {
  background: var(--navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.event-date-badge {
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 8px 12px;
  text-align: center;
  min-width: 60px;
}
.event-date-badge .day { font-size: 24px; font-weight: 700; line-height: 1; }
.event-date-badge .month { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.event-card-header h3 { color: var(--white); font-family: var(--font-serif); font-size: 18px; }
.event-card-header .event-time { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 4px; }
.event-card-body { padding: 20px 24px; }
.event-card-body p { color: var(--text-muted); font-size: 14px; }
.event-category {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.event-past .event-card-header { background: #8a8a8a; }
.event-past { opacity: 0.7; }

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.calendar-nav h3 { font-family: var(--font-serif); font-size: 24px; color: var(--navy); }
.calendar-nav button {
  background: var(--navy);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.calendar-nav button:hover { background: var(--gold); color: var(--navy); }

/* ---- TABS ---- */
.tab-nav {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---- RESTAURANT PLACEHOLDER ---- */
.restaurant-placeholder {
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.restaurant-placeholder h2 { font-family: var(--font-serif); color: var(--navy); font-size: 28px; margin: 24px 0 16px; }
.restaurant-placeholder p { color: var(--text-muted); font-size: 16px; }

/* ---- GAMING ---- */
.gaming-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.gaming-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(200,151,58,0.2);
}
.gaming-card .icon { font-size: 48px; margin-bottom: 16px; }
.gaming-card h3 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 12px; color: var(--gold-light); }
.gaming-card p { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hours-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .map-wrapper { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .activity-card { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-mid);
    padding: 16px 0 24px;
    align-items: flex-start;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .info-bar { flex-direction: column; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
  .footer-inner { grid-template-columns: 1fr; }
  .membership-pricing { grid-template-columns: 1fr; max-width: 300px; }
  .dropdown { position: static; display: none; background: rgba(255,255,255,0.05); box-shadow: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .membership-steps { grid-template-columns: 1fr 1fr; }
}

/* WordPress admin bar offset */
.navbar { top: 0; }
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .navbar { top: 46px; }
}

/* WordPress body classes */
.wp-block-image img { max-width: 100%; height: auto; }

/* FAQ category headings */
.faq-category-heading {
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 22px;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-category-heading:not(:first-child) { margin-top: 40px; }

/* ============================================
   RESTAURANT PAGE
   ============================================ */

/* Intro grid */
.dining-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.dining-intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  margin-bottom: 16px;
}
.dining-intro-text p { color: var(--text-muted); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }

/* Hours card */
.dining-hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}
.dining-hours-header { background: var(--navy); padding: 20px 28px; }
.dining-hours-header h3 { font-family: var(--font-serif); color: var(--white); font-size: 20px; margin-bottom: 4px; }
.dining-hours-header p { color: var(--gold-light); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.dining-hours-body { padding: 24px 28px; }
.dining-hours-body .hours-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.dining-hours-body .hours-table td { padding: 9px 4px; border-bottom: 1px solid var(--border); }
.dining-hours-body .hours-table td:first-child { color: var(--text-muted); }
.dining-hours-body .hours-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.dining-hours-body .hours-table tr:last-child td { border-bottom: none; }
.dining-hours-note {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin-top: 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  color: var(--text);
}

/* Buffet section */
.buffet-section { background: var(--navy); }
.buffet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.buffet-tag { display: inline-block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 12px; }
.buffet-content h2 { font-family: var(--font-serif); font-size: clamp(26px, 3.5vw, 38px); color: var(--white); margin-bottom: 16px; }
.buffet-content p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.buffet-time-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,151,58,0.15); border: 1px solid rgba(200,151,58,0.4);
  color: var(--gold-light); font-size: 14px; font-weight: 700;
  padding: 10px 18px; border-radius: 40px; margin-bottom: 24px;
}
.buffet-includes {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,151,58,0.25);
  border-radius: var(--radius-lg); padding: 24px 28px;
}
.buffet-includes h4 { color: var(--gold-light); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.buffet-includes ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.buffet-includes li { color: rgba(255,255,255,0.8); font-size: 14px; }
.buffet-includes li::before { content: '✦ '; color: var(--gold); font-size: 9px; }
.buffet-pricing { display: flex; flex-direction: column; gap: 16px; }
.buffet-price-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,151,58,0.2);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.2s;
}
.buffet-price-card:hover { background: rgba(200,151,58,0.1); }
.buffet-price-label { color: rgba(255,255,255,0.8); font-size: 15px; }
.buffet-price-label small { display: block; color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 2px; }
.buffet-price-amount { font-family: var(--font-serif); font-size: 30px; color: var(--gold); font-weight: 700; }
.buffet-price-amount small { font-size: 13px; color: rgba(255,255,255,0.5); font-family: var(--font-sans); }
.buffet-price-free { font-family: var(--font-serif); font-size: 22px; color: var(--gold-light); font-weight: 700; }

/* Menu section */
.menu-section { background: var(--cream); }
.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.menu-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.menu-category--wide { grid-column: span 3; }
.menu-category--span2 { grid-column: span 2; }
.menu-category-header {
  background: var(--navy); padding: 18px 24px;
  display: flex; align-items: center; gap: 12px;
}
.menu-category-header .cat-icon { font-size: 22px; }
.menu-category-header h3 { font-family: var(--font-serif); color: var(--white); font-size: 18px; margin: 0; }
.menu-category-body { padding: 20px 24px; }
.menu-category-body--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.menu-category-footer { padding: 0 24px 20px; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding: 10px 0;
  border-bottom: 1px dashed var(--border); font-size: 14px;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { color: var(--text); flex: 1; }
.menu-item-desc { color: var(--text-muted); font-size: 12px; display: block; margin-top: 2px; }
.menu-item-price { font-weight: 700; color: var(--navy); white-space: nowrap; font-size: 15px; }
.menu-item-price::before { content: '$'; font-size: 11px; vertical-align: super; font-weight: 400; }
.sides-note {
  background: var(--gold-pale); border-left: 3px solid var(--gold);
  padding: 12px 16px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px; color: var(--text);
}
.sides-note strong { color: var(--navy); }

/* Menu printed CTA */
.menu-cta-strip {
  background: var(--gold-pale); border: 2px solid var(--gold);
  border-radius: var(--radius-lg); padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.menu-cta-strip h3 { font-family: var(--font-serif); color: var(--navy); font-size: 22px; margin-bottom: 6px; }
.menu-cta-strip p { color: var(--text-muted); font-size: 15px; margin: 0; }
.menu-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Bar section */
.bar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bar-text h2 { font-family: var(--font-serif); font-size: clamp(24px, 3vw, 34px); color: var(--navy); margin-bottom: 16px; }
.bar-text p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 14px; }
.bar-hours-card { background: var(--navy); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.bar-hours-body { padding: 24px 28px; }
.bar-hours-body .hours-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.bar-hours-body .hours-table td { padding: 9px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.bar-hours-body .hours-table td:first-child { color: rgba(255,255,255,0.55); }
.bar-hours-body .hours-table td:last-child { text-align: right; font-weight: 700; color: var(--white); }
.bar-hours-body .hours-table tr:last-child td { border-bottom: none; }
.happy-hour-bar {
  background: rgba(200,151,58,0.15); border-top: 1px solid rgba(200,151,58,0.3);
  padding: 14px 28px; text-align: center; color: var(--gold-light);
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
}

/* Booking strip */
.booking-strip { background: var(--gold); padding: 56px 24px; text-align: center; }
.booking-strip h2 { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 34px); color: var(--navy); margin-bottom: 12px; }
.booking-strip p { color: rgba(13,27,46,0.75); font-size: 16px; margin-bottom: 28px; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(7,15,28,0.92);
  align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 720px; width: 100%;
  max-height: 92vh; display: flex; flex-direction: column; gap: 12px;
}
.lightbox-nav { display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.lightbox-nav h4 { color: var(--gold-light); font-family: var(--font-serif); font-size: 18px; }
.lightbox-close {
  background: none; border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  width: 36px; height: 36px; border-radius: 50%; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-img-wrap {
  overflow-y: auto; border-radius: var(--radius-lg);
  background: var(--white); box-shadow: var(--shadow-lg);
  max-height: calc(92vh - 100px);
}
.lightbox-img-wrap img { width: 100%; height: auto; display: block; }
.lightbox-pages { display: flex; gap: 10px; justify-content: center; }
.page-thumb {
  width: 44px; height: 44px; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s;
}
.page-thumb.active { border-color: var(--gold); }
.page-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Responsive — restaurant */
@media (max-width: 1000px) {
  .dining-intro { grid-template-columns: 1fr; gap: 40px; }
  .buffet-grid { grid-template-columns: 1fr; }
  .menu-categories { grid-template-columns: 1fr 1fr; }
  .menu-category--wide { grid-column: span 2; }
  .menu-category--span2 { grid-column: span 2; }
  .bar-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .menu-categories { grid-template-columns: 1fr; }
  .menu-category--wide,
  .menu-category--span2 { grid-column: span 1; }
  .menu-category-body--2col { grid-template-columns: 1fr; gap: 0; }
  .buffet-includes ul { grid-template-columns: 1fr; }
  .menu-cta-strip { flex-direction: column; text-align: center; }
}

/* ---- TEC List View: Event Card ---- */

/* Card container */
.tribe-events-calendar-list__event-wrapper {
  padding: 0 !important;
}

.tribe-events-calendar-list__event {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(13, 27, 46, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  margin-bottom: 20px;
}

.tribe-events-calendar-list__event:hover {
  box-shadow: 0 8px 28px rgba(13, 27, 46, 0.15);
  transform: translateY(-2px);
}

/* Suppress TEC's default blue featured line on the date-tag */
.tribe-events .tribe-events-calendar-list__event-row--featured
  .tribe-events-calendar-list__event-date-tag-datetime::after {
  display: none !important;
}
.tribe-common--breakpoint-medium.tribe-events
  .tribe-events-calendar-list__event-row--featured
  .tribe-events-calendar-list__event-date-tag-datetime::after {
  display: none !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-datetime-featured-text {
    color: var(--gold);
    font-weight: var(--tec-font-weight-bold);
}
.tribe-common .tribe-common-c-svgicon {
  color: var(--gold);
}

/* Gold top border + warm tint for featured cards */
.tribe-events-calendar-list__event-row--featured .tribe-events-calendar-list__event {
  border-top: 3px solid var(--gold);
  background: linear-gradient(160deg, #fffdf6 0%, var(--white) 60%);
}

/* Inner flex layout — image flush left, details padded */
.cosmo-event-inner {
  display: flex;
  gap: 0;
  align-items: stretch;
  width: 100%;
}

.cosmo-event-image-wrap {
  flex: 0 0 220px;
  width: 220px;
  margin: 0;
}

.cosmo-event-image {
  width: 220px;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Padding on the details column — flex: 1 fills remaining space after image */
.tribe-events-calendar-list__event-details {
  position: relative;
  padding: 20px 24px 56px !important;
}

.cosmo-event-inner > .tribe-common-g-col {
  flex: 1 1 0% !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

/* Title link colour */
.tribe-events-calendar-list__event-title a {
  color: var(--navy);
}
.tribe-events-calendar-list__event-title a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* Entry fee row */
.cosmo-event-cost {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 13px;
  color: var(--navy);
}

.cosmo-event-cost__label {
  font-weight: 400;
  color: var(--text-muted, #6b7280);
}

.cosmo-event-cost__price {
  font-weight: 700;
}

/* Countdown pill — anchored to bottom-right of the details column */
.cosmo-event-countdown {
  position: absolute;
  bottom: 16px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.cosmo-event-countdown--past {
  background: var(--text-muted);
}

.cosmo-event-countdown .cosmo-countdown-icon {
  font-size: 13px;
  padding: 9px 4px 9px 14px;
}

.cosmo-event-countdown .cosmo-countdown-text {
  padding: 9px 14px 9px 0;
}

@media (max-width: 768px) {
  .cosmo-event-image-wrap {
    flex: 0 0 160px;
    width: 160px;
  }
  .cosmo-event-image {
    width: 160px;
    min-height: 140px;
  }
}

@media (max-width: 600px) {
  .cosmo-event-inner {
    flex-direction: column;
  }
  .cosmo-event-image-wrap,
  .cosmo-event-image {
    width: 100%;
    min-height: 200px;
    height: 200px;
  }
  .tribe-events-calendar-list__event-details {
    padding: 16px 16px 56px !important;
  }
  .cosmo-event-countdown {
    right: 16px;
  }
}

/* ---- TEC Day View: Event Card (matches list view) ---- */

/* Remove the blue left-border timeline bar the plugin adds */
.tribe-events-calendar-day__event-content {
  border-left: none !important;
  padding-left: 0 !important;
}

/* Card styling — same as list */
.tribe-events-calendar-day__event {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(13, 27, 46, 0.08);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  margin-bottom: 20px;
}

.tribe-events-calendar-day__event:hover {
  box-shadow: 0 8px 28px rgba(13, 27, 46, 0.15);
  transform: translateY(-2px);
}

/* Gold top border + warm tint for featured cards */
.tribe-events-calendar-day__event--featured {
  border-top: 3px solid var(--gold);
  background: linear-gradient(160deg, #fffdf6 0%, var(--white) 60%);
}

/* Remove TEC's default blue ::after bar on featured day events */
.tribe-events-calendar-day__event--featured::after {
  display: none !important;
}

/* Featured label colour */
.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-day__event-datetime-featured-text {
  color: var(--gold);
  font-weight: var(--tec-font-weight-bold);
}

/* Make the content wrapper fill the card */
.tribe-events-calendar-day__event-content {
  width: 100%;
}

/* Padding on the details column */
.tribe-events-calendar-day__event-details {
  position: relative;
  padding: 20px 24px 56px !important;
}

/* Title link colour */
.tribe-events-calendar-day__event-title a {
  color: var(--navy);
}
.tribe-events-calendar-day__event-title a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* Day view cost — shares .cosmo-event-cost styles above */

@media (max-width: 600px) {
  .tribe-events-calendar-day__event-details {
    padding: 16px !important;
  }
}

/* Outer section padding on single event pages (default-template.php wrapper) */
.section--single-event {
  padding-top: 20px;
}

/* ---- SINGLE EVENT PAGE ---- */

/* Wrapper that the plugin renders inside */
.single-tribe_events #tribe-events-content {
  padding: 0;
  margin-bottom: 0;
}

/* "← All Events" back link */
.tribe-events-single .tribe-events-back {
  margin: 0 0 32px;
}
.tribe-events-single .tribe-events-back a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tribe-events-single .tribe-events-back a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Single event — float layout (image right, text wraps) */
.cosmo-single-event-layout {
  display: block;
}

/* Clearfix after the floated image */
.cosmo-single-event-clear {
  clear: both;
}

/* Event title */
.cosmo-single-event-layout .tribe-events-single-event-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Date/schedule badge */
.cosmo-single-event-layout .tribe-events-schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
}

/* Single event cost block */
.cosmo-single-event-costs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 24px;
}

.cosmo-single-cost-item {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 8px 16px;
  min-width: 110px;
}

.cosmo-single-cost-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted, #6b7280);
  margin-bottom: 2px;
}

.cosmo-single-cost-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

/* Event body text */
.cosmo-single-event-layout .tribe-events-single-event-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  padding: 0;
  width: auto !important;
}
.cosmo-single-event-layout .tribe-events-single-event-description p {
  margin-bottom: 12px;
}

/* Remove the plugin's full-width border-top line above the meta block */
.cosmo-single-event-layout .tribe-events-event-meta:before {
  border-top: none !important;
}

/* DETAILS meta block */
.cosmo-single-event-layout .tribe-events-event-meta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 28px !important;
  width: auto !important;
}
.cosmo-single-event-layout .tribe-events-event-meta h2 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.cosmo-single-event-layout .tribe-events-event-meta dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
  clear: left;
}
.cosmo-single-event-layout .tribe-events-event-meta dd {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  margin: 0 0 12px 0;
}

/* Prev/next event navigation */
#tribe-events-footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 24px;
}
#tribe-events-footer .tribe-events-sub-nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
#tribe-events-footer .tribe-events-sub-nav li a {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
#tribe-events-footer .tribe-events-sub-nav li a:hover {
  color: var(--gold);
}

/* Featured image — floated right with text wrapping to the left */
.cosmo-single-event-image {
  float: right;
  width: 420px;
  margin: 4px 0 28px 40px;
}

/* Override plugin's clear:both so float works */
.cosmo-single-event-image .tribe-events-event-image {
  clear: none !important;
  margin-bottom: 0;
}

.cosmo-single-event-image .tribe-events-event-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .cosmo-single-event-image {
    float: none;
    width: 100%;
    margin: 0 0 28px 0;
  }
  .cosmo-single-event-image .tribe-events-event-image img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ── Gold Pillars Strip ───────────────────────────────────── */
.pillars-strip {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream) 50%, var(--cream) 100%);
  padding: 36px 24px;
}
.pillars-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 36px;
}
.pillar-icon {
  font-size: 1.6rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.pillar-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pillar-divider {
  color: var(--navy);
  opacity: 0.3;
  font-size: 0.65rem;
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .pillars-inner {
    gap: 8px 0;
  }
  .pillar {
    padding: 8px 20px;
  }
  .pillar-divider {
    display: none;
  }
}

/* ── Restaurant Gallery ───────────────────────────────────── */
.restaurant-gallery {
  background: var(--navy);
  padding: 72px 0 80px;
}
.restaurant-gallery-intro {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
}
.section-tag--light {
  background: rgba(200,151,58,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(200,151,58,0.35);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.restaurant-gallery-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.restaurant-gallery-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.restaurant-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.restaurant-gallery-item {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,151,58,0.15);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.restaurant-gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
  border-color: rgba(200,151,58,0.5);
}
.restaurant-gallery-item--featured {
  transform: translateY(-20px);
  border-color: rgba(200,151,58,0.4);
  box-shadow: 0 24px 56px rgba(0,0,0,0.4);
}
.restaurant-gallery-item--featured:hover {
  transform: translateY(-28px);
}
.gallery-img-wrap {
  aspect-ratio: 1;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 12px;
  transition: transform 0.4s ease;
}
.restaurant-gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.06);
}
.gallery-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-top: 1px solid rgba(200,151,58,0.15);
}
.gallery-caption-name {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}
.gallery-caption-price {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.restaurant-gallery-cta {
  text-align: center;
  margin-top: 52px;
}
@media (max-width: 800px) {
  .restaurant-gallery-item--featured {
    transform: none;
  }
}
@media (max-width: 680px) {
  .restaurant-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .restaurant-gallery-item--featured {
    transform: none;
  }
}
