/* Applies to both index and flyer pages */
.flyer img, .flyer video {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

/* Index flyer card */
.flyer {
  background: #222;
  margin: 20px auto;
  width: min(100%, 520px);
  max-width: 520px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}

/* Caption styling on index */
.caption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #ccc;
  text-align: center;
}
.caption button {
  background: none;
  border: none;
  color: #e60026;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 5px;
  padding: 0;
}

a {
  color: #ffcc00;
  text-decoration: underline;
}

.flyer-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Flyer pages only */
.flyer-body .flyer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.flyer-body .flyer img,
.flyer-body .flyer video {
  width: 100%;
  max-width: min(100%, 520px);
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.flyer-body .caption {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

/* Shared base */
html, body, .flyer-body {
  background: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0px;
}

header {
  background: #e60026;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  left: 0;
  right: 0;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}
/* Slimmer header on mobile */
@media (max-width: 480px) {
  header {
    padding: 0.4rem 1rem;  /* shrink top/bottom padding only */
  }
}

.controls {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

input[type="text"], select {
  padding: 10px;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  width: 250px;
}
/* Phones: 2-row compact header filters */
@media (max-width: 480px) {
  .controls {
    display: grid;                 /* override flex */
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 8px;                /* optional: a bit of side breathing room */
  }
  /* Let inputs shrink on mobile (override desktop's fixed 250px) */
  .controls input[type="text"],
  .controls select,
  .controls input[type="date"] {
    width: 100%;
    padding: 8px 10px;            /* slightly slimmer vertical padding */
    box-sizing: border-box;
  }
  /* Row 1: Search | City  — Row 2: Date (full width) */
  #search, #city-filter { grid-column: auto; }
  #date-filter { grid-column: 1 / -1; }
}

/* Target only flyer images on the index (not flyer pages) */
body:not(.flyer-body) .flyer img,
body:not(.flyer-body) .flyer video {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

#sponsor-banner {
  position: fixed;
  bottom: 20px;
  left: 10px;  /* ✅ Bottom-left instead of right */
  background: rgba(230, 0, 38, 0.9);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.85rem;
  border-radius: 12px;
  z-index: 99999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 200px;
  line-height: 1.4;
}
@media only screen and (max-width: 480px) {
  #sponsor-banner {
    display: none;
  }
}
#flyer-promo {
  position: fixed;
  bottom: 190px; /* 200px above the sponsor banner */
  left: 10px;
  background: rgba(230, 0, 38, 0.9);
  color: #fff;
  padding: 12px 16px;
  font-size: 0.85rem;
  border-radius: 12px;
  z-index: 99999;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 200px;
  line-height: 1.4;
}

/* Hide it on mobile like the sponsor banner */
@media only screen and (max-width: 480px) {
  #flyer-promo {
    display: none;
  }
}

#testimonial-box {
  position: fixed;
  bottom: 310px; /* above the other 2 boxes */
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  padding: 12px 16px;
  font-size: 0.85rem;
  border-radius: 12px;
  z-index: 999999;
  max-width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  line-height: 1.4;
  font-style: italic;
}

#testimonial-box::before {
  content: "💬 User Feedback";
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  color: #e60026;
}

/* Hide on mobile */
@media only screen and (max-width: 480px) {
  #testimonial-box {
    display: none;
  }
}
/* Default: hide it */
.whatsapp-share-mobile {
  display: none;
}

/* Show only on small screens */
@media only screen and (max-width: 768px) {
  .whatsapp-share-mobile {
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}

/* Re-hide forcefully on large screens */
@media only screen and (min-width: 769px) {
  .whatsapp-share-mobile {
    display: none !important;
  }
}
/* === Today's Events box (index only) === */
#todays-events.today-box {
  max-width: 900px;
  margin: 16px auto 8px auto;
  background: #1a1a1a;
  border: 2px solid #e60026;  /* matches site accent */
  border-radius: 10px;
  padding: 12px 16px;
}

#todays-events h2 {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.today-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.today-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.today-list li:first-child {
  border-top: none;
}

.today-list a {
  flex: 1;
  text-decoration: underline;
  line-height: 1.4;
}

.tag-today {
  display: inline-block;
  font-size: 0.75rem;
  background: #e60026;
  color: #fff;
  border-radius: 999px;
  padding: 3px 8px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  #todays-events.today-box { margin: 12px 8px; padding: 10px 12px; }
  .today-list li { gap: 8px; }
  .tag-today { font-size: 0.7rem; padding: 2px 6px; }
}
/* Thumbnails in Today's Events */
.today-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.today-list li:first-child { border-top: none; }

.today-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 72px;
  background: #111; /* prevents layout shift during load */
}

.today-thumb.placeholder {
  /* shows a subtle placeholder when image is missing */
  background: linear-gradient(135deg, #111 0%, #1b1b1b 100%);
}

.today-text {
  flex: 1;
}

.today-text a {
  display: inline-block;
  text-decoration: underline;
  line-height: 1.4;
  margin-bottom: 4px;
}

@media (max-width: 480px) {
  .today-thumb { width: 56px; height: 56px; flex-basis: 56px; }
}
/* Two-tab pill bar */
.pill-tabs {
  position: sticky; top: 0; z-index: 20;
  background: #0b0b0b;
  padding: 8px;
  display: flex; gap: 8px;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pill-tabs .pill {
  flex: 1;
  padding: 10px 20px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #eee;
  border: 1px solid #333;
  font-size: .95rem;
}
.pill-tabs .pill.active {
  border-color: #e60026;
  outline: 2px solid #e60026;
}
@media (max-width: 480px){
  .pill-tabs .pill { font-size: .9rem; padding: 9px 10px; }
}
.tag-class {
  display:inline-block;
  font-size:.72rem;
  background:#2a7; /* green */
  color:#fff;
  border-radius:999px;
  padding:2px 6px;
  white-space:nowrap;
  margin-left:6px;
}
.pager{
  position: fixed !important;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(20,20,20,.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 12px;
  z-index: 1000;            /* stays above floating boxes */
}
/* default hidden (desktop) */
.wa-share{ display:none; }

/* Fallback for devices that don't match hover/pointer correctly */
@media (max-width: 820px){
  .wa-share{ display:inline-flex !important; }
}

/* phones/tablets w/ touch */
@media (max-width: 820px) and (hover:none) and (pointer:coarse){
  .wa-share{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 12px;
    border:1px solid #25D366;
    border-radius:10px;
    color:#25D366;
    text-decoration:none;
    font-weight:600;
    gap:8px;
  }
}
.wa-share-wrap{ text-align:center; margin-top:8px; }
/* --- WhatsApp button: make extra sure it shows on phones --- */
@media (max-width: 900px){
  #todays-events .wa-share{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #25D366;
    border-radius: 10px;
    color: #25D366 !important;
    text-decoration: none !important;
    font-weight: 600;
    gap: 8px;
  }
}
/* Hide voice mic on desktop */
@media (min-width: 900px), (hover: hover) and (pointer: fine) {
  #salsa-voice {
    display: none !important;
  }
}

/* Hide chatbot on phones */
@media (max-width: 899px), (hover: none) and (pointer: coarse) {
  #chatbot-widget {
    display: none !important;
  }
}
/* Show mic only on small screens */
#salsa-voice {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 28px;
  padding: 10px;
  border-radius: 50%;
  z-index: 9999;
  background: #e91e63;
  color: white;
  border: none;
  display: none; /* hidden by default */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Only show mic on phones */
@media (max-width: 899px) {
  #salsa-voice {
    display: block;
  }

  .chatbot-button, #chatbot-container {
    display: none !important; /* Hide bot on mobile */
  }
}

/* Show chatbot only on desktop */
@media (min-width: 900px) {
  #salsa-voice {
    display: none !important; /* Hide mic on desktop */
  }

  .chatbot-button, #chatbot-container {
    display: block;
  }
}
/* === Affiliate Ads Block === */
.salsa-ad-box {
  margin: 20px auto;
  padding: 16px;
  background: #1a1a1a;           /* match dark theme */
  border: 2px solid #e60026;     /* match red site accent */
  border-radius: 12px;
  max-width: 600px;
}

.salsa-ad-box h3 {
  color: #ffcc00;                /* match link/yellow accent */
  font-size: 1.2rem;
  margin: 0 0 10px;
  text-align: center;
}

.salsa-ad-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 14px;
}

.salsa-ad-items a {
  flex: 1;
  min-width: 120px;
  max-width: 160px;
  text-align: center;
  text-decoration: none;
  color: #fff;                   /* keep text white */
  font-size: 0.9rem;
}

.salsa-ad-items img {
  width: 100%;
  max-width: 120px;
  border-radius: 6px;
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

.salsa-ad-disclaimer {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 10px;
  color: #aaa;
  font-style: italic;
}
/* === Compact circular mic button (visible only on phones) === */
@media (max-width: 899px) {
  #salsa-voice {
    position: fixed;
    bottom: 72px;            /* just above pager (~24px + gap) */
    right: 12px;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 24px;         /* slightly larger mic emoji */
    text-align: center;
    border-radius: 50%;
    border: none;
    background: #e60026;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    z-index: 1100;           /* stays above pager (pager is 1000) */
    display: block !important;
  }

  /* Hide label text if any and show only mic icon */
  #salsa-voice::after {
    content: "🎤";
    font-size: 24px;
    line-height: 44px;
  }
  #salsa-voice {
    font-size: 0;  /* hide text label */
  }

  /* Keep chatbot fully hidden on phones */
  #chatbot-widget,
  #chatbot-container,
  .chatbot-button {
    display: none !important;
  }
}

/* Hide mic on desktop */
@media (min-width: 900px) {
  #salsa-voice {
    display: none !important;
  }
}
/* Remove mic on all devices */
#salsa-voice { display: none !important; }
/* Phone layout: show SalsaBot, float above pager, keep compact */
@media (max-width: 899px) {
  /* override earlier rule that hides the widget on phones */
  html body #chatbot-widget { 
    display: block !important;
    position: fixed;
    right: 10px;
    /* = pager (24px) + pager height (~56px) + 8px gap */
    bottom: calc(24px + 56px + 8px);
    width: 210px;              /* compact header */
    z-index: 1100;             /* above pager (1000) */
  }
  /* make the body scroll nicely when opened */
  #chatbot-widget .chat-body {
    max-height: 50vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@supports (padding: env(safe-area-inset-bottom)) {
  @media (max-width: 899px) {
    html body #chatbot-widget {
      /* add notch padding without changing the pager clearance math */
      margin-bottom: env(safe-area-inset-bottom);
    }
  }
}
/* ===== Spotlights ===== */

.spotlights{
  max-width: 900px;
  margin: 20px auto 120px;
  padding: 10px;
}

.spotlight-card{
  display:flex;
  gap:20px;
  align-items:center;
  background:#1a1a1a;
  border:2px solid #e60026;
  border-radius:14px;
  padding:18px;
}

.spotlight-card img{
  width:280px;
  border-radius:10px;
}

.spotlight-text{
  flex:1;
  text-align:left;
}

.spotlight-btn{
  display:inline-block;
  margin-top:10px;
  background:#e60026;
  color:#fff !important;
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
}

/* mobile */
@media(max-width:768px){
  .spotlight-card{
    flex-direction:column;
    text-align:center;
  }
  .spotlight-card img{
    width:100%;
  }
}
/* ===== Spotlights: constrain card image size ===== */
.spotlights{
  max-width: 900px;
  margin: 20px auto 120px;
  padding: 10px;
}

.spotlight-card{
  display:flex;
  gap:20px;
  align-items:center;
  background:#1a1a1a;
  border:2px solid #e60026;
  border-radius:14px;
  padding:18px;
}

/* Key part: keep image small + crop nicely */
.spotlight-card img{
  width: 320px;          /* card thumbnail width on desktop */
  max-width: 40vw;       /* prevents taking over the layout */
  height: 220px;         /* fixed height = consistent cards */
  object-fit: cover;     /* crop instead of stretching */
  border-radius: 10px;
  display:block;
  flex: 0 0 auto;
}

.spotlight-text{ flex:1; text-align:left; }

@media(max-width:768px){
  .spotlight-card{ flex-direction:column; text-align:center; }
  .spotlight-card img{
    width:100%;
    max-width: 680px;
    height: 240px;
  }
}

/* Prevent oversized flyers + keep stable layout on the index */
.flyer-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .flyer {
    width: calc(100vw - 24px);
    max-width: 420px;
    margin: 12px auto 72px;
    padding: 8px;
  }

  .flyer-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: contain;
  }

  .caption {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .flyer-body .flyer {
    width: calc(100vw - 24px);
    max-width: 440px;
    padding: 8px;
  }

  .flyer-body .flyer img,
  .flyer-body .flyer video {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .flyer-body .caption {
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
  }
}
/* ===== Compact archive rows for All events ===== */
.archive-row {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
}

.archive-row + .archive-row {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.archive-row-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
}

.archive-thumb {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #111;
  display: block;
}

.archive-thumb.placeholder {
  background: linear-gradient(135deg, #111 0%, #1b1b1b 100%);
}

.archive-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.archive-meta {
  margin-bottom: 4px;
}

.archive-city {
  color: #fff;
  font-weight: 700;
  margin-right: 8px;
}

.archive-snippet {
  color: #ffcc00;
  line-height: 1.4;
  word-break: break-word;
}

.archive-row-link:hover .archive-snippet {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .archive-thumb {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .archive-row-link {
    gap: 8px;
    padding: 8px 0;
  }

  .archive-snippet {
    font-size: 0.95rem;
  }
}
.mobile-pill-menu-wrap {
  width: 100%;
  text-align: center;
}

.mobile-pill-toggle {
  display: none;
}

/* Phone menu */
@media (max-width: 700px) {
  .mobile-pill-menu-wrap {
    text-align: left;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .mobile-pill-toggle {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
    background: #fff;
    color: #111;
  }

  .pill-tabs {
    display: none;
    margin-top: 10px;
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin-left: auto;
  }

  .pill-tabs.mobile-open {
    display: flex;
  }

  .pill-tabs .pill {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

/* Desktop keeps normal pills */
@media (min-width: 701px) {
  .pill-tabs {
    display: flex;
  }
}
/* Beginner page */

.beginner-page {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 45%, #fff7ed 100%);
  color: #1f2937;
}

.beginner-page .topbar {
  background: #7f1d1d;
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.beginner-page .nav {
  background: #ffffff;
  border-bottom: 1px solid #fed7aa;
  padding: 14px 16px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.beginner-page .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.beginner-page .brand {
  font-size: 22px;
  font-weight: 800;
  color: #7f1d1d;
  letter-spacing: -0.3px;
}

.beginner-page .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.beginner-page .nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  background: #fff;
  border: 1px solid #fed7aa;
  padding: 8px 12px;
  border-radius: 999px;
}

.beginner-page .nav-links a.active {
  background: #b91c1c;
  color: #fff;
  border-color: #b91c1c;
}

.beginner-page .hero {
  padding: 56px 16px 36px;
  text-align: center;
}

.beginner-page .hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.beginner-page .eyebrow {
  display: inline-block;
  background: #ffedd5;
  color: #7f1d1d;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.beginner-page h1 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: #7f1d1d;
  letter-spacing: -1.4px;
}

.beginner-page .hero p {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 26px;
  color: #374151;
}

.beginner-page .cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.beginner-page .cta-row.align-left {
  justify-content: flex-start;
}

.beginner-page .btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.beginner-page .btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.beginner-page .btn-primary {
  background: #b91c1c;
  color: #fff;
  box-shadow: 0 8px 20px rgba(185, 28, 28, 0.18);
}

.beginner-page .btn-secondary {
  background: #fff;
  color: #7f1d1d;
  border: 1px solid #fed7aa;
}

.beginner-page .full-width {
  width: 100%;
  margin-top: 18px;
}

.beginner-page .section {
  padding: 34px 16px;
}

.beginner-page .container {
  max-width: 1100px;
  margin: 0 auto;
}

.beginner-page .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.beginner-page .card,
.beginner-page form {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(127, 29, 29, 0.06);
}

.beginner-page .card h2,
.beginner-page .card h3 {
  margin-top: 0;
  color: #7f1d1d;
  line-height: 1.2;
}

.beginner-page .card p {
  color: #374151;
}

.beginner-page .muted {
  color: #6b7280;
  font-size: 14px;
}

.beginner-page .city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.beginner-page .city-pill {
  background: #ffffff;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 11px 14px;
  text-align: center;
  font-weight: 800;
  color: #7f1d1d;
}

.beginner-page .form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.beginner-page form {
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(127, 29, 29, 0.08);
}

.beginner-page label {
  display: block;
  font-weight: 800;
  margin: 14px 0 6px;
  color: #111827;
}

.beginner-page input,
.beginner-page select,
.beginner-page textarea {
  width: 100%;
  border: 1px solid #fdba74;
  border-radius: 14px;
  padding: 12px 13px;
  font-size: 16px;
  font-family: inherit;
  background: #fffaf5;
  color: #111827;
}

.beginner-page textarea {
  min-height: 105px;
  resize: vertical;
}

.beginner-page .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.beginner-page .checkbox-row input {
  width: auto;
  margin-top: 5px;
}

.beginner-page .checkbox-row label {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
}

.beginner-page .honeypot {
  display: none;
}

.beginner-page .status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  display: none;
  font-weight: 700;
}

.beginner-page .status.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.beginner-page .status.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.beginner-page .fine-print {
  font-size: 13px;
  color: #6b7280;
  margin-top: 14px;
}

.beginner-page .footer {
  text-align: center;
  padding: 36px 16px;
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 850px) {
  .beginner-page .grid,
  .beginner-page .form-wrap {
    grid-template-columns: 1fr;
  }

  .beginner-page .city-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .beginner-page .hero {
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .beginner-page .city-list {
    grid-template-columns: 1fr;
  }

  .beginner-page .nav-inner {
    justify-content: center;
  }

  .beginner-page .brand {
    width: 100%;
    text-align: center;
  }

  .beginner-page .nav-links {
    justify-content: center;
  }
}
/* Force white text inside beginner red hero */

.beginner-page .beginner-hero {
  color: #ffffff;
}

.beginner-page .beginner-hero h1,
.beginner-page .beginner-hero h2,
.beginner-page .beginner-hero p {
  color: #ffffff !important;
}

.beginner-page .beginner-hero .hero-inner > h1,
.beginner-page .beginner-hero .hero-inner > h2,
.beginner-page .beginner-hero .hero-inner > p {
  color: #ffffff !important;
}
/* Center beginner page menu links */

.beginner-page .beginner-nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin: 28px auto 24px;
  text-align: center;
}

.beginner-page .beginner-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
