:root {
    --main-action-color: #03C4EB;
    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;
}

.styled_button a {
    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;
}

.btn-any {
    border: 2px solid #000;
    color: #000;
    display: block
}

.btn-any:hover {
    background: #03C4EB;
    border: 2px solid #03C4EB;
    color: #000;
}

/* Action color buttons */
.btn-action {
    background: var(--main-action-color);
    border: 2px solid var(--main-action-color);
    color: #fff;
}

.btn-action:hover {
    background: #111;
    border: 2px solid #fff;
    color: #fff;
}

.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;
    }
}

/* 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-container {
}

#buyTickets .buyTickets-content {
}

#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-any {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: #fff;
}

#buyTickets .btn-any:hover {
    background: #111;
    border: 2px solid #fff;
    color: #fff;
}

/* =========================================================
   General Admission pricing table (light background version)
   ========================================================= */
.ga {
  max-width: 100%;
  overflow-x: clip;
}

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

.gaCtaMobile {
  display: none;
}

.gaTable {
  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);
}

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

.gaTable 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);
}

.gaTable thead .gaHeadCta{
  padding: 1.2rem 1.4rem;
  text-align: left;
}

.gaTable thead .gaHeadCta .styled_button {
  margin: 0;          /* remove any default margins */
}

/* Column sizing */
.gaColDay {
  width: auto;
}

.gaColHours {
  width: 22rem;   /* fits “10:00 am – 11:00 pm” comfortably */
}

.gaColPrice {
  width: 9rem;    /* just enough for header + $80 */
}

.gaTable thead th:nth-child(2),
.gaTable thead th:nth-child(3) {
  padding-right: 1.4rem; /* must match td padding */
  text-align: right;
}
s
.gaTable tbody td:nth-child(3),
.gaTable tbody td:nth-child(4) {
  text-align: right;
}

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

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

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

.gaDay {
  font-weight: 500;
  color: rgba(15,23,42,0.95);
  white-space: normal;
  overflow-wrap: normal;   /* don't break inside words */
  word-break: normal;
  hyphens: none;
}

.gaHours {
  color: rgba(15,23,42,0.8);
  white-space: normal;
  overflow-wrap: normal;   /* don't break inside "2:00pm" */
  word-break: normal;
  hyphens: none;  
}

.gaPriceWrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

.gaHighlight {
  background: rgba(59,130,246,0.06);
}

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  /* Hide desktop header */
  .gaTable thead {
    display: none;
  }

  .gaTable thead{ display: none; }

  .gaCtaMobile{
    display: block;
    margin-bottom: 1.2rem;
    text-align: center;
  }

  .gaCtaMobile .styled_button{
    margin: 0;
  }

  .gaTable,
  .gaTable tbody,
  .gaTable tr,
  .gaTable th,
  .gaTable td {
    display: block;
    width: 100%;
  }

  /* Card layout per row: Day left, Hours right, then prices */
  .gaTable 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;
  }

  .gaTable tbody th {
    grid-area: day;
    padding: 0;
  }

  .gaTable tbody td:nth-child(2) {
    grid-area: hours;
    padding: 0;
    text-align: right;
    color: rgba(15, 23, 42, 0.80);
    white-space: nowrap;
  }

  .gaTable tbody td:nth-child(3) {
    grid-area: adult;
    padding: 0;
    margin-top: 0.2rem;
    border: 0;
  }

  .gaTable tbody td:nth-child(4) {
    grid-area: youth;
    padding: 0;
    border: 0;
  }

  /* Price rows: label left, price right (single line each) */
  .gaPriceWrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.2rem;
    padding: 0;
    border: 0;
  }

  /* Labels must be visible on mobile */
  .gaPriceLabel {
    display: block;
    color: rgba(15, 23, 42, 0.60);
    white-space: nowrap;
  }

  .gaPrice {
    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;
  }

  /* Prevent awkward word breaks */
  .gaDay,
  .gaHours {
    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;
  }

/* #services {
    display:none;
} */
/* Services customization for special guests */
#services .profile {
    text-align: center;
}

#services .profile h4 {
    font-weight: 700;
    color: var(--main-action-color);
    margin-bottom: 5px;
}

#services h4.profile-title {
    font-weight: 700;
    color: var(--main-action-color);
    margin-bottom: 5px;
}

#services .profile-description {
    color: #333333;
    line-height: 24px;
}

#services .profile span {
    color: #333333;
}

.fixedsize-thumbnail {
    width: 260px;
}

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

.vendor-card {
    background-color: #EEE;
    /* margin: 1em; */
    /* padding: 1em; */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
}

.card-custom {
    overflow: hidden;
    border-radius: 10px;
    /*min-height: 450px; */
    box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
  }


#vendors .vendor-card a {
    /* color: #111; */
}


/* Agenda Styling */
/* Dates */
.agenda .agenda-date .dayofmonth {
    width: 1em;
    font-size: 2em;
    line-height: 36px;

    /* float: left; */
    text-align: right;
    margin-right: 10px;
}

.agenda .agenda-date .dayofweek {
    font-size: 1em;
    font-weight: 700;
}

.agenda .agenda-date .shortdate {
    font-size: 0.75em;
}

/* Times */
.agenda .agenda-time {
    font-family: monospace;
    width: 10em;
}

/* Events */
.agenda .agenda-events {
}

.agenda .agenda-events .agenda-event {
}

tr.border_bottom_cell1 td.border_bottom_cell2 {
    border-bottom: 2px solid black;
}

tr.border_bottom td {
    border-bottom: 2px solid black;
}

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

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

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



#subscribe button[type="submit"] {
    background-color: transparent;
}

@media (max-width: 767px) {
}


/* Utility classes */
.scrollable-table {
    height: 34em;
    overflow-y: scroll;
}
