:root {
    --main-action-color: var(--accent-color);
    font-size: 62.5%;
}

body {
    font-size: 1.8rem;  /* default font size, 18px */
}


p {
    margin: 0 0 1.0rem 0;
}

.last-p {
    margin: 0 0 0 0;
}

h2 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2.4rem;
}

.list-nodots {
    list-style-type: none;
}

/* ============================================================
   lax-btn — button system
   Base class provides shared typography, sizing, and transition.
   Always pair with one modifier.

   FLAVOURS:
   --outline  Black border, transparent bg. Hover: teal fill.
              Use on light/white backgrounds.
              e.g. standalone CTAs on white sections

   --filled   Teal fill, white text. Hover: dark fill, white border.
              Use on light/white backgrounds where teal CTA is needed.
              e.g. BUY TICKETS in tickets section, tournament More Info

   --ghost    White border, white/light text, transparent bg.
              Hover: teal fill, teal border.
              Use on dark backgrounds (hero overlay, subscribe bg).
              e.g. hotel Get Rates, subscribe form button

   NOTE: Hero .btn-get-started and nav .btn-buy-tickets are defined
   in style.css (upstream template) and intentionally not migrated.
   However .btn-get-started needs base typography from lax-btn since
   .styled_button a was removed. */
#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
}
.lax-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    text-decoration: none;
    cursor: pointer;
}

/* --outline: black border on light bg, fills teal on hover */
.lax-btn--outline {
    border: 2px solid #000;
    color: #000;
    background: transparent;
}

.lax-btn--outline:hover {
    background: var(--main-action-color);
    border-color: var(--main-action-color);
    color: #000;
}

/* --filled: teal fill on light bg, inverts to dark on hover */
.lax-btn--filled {
    background: var(--main-action-color);
    border: 2px solid var(--main-action-color);
    color: #fff;
}

.lax-btn--filled:hover {
    background: #111;
    border-color: #fff;
    color: #fff;
}

/* --ghost: white outline on dark bg, fills teal on hover */
.lax-btn--ghost {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.lax-btn--ghost:hover {
    background: var(--main-action-color);
    border-color: var(--main-action-color);
    color: #000;
}

.spacer {
    min-height: 2.4rem;
}

/* Standard image reset */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-title p {
    margin-bottom: 1.0rem;
  }

.section-title p:last-child {
    margin-bottom: 3.0rem;
  }



/* --------------------------------------------------------------
# Buy Tickets
-------------------------------------------------------------- */
.btn-buy-tickets {
    color: #fff;
    background: var(--accent-color);
    padding: 7px 22px;
    margin: 0 0 0 15px;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    transition: all ease-in-out 0.3s;
    font-weight: 500;
    line-height: 1;
    font-size: 13px;
    white-space: nowrap;
}

.btn-buy-tickets:hover {
    background: none;
    color: #fff;
}

.btn-buy-tickets:focus {
    color: #fff;
}

@media (max-width: 992px) {
    .btn-buy-tickets {
        margin: 0 15px 0 0;
    }
}

/* GA table wrapper — centered, constrained, full-width on small screens */
.tickets-panel {
  max-width: min(700px, 100%);
  margin-inline: auto;
  margin-bottom: 60px;
}

/* Buy Tickets Section */
#buyTickets {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../img/buyTickets-bg.jpg") fixed center center;
    background-size: cover;
    padding: 80px 0 60px 0;
    /* display: none; */
}

#buyTickets .buyTickets-title {
    color: #333;
    font-weight: 700;
    font-size: 28px;
}

#buyTickets .buyTickets-text {
    line-height: 26px;
}

#buyTickets .buyTickets-text:last-child {
    margin-bottom: 0;
}

/* #buyTickets btn override removed — use .lax-btn--filled directly */

/* =========================================================
   General Admission pricing table — BEM block
   Bricks: static HTML embed (Code Block) + Page CSS.
     .ga-table-wrap              → outer overflow guard
     .ga-table-wrap__cta-mobile  → mobile-only CTA (hidden on desktop)
     .ga-table                   → <table>
     .ga-table__col-day          → <col> day column
     .ga-table__col-hours        → <col> hours column
     .ga-table__col-price        → <col> price columns (×2)
     .ga-table__head-cta         → <th> containing desktop BUY TICKETS button
     .ga-table__muted            → muted age-range label inside <th>
     .ga-table__row--highlight   → weekend bundle row modifier
     .ga-table__day              → day name div inside <th>
     .ga-table__hours            → hours div inside <td>
     .ga-table__price-wrap       → flex wrapper for label + price
     .ga-table__price-label      → hidden on desktop, visible on mobile
     .ga-table__price            → the dollar amount
   ========================================================= */
.ga-table-wrap {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .ga-table-wrap { overflow-x: hidden; }
}

.ga-table-wrap__cta-mobile {
  display: none;
}

.ga-table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.ga-table th,
.ga-table td {
  min-width: 0;
  padding: 1.4rem;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  vertical-align: middle;
}

.ga-table thead th {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(15,23,42,0.92);
  background: rgba(248,250,252,0.95);
  border-bottom: 1px solid rgba(15,23,42,0.1);
}

.ga-table__head-cta {
  padding: 1.2rem 1.4rem;
  text-align: left;
}

.ga-table__head-cta .lax-btn {
  margin: 0;
}

/* Column sizing */
.ga-table__col-day   { width: auto; }
.ga-table__col-hours { width: 22rem; }
.ga-table__col-price { width: 9rem; }

.ga-table thead th:nth-child(2),
.ga-table thead th:nth-child(3) {
  padding-right: 1.4rem;
  text-align: right;
}

.ga-table tbody td:nth-child(3),
.ga-table tbody td:nth-child(4) {
  text-align: right;
}

.ga-table__muted {
  font-weight: 700;
  color: rgba(15,23,42,0.55);
  margin-left: 4px;
}

.ga-table tbody tr:last-child th,
.ga-table tbody tr:last-child td {
  border-bottom: 0;
}

.ga-table tbody tr:nth-child(odd) {
  background: rgba(15,23,42,0.02);
}

.ga-table__row--highlight {
  background: rgba(59,130,246,0.06);
}

.ga-table__day {
  font-weight: 500;
  color: rgba(15,23,42,0.95);
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.ga-table__hours {
  color: rgba(15,23,42,0.8);
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.ga-table__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ga-table__price-label {
  display: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(15,23,42,0.55);
}

.ga-table__price {
  font-weight: 700;
  color: rgba(15,23,42,0.95);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* ---------- Mobile (≤720px) ---------- */
@media (max-width: 720px) {

  .ga-table thead {
    display: none;
  }

  .ga-table-wrap__cta-mobile {
    display: block;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  .ga-table-wrap__cta-mobile .lax-btn {
    margin: 0;
  }

  .ga-table,
  .ga-table tbody,
  .ga-table tr,
  .ga-table th,
  .ga-table td {
    display: block;
    width: 100%;
  }

  .ga-table tbody tr {
    padding: 1.4rem;
    border-bottom: 0.1rem solid rgba(15,23,42,0.10);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "day hours"
      "adult adult"
      "youth youth";
    gap: 0.8rem 1.6rem;
  }

  .ga-table tbody th       { grid-area: day; padding: 0; }
  .ga-table tbody td:nth-child(2) {
    grid-area: hours;
    padding: 0;
    text-align: right;
    color: rgba(15,23,42,0.80);
    white-space: nowrap;
  }
  .ga-table tbody td:nth-child(3) {
    grid-area: adult;
    padding: 0;
    margin-top: 0.2rem;
    border: 0;
  }
  .ga-table tbody td:nth-child(4) {
    grid-area: youth;
    padding: 0;
    border: 0;
  }

  .ga-table__price-wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.2rem;
    padding: 0;
    border: 0;
  }

  .ga-table__price-label {
    display: block;
    color: rgba(15,23,42,0.60);
    white-space: nowrap;
  }

  .ga-table__price {
    font-size: 2.0rem;
    font-weight: 700;
    color: rgba(15,23,42,0.95);
    font-variant-numeric: tabular-nums;
    text-align: right;
    white-space: nowrap;
    margin: 0;
  }

  .ga-table__day,
  .ga-table__hours {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
}







.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

#about {
    display: none;
}

/* Show the background image */
#services {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../img/services-bg.jpg") fixed center center;
    background-size: cover;
    padding: 80px 0 60px 0;
  }

/* ============================================================
   Guest card — BEM block
   Bricks: each card is a Div (.guest-card) containing:
     .guest-card__image   → Image element
     .guest-card__body    → Div (text wrapper)
     .guest-card__name    → Heading
     .guest-card__bio     → Div (paragraph wrapper)
   ============================================================ */
.guest-card {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 20px;
  align-items: start;

  margin: 2.4rem 0;
  padding: 2.0rem 1.6rem;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  border-left: 10px solid var(--accent-color);
}

.guest-card:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.88);
  border-left-color: var(--accent-color);
}

.guest-card:nth-of-type(even) {
  background: linear-gradient(
    135deg,
    rgba(3, 196, 235, 0.10),
    rgba(255, 255, 255, 0.90)
  );
  border-left-color: rgba(25, 25, 25, 0.85);
}

@media (max-width: 768px) {
  .guest-card {
    grid-template-columns: 1fr;
  }
}

.guest-card__image {
  text-align: center;
  max-width: 260px;
}

.guest-card__img {
  width: 100%;
  max-width: 260px;
  height: auto;
}

@media (max-width: 767.98px) {
  .guest-card__img {
    margin-bottom: 1.2rem;
  }
}

.guest-card__name {
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.0rem;
}

.guest-card__bio {
  color: #333333;
  line-height: 24px;
}

.guest-card__bio p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   Tournament card — BEM block
   Bricks: each card is a Div (.tournament-card) containing:
     .tournament-card__image       → Image element
     .tournament-card__body        → Div (text wrapper)
     .tournament-card__title       → Heading
     .tournament-card__description → Div (paragraph wrapper)
   ============================================================ */
.tournament-card {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 20px;
  align-items: start;

  margin: 2.0rem 0;
  padding: 1.6rem;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
  border-top: 10px solid rgba(3, 196, 235, 0.90);
}

.tournament-card:nth-of-type(odd) {
  background: rgba(255, 255, 255, 0.90);
}

.tournament-card:nth-of-type(even) {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.03),
    rgba(255, 255, 255, 0.90)
  );
}

@media (max-width: 768px) {
  .tournament-card {
    grid-template-columns: 1fr;
  }
}

.tournament-card__image {
  text-align: center;
  max-width: 260px;
}

.tournament-card__img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 767.98px) {
  .tournament-card__img {
    margin-bottom: 1.2rem;
  }
}

.tournament-card__title {
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
}

.tournament-card__description {
  line-height: 24px;
}

.tournament-card__description p:last-child {
  margin-bottom: 0;
}


#vendors {
    padding: 2.5em 0 0 0;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.vendor-card {
    background-color: #EEE;
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
}





/* Games Section */
#games {
    padding: 80px 0 60px 0;
}

.games-table{
  width: 100%;
  border-collapse: collapse;
}

.games-table-wrap {
  max-width: clamp(700px, 90vw, 1100px);
  margin-inline: auto;
}

.table-scroll thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--bg, #fff);
}

.games-table th,
.games-table td{
  padding: 0.35rem 0.5rem; /* roughly "table-sm" feel */
  /* padding: 0.5rem 0.75rem;  */
  text-align: left;
  vertical-align: top;
}

.games-table thead th{
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.games-table tbody tr + tr td{
  border-top: 1px solid rgba(0,0,0,0.1);
}

.games-table .col-system {
  width: 18%;
}

.games-table .col-released {
  width: 8%;
}

.games-table .col-games {
  width: 74%;
}

.games-table td {
  word-wrap: break-word;
}

/* Bring a game section */
/* 
#bringinggame {
    display: none
} */

/* Schedule section */
#schedule {
    padding: 80px 0 60px 0;
}




/* Subscribe section layout */
.subscribe-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.subscribe-main h3 {
  font-family: 'Raleway', sans-serif;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.subscribe-main p {
  color: rgba(255,255,255,0.75);
  font-size: 1.6rem;
  margin: 0 0 20px;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  height: 42px;
  padding: 0 16px;
  font-size: 1.4rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.subscribe-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255,255,255,0.15);
}

/* ghost flavour equivalent — dark bg context, white outline fills teal on hover */
.subscribe-form button {
  height: 42px;
  padding: 0 22px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid #fff;
  border-radius: 3px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.subscribe-form button:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/* Social icons */
.subscribe-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.subscribe-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 2.2rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.subscribe-social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

/* Bootstrap md breakpoint (768px) */
@media (max-width: 768px) {
  .subscribe-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .subscribe-social {
    flex-direction: row;
    justify-content: flex-start;
  }

  .subscribe-form input[type="email"] {
    width: 100%;
    min-width: unset;
  }

  .subscribe-form button {
    width: 100%;
  }
}


/* Utility classes */
.table-scroll {
  overflow-x: auto;
  width: 100%;
}

.scrollable-table {
    height: 34em;
    overflow-y: scroll;
}


/* =============================================================
   Schedule of Events – redesigned (replaces old #schedule table)
   ============================================================= */

/* ── Event-type color tokens ── */
#schedule {
  --c-open:        var(--accent-color);
  --c-open-text:   #fff;
  --c-panel:       #7C3AED;
  --c-panel-text:  #fff;
  --c-tournament:  #D97706;
  --c-tourney-text:#fff;
  --c-contest:     #059669;
  --c-contest-text:#fff;
  --c-trivia:      #DB2777;
  --c-trivia-text: #fff;
  --c-speedrun:    #EA580C;
  --c-speedrun-text:#fff;
}

/* ── Legend ── */
.sched-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 0 16px 28px;
  max-width: 860px;
  margin: 0 auto;
}

.sched-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
}

.sched-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

/* ── Days stack ── */
.sched-days {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

/* ── Day card — outer wrapper provides sticky containment ── */
.sched-day {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  border: 1px solid rgba(0,0,0,0.10);
  overflow: visible;
  position: relative;
}

/* ── Day header banner ── */
.sched-day-head {
  background: #111;
  padding: 16px 28px;
  border-bottom: 3px solid var(--accent-color);
  display: flex;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 70px;
  z-index: 10;
  border-radius: 16px 16px 0 0;
}


.sched-day-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
  flex-shrink: 0;
}

.sched-day-text {
  flex: 1;
}

.sched-day-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.1;
}

.sched-day-meta {
  font-size: 1.3rem;
  color: #bbb;
  margin-top: 4px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Events list ── */
.sched-events {
  padding: 6px 0 10px;
  list-style: none;
  margin: 0;
}

/* ── Single event row ── */
.sched-event {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0 16px;
  align-items: start;
  padding: 10px 24px;
  border-left: 4px solid transparent;
  position: relative;
  transition: background 0.15s;
}

.sched-event:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

.sched-event:hover {
  background: rgba(3,196,235,0.04);
}

/* ── Time ── */
.sched-ev-time {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #555;
  padding-top: 4px;
  white-space: nowrap;
}

/* ── Event body ── */
.sched-ev-body {
  min-width: 0;
}

/* ── Type pill ── */
.sched-ev-pill {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 4px;
  line-height: 1.6;
}

/* ── Event name ── */
.sched-ev-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
}

/* ── Location ── */
.sched-ev-loc {
  font-size: 1.3rem;
  color: #555;
  margin-top: 3px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.sched-ev-loc::before {
  content: '📍 ';
}

/* ── Pill color variants ── */
.sched-pill-open       { background: var(--c-open);       color: var(--c-open-text); }
.sched-pill-panel      { background: var(--c-panel);      color: var(--c-panel-text); }
.sched-pill-tournament { background: var(--c-tournament); color: var(--c-tourney-text); }
.sched-pill-contest    { background: var(--c-contest);    color: var(--c-contest-text); }
.sched-pill-trivia     { background: var(--c-trivia);     color: var(--c-trivia-text); }
.sched-pill-speedrun   { background: var(--c-speedrun);   color: var(--c-speedrun-text); }

/* ── Row left-border accent ── */
.sched-event.ev-open       { border-left-color: var(--c-open); }
.sched-event.ev-panel      { border-left-color: var(--c-panel); }
.sched-event.ev-tournament { border-left-color: var(--c-tournament); }
.sched-event.ev-contest    { border-left-color: var(--c-contest); }
.sched-event.ev-trivia     { border-left-color: var(--c-trivia); }
.sched-event.ev-speedrun   { border-left-color: var(--c-speedrun); }

@media (max-width: 992px) {
  .sched-day-head {
    top: 60px;
  }
}

/* ── Opens/closes rows: slightly dimmed ── */
.sched-event.ev-open.ev-close {
  opacity: 0.65;
}

.sched-event.ev-open.ev-close .sched-ev-name {
  font-style: italic;
}

/* =============================================================
   Tickets / Location / Lodging — map + hotel row
   ============================================================= */

.tll-lower {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 30px;
  align-items: start;
}

/* Bootstrap lg breakpoint (992px) */
@media (max-width: 992px) {
  .tll-lower {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   Lodging – hotel cards
   ============================================================= */

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }
}

.hotel-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.hotel-card__logo {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.hotel-card__logo img {
  max-width: 150px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hotel-card__body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-card__name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.hotel-card__distance {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
}

.hotel-card__description {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.5;
  flex: 1;
}

/* pushes rate block to bottom of card body regardless of desc length */
.hotel-card__rate-block {
  margin-top: auto;
}

.hotel-card__rate {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(3,196,235,0.10);
  border: 1px solid rgba(3,196,235,0.30);
  border-radius: 8px;
  padding: 6px 12px;
  align-self: flex-start;
}

.hotel-card__rate-amount {
  font-family: 'Raleway', sans-serif;
  font-size: 2.0rem;
  font-weight: 800;
  color: #111;
}

.hotel-card__rate-label {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

.hotel-card__rate-note {
  font-size: 1.15rem;
  color: #888;
  margin-top: 4px;
}

.hotel-card__footer {
  padding: 0 18px 18px;
}

/* outline flavour equivalent — light bg context, black outline fills teal on hover */
.hotel-card__btn {
  display: block;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  border-radius: 4px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hotel-card__btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #000;
}

/* ============================================================
   Feature list — BEM block
   Bricks: rebuild as repeater of Icon Box elements inside a
   CSS Grid container. Each native element maps to:
     .feature-list           → Section > Container (grid)
     .feature-list__item     → Div (flex row)
     .feature-list__icon     → Icon element
     .feature-list__body     → Div (text wrapper)
     .feature-list__title    → Heading
     .feature-list__description → Text / Paragraph
   ============================================================ */
.feature-list {
  list-style: none;
  padding: 0 0 0 1.5rem;
  margin: 0 0 3rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* lg breakpoint (992px) → 2 columns */
@media (max-width: 992px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* md breakpoint (767px) → 1 column */
@media (max-width: 767px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* Each item: icon left, text right */
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  cursor: default;
}

/* Icon circle */
.feature-list__icon {
  flex-shrink: 0;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  margin-right: 20px;
  transition: background 0.5s, border-color 0.5s;
}

.feature-list__icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
  transition: color 0.5s;
}

/* Hover over whole item inverts the icon */
.feature-list__item:hover .feature-list__icon {
  background: var(--surface-color);
}

.feature-list__item:hover .feature-list__icon i {
  color: var(--accent-color);
}

.feature-list__title {
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feature-list__description {
  line-height: 24px;
}

/* ============================================================
   Games section — two-column pinball/arcade lists
   ============================================================ */
.games-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 767px) {
  .games-lists {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Guest/tournament card images — replaces img-fluid + img-thumbnail
   ============================================================ */
.card-img {
  max-width: 100%;
  height: auto;
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}

@media (max-width: 767px) {
  .card-img {
    margin-bottom: 1.2rem;
  }
}

/* ============================================================
   Vendor card — rolled in Bootstrap .card properties
   ============================================================ */
.vendor-card__body {
  flex: 1 1 auto;
  padding: 1rem;
}

.vendor-card__footer {
  padding: 0.5rem 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  background: inherit;
}

.vendor-card__title {
  /* h4 sizing — no custom rules needed, set via Bricks Heading element */
}

.vendor-card__description {
  /* body text — no custom rules needed, set via Bricks Text element */
}

.vendor-card__link {
  color: var(--accent-color);
}