  :root {
    --dark-gray: black;
    --light-gray: black;
    --left-header-yellow: #F9BA2C;
    --yellow: #F9BA2C;
    --hover-color: #e1b900;
    --text-white: #F5F5F5;
    --background-black: black;
    --card-bg: black;
    --shadow: rgba(0, 0, 0, 0.1);
    --text-black: black;
    --calendar-color: #202021;
    --calendar-border: #333;
    --footer-links: #A8A8A8;
    --contact-container-color: #151515;
    --contact-input-color: #2E2E2E;
  }

  /* :root {
    --dark-gray: #1F1F1F;
    --light-gray: #A8A8A8;
    --left-header-yellow: #F9BA2C;
    --yellow: #F9BA2C;
    --hover-color: #e1b900;
    --text-white: #F5F5F5;
    --background-black: #121212;
    --card-bg: #2E2E2E;
    --shadow: rgba(0, 0, 0, 0.1);
    --text-black: black;
    --calendar-color: #2c2c2c;
    --calendar-border: #333;
    --contact-container-color: #2E2E2E;
    --contact-input-color: #1F1F1F;
    --footer-links: #A8A8A8;
  } */
  
  * {
    box-sizing: border-box;
  }
  
  header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* pushes left and right to edges */
    height: 80px;
    background-color: var(--background-black);
    color: var(--text-white);
    box-shadow: 0 2px 4px var(--shadow);
    border-bottom: 1px solid var(--yellow);
    position: relative;
  }
  
  /* Yellow section (1/6 of header) */
  .header-left {
    background-color: var(--left-header-yellow);
    width: 22.00%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    position: relative;
  }
  
  /* Anchor wrapping the logo */
  .logo-link {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
  }
  
  /* Logo image */
  .logo {
    max-height: 80px;
    width: auto;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
  
  /* Clickable title positioned in center of full header */
  .title-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    z-index: 2;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    padding-right: 2rem;
  }  
  
  /* Style the H1 text */
  .main-header-title {
    font-family: 'Antonio', sans-serif;
    font-size: 2.5rem;
    color: var(--yellow);
    margin: 0;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  
  .title-link:hover .main-header-title {
    opacity: 0.8;
  }  

  /* Nav Menu Styles */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .nav-links li {
    position: relative;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.25rem;
    font-family: 'Antonio', sans-serif;
    padding: 0.5rem;
    transition: color 0.2s ease;
  }

  .nav-links a:hover {
    color: var(--yellow);
  }

  #stadiums-toggle {
    display: inline-flex;
    align-items: center;
    font-size: 1.25rem;
    text-decoration: none;
  }
  
  #stadiums-toggle .arrow {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
  }  

  #stadiums-toggle.open .arrow {
    transform: rotate(180deg);
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--calendar-color);
    min-width: 180px;
    z-index: 1000;
    box-shadow: var(--calendar-border);
    border-radius: 6px;
    overflow: hidden;
  }

  @media (min-width: 601px) {
    .dropdown:hover .dropdown-content {
      display: block;
    }
  }

  .dropdown-content.show {
    display: block;
  }

  .dropdown-content li {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--calendar-color);
    white-space: nowrap;
  }

  .dropdown-content li a {
    color: var(--text-white);
  }

  .dropdown {
    align-self: center;
    margin-right: 0; /* was 2rem, which pushes it too far right */
  }  

  /* Hamburger Toggle (Mobile) */
  .menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--text-white);
    cursor: pointer;
    margin-right: 0.5rem; /* adds spacing from the right edge */
    align-self: center; /* ensures vertical centering within flexbox */
  }

  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--card-bg);
    color: var(--text-white);
  }
  
  main {
    padding: 0rem;
  }

  .content-section{
    padding: 2rem;
  }

  .content-section a {
    color: var(--text-white);
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  
  .content-section a:hover,
  .content-section a:focus {
    color: var(--hover-color);
  }
  
  .stadium-grid-section {
    text-align: center;
    padding: 12rem 1rem;
    position: relative;
    background-image: url('/logos/seats-image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Cancels out parent padding if inside a centered container */
    box-sizing: border-box;
    overflow: hidden;
  }

  .stadium-grid-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* adjust opacity/color as needed */
    z-index: 1;
  }
  
  .stadium-grid-section > * {
    position: relative;
    z-index: 1; /* Ensures content appears above overlay */
  }
  
  .stadium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .stadium-grid-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }
  
  .stadium-grid-section ul li {
    display: flex;
    align-items: flex-start;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    justify-content: center;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
  }
  
  .stadium-grid-section ul li:before {
    content: "\2713";
    font-size: 1.5rem;
    color: var(--yellow);
    margin-right: 10px;
    flex-shrink: 0;
    font-family: Arial, sans-serif;
  }
  
  .stadium-grid-section ul li:hover {
    transform: translateX(5px);
    transition: transform 0.2s ease;
    cursor: pointer;
  }  
  
  .stadium-card {
    background-color: var(--yellow);
    color: var(--text-black);
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .stadium-card:hover {
    opacity: 0.8;
  }

  #weather {
    text-align: center;
  }

  .weatherwidget-io {
    margin: 1rem;
  }  

  .affiliate-button {
    font-family: 'Antonio', sans-serif;
    font-size: 1.3rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 0 auto; /* Center horizontally */
    text-align: center;
    text-decoration: none;
    padding: 0.5rem 2rem;  /* smaller vertical and horizontal padding */
  }

  .affiliate-button:hover {
    transform: scale(1.05);
  }

  .affiliate-button-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .stubhub-logo {
    height: 30px;
    margin-left: 0.5rem; /* Logo on the right */
    vertical-align: middle;
  }

  .selector {
    margin-bottom: 1.5rem;
    text-align: center;
    justify-content: center;
  }
  
  .selector label {
    display: none;
  }

  .selector select {
    display: none;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text-white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    appearance: none; /* Remove default arrow styling */
    transition: all 0.2s ease-in-out;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23FAD65A' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
  }
  
  /* On hover */
  .selector select:hover {
    border-color: var(--yellow);
  }
  
  /* On focus */
  .selector select:focus {
    outline: none;
  }
  
  .map-container {
    width: 100%;
    max-width: 900px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0.5rem;
    margin-left: auto;
    aspect-ratio: 16 / 14;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    cursor: grab;
  }
  
  iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
  }

  .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
    cursor: grab;
    overflow: scroll;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .image-wrapper img {
    transition: transform 0.3s ease;
  }  
  
  .image-wrapper:active {
    cursor: grabbing;
  }

  .static-overlay {
    width: 100%;
    height: auto;
    display: block;
    user-select: none; /* prevent text/image selection while dragging */
    position: relative;
    top: 0; /* We'll update this with JS */
    transition: top 0.1s ease-out; /* optional smooth movement */
  }  

  .map-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 1rem auto;
  }
  
  .toggle-switch {
    position: relative;
    width: 260px;
    height: 40px;
    background-color: var(--yellow);
    border-radius: 20px;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    overflow: hidden;
  }
  
  .toggle-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    font-weight: 600;
    color: var(--text-black);
    z-index: 2;
    pointer-events: none;
    font-size: 0.8rem;
  }

  .toggle-labels span {
    flex: 1;
    text-align: center;
    line-height: 1;
    transition: color 320ms cubic-bezier(0.25, 0.9, 0.25, 1),
              font-weight 320ms cubic-bezier(0.25, 0.9, 0.25, 1);
  }  
  
  .toggle-slider {
    position: absolute;
    top: 2px;
    left: 50%;
    width: calc(50% - 4px);
    height: 36px;
    background-color: var(--background-black);
    border-radius: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 320ms cubic-bezier(0.25, 0.9, 0.25, 1);
    will-change: transform;
    z-index: 1;
  }
  
  /* Active state */
  .toggle-switch.active .toggle-slider {
    transform: translateX(0);
  }  
  
  /* Make the selected label darker/bolder */
  .toggle-switch:not(.active) .left-label {
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255,255,255,0.35);
  }

  .toggle-switch.active .right-label {
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255,255,255,0.35);
  }

  .map-disclaimer,
  .shade-checker-disclaimer {
    text-align: center;
    font-size: 0.80rem;
    font-style: italic;
    color: #aaa;
    margin-top: 0.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }  

  .shade-checker {
    max-width: 900px;
    margin: 1rem auto 0 auto;
    padding: 1rem;
  }

  .shade-checker h2 {
    text-align: center;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
  }

  .shade-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0rem;
  }
  
  .shade-form label {
    font-weight: bold;
    font-size: 1rem;
    color: var(--text-white);
  }
  
  .shade-form select {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text-white);
    border: 1px solid var(--calendar-border);
    border-radius: 8px;
    appearance: none;
  }
  
  .shade-form select:hover {
    border-color: var(--yellow);
  }
  
  .shade-form select:focus {
    outline: none;
    border: 2px solid var(--yellow);
  }

  .shade-checker-button {
    background-color: var(--yellow);
    color: var(--text-black);
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.4rem 1rem;   /* Smaller padding */
    font-size: 1rem;         /* Smaller text */
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 25%;
    margin: auto;
  }
  
  .shade-checker-button:hover {
    opacity: 0.8;
  }
  
  .shade-result {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--text-white);
    text-align: center;
  }
  
  .affiliate-links {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 1rem;
  }

  .affiliate-links h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .affiliate-disclaimer {
    text-align: center;
    font-size: 0.80rem;
    font-style: italic;
    color: var(--left-header-yellow);
    margin-top: 0rem;
    max-width: 900px;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }  
  
  .affiliate-links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .affiliate-links li {
    margin-bottom: 1rem;
  }
  
  .affiliate-links a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: bold;
  }
  
  .affiliate-links a:hover {
    text-decoration: underline;
  }

    /* --- Calendar Specific Styles --- */

  .affiliate-links .calendar-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
  }

  .affiliate-links .calendar-controls button {
    background: var(--yellow);
    color: var(--card-bg);
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
  }

  .affiliate-links .calendar-controls button:hover {
    opacity: 0.8;
  }

  .affiliate-links .calendar-controls h3 {
    margin: 0;
  }

  .affiliate-links .header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }

  .affiliate-mobile-h2 {
    display: none;
  }
  
  .affiliate-desktop-h2 {
    display: inline;
  }

  .affiliate-links .day-name {
    padding: 10px 0;
  }

  .affiliate-links .calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 columns for the days of the week */
    gap: 5px;
  }
  
  .affiliate-links .week {
    display: contents; /* This will allow each row to take on the grid layout */
  }
  
  .affiliate-links .day {
    background: var(--calendar-color);
    border: 1px solid var(--calendar-border);
    padding: 10px;
    min-height: 80px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .affiliate-links .day.blank {
    background: transparent;
    border: none;
    pointer-events: none;
  }
  
  .affiliate-links .day.today {
    border: 2px solid var(--yellow);
  }
  
  .affiliate-links .event {
    background: var(--yellow);
    color: var(--card-bg);
    padding: 2px 4px;
    margin-top: 5px;
    font-size: 12px;
    border-radius: 4px;
    display: block;
    text-decoration: none; /* no underline */
    font-weight: bold;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  
  .affiliate-links .event:hover {
    opacity: 0.8;
  }

  .event.past-event {
    pointer-events: none;
    opacity: 0.4;
    cursor: default;
  }

  .affiliate-links .calendar-controls button.disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
  }

  /* Mobile List Container */
  .mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Mobile Event Card */
  .mobile-event-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--calendar-border);
    border-radius: 8px;
    padding: 12px;
    background-color: var(--background-black);
    color: var(--card-bg);
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-event-card > div {
    flex: 1;
  }

  /* Hover effect on mobile event card */
  .mobile-event-card:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  /* Typography */
  .mobile-event-date {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 1.2em;
    color: var(--yellow); /* Date in yellow */
  }

  .mobile-event-title {
    font-size: 1.1em;
    margin-bottom: 4px;
    color: var(--yellow); /* Title in yellow */
  }

  .mobile-event-time {
    font-size: 0.9em;
    color: #ddd; /* Lighter text for time */
  }

  /* "Buy Tickets" Button */
  .buy-tickets-button {
    background-color: var(--yellow);
    color: var(--text-black);
    text-decoration: none;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 5px;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
  }

  /* Hover effect for the "Buy Tickets" button */
  .buy-tickets-button:hover {
    opacity: 0.8;
  }

  /* Mobile Event Card Inside Link */
  .mobile-event-card a {
    color: var(--text-black); /* Ensure the link color stays yellow */
    text-decoration: none;
  }

  .faq {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
  }

  .faq h2 {
    text-align: center;
  }

  .accordion {
    margin-top: 1rem;
    /* border-top: 1px solid #ccc; */
  }
  
  .accordion-item {
    border-bottom: 1px solid #ccc;
  }
  
  .accordion-button {
    color: var(--text-white);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1rem 2.25rem 1rem 1rem; /* top/right/bottom/left */
    cursor: pointer;
    position: relative;
  }
  
  .accordion-button::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
  }
  
  .accordion-button.active::after {
    content: '-';
    font-weight: bold;
    font-size: 1.5rem; /* slightly increase */
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .accordion-content p {
    margin: 0.5rem 0 1rem;
  }
  
  .accordion-button.active + .accordion-content {
    max-height: 500px; /* Enough for a few paragraphs */
    padding-bottom: 1rem;
  }

  #reviews {
    max-width: 900px;
    margin: 1rem auto;
    padding: 1rem;
    background-color: var(--card-bg);
    color: var(--text-white);
    border-radius: 8px;
  }
  
  #reviews h2 {
    text-align: center;
    margin-bottom: 0.75rem;  /* slightly less space */
  }
  
  #reviewForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  #reviewForm label {
    font-weight: bold;
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 0rem;  /* added small margin under label */
  }

  #starRating {
    display: flex;
    flex-direction: row-reverse; /* So stars fill left to right */
    justify-content: left;
    gap: 0.25rem;
    font-size: 2rem;
    user-select: none;
  }
  
  #starRating input[type="radio"] {
    display: none;
  }
  
  #starRating label {
    cursor: pointer;
    color: gray;
    transition: color 0.2s ease-in-out;
  }
  
  #starRating input[type="radio"]:checked ~ label {
    color: gray; /* unchecked stars after selected star */
  }
  
  #starRating label:hover,
  #starRating label:hover ~ label {
    color: var(--left-header-yellow);
  }
  
  /* Highlight selected stars */
  #starRating input[type="radio"]:checked ~ label,
  #starRating input[type="radio"]:checked + label {
    color: var(--left-header-yellow);
  }  
  
  #reviewForm input[type="text"],
  #reviewForm select,
  #reviewForm textarea {
    padding: 0.6rem 1rem;  /* slightly less padding */
    font-size: 1rem;
    background-color: var(--card-bg);
    color: var(--text-white);
    border: 1px solid var(--calendar-border);
    border-radius: 8px;
    appearance: none;
    resize: vertical;
  }
  
  #reviewForm input[type="text"]:hover,
  #reviewForm select:hover,
  #reviewForm textarea:hover {
    border-color: var(--yellow);
  }
  
  #reviewForm input[type="text"]:focus,
  #reviewForm select:focus,
  #reviewForm textarea:focus {
    outline: none;
    border: 2px solid var(--yellow);
  }
  
  #reviewForm button[type="submit"] {
    background-color: var(--yellow);
    color: var(--text-black);
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.4rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    width: 25%;
    margin: 0.5rem auto 0 auto;  /* smaller top margin */
  }
  
  #reviewForm button[type="submit"]:hover {
    opacity: 0.8;
  }

  .reviews-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
  
  #allReviews {
    display: flex;
    overflow-x: auto;      /* allow horizontal scroll */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-behavior: smooth;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-bottom: 1rem;  /* add some space below for scrollbar */
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
  }
  
  .review {
    background-color: var(--card-bg);
    color: var(--text-white);
    border: 1px solid var(--calendar-border);
    border-radius: 8px;
    padding: 1rem;
    box-sizing: border-box;
  
    /* Remove width 100% and max-width for carousel */
    /* Set fixed width to keep consistent size */
    width: 280px;
  
    flex: 0 0 auto; /* prevent shrinking/growing, fixed width */
  
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .review strong {
    color: var(--yellow);
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .review em {
    margin: 0.5rem 0;
    font-style: italic;
  }
  
  .review hr {
    display: none; /* no need for <hr> if using cards */
  }
  
  .review p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-white);
  }  

  /* Style for prev/next buttons */
  #prevReview, #nextReview {
    background-color: var(--yellow);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: var(--text-black);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
  }

  #prevReview:hover, #nextReview:hover {
    opacity: 0.8;
  }

  #prevReview:disabled, #nextReview:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  #prevReview {
    margin-right: 0.5rem;
  }

  #nextReview {
    margin-left: 0.5rem;
  }

  #reviewMessage {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
  }
  .hidden {
    display: none;
  }  
  
  .email-signup {
    background-color: var(--dark-gray);
    color: var(--text-white);
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid var(--yellow);
  }
  
  .email-signup h2 {
    color: var(--text-white);
    margin: 0 0 0.5rem 0;
  }
  
  .email-signup p {
    margin: 0.5rem 0 1rem;
  }
  
  .email-signup form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .email-signup input[type="email"] {
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    width: 90%;
    max-width: 350px;
    background-color: var(--light-gray);
    color: var(--text-black);
  }

  .email-signup input[type="email"] {
    background-color: var(--text-white);
    color: var(--text-black);
  }
  
  .email-signup input::placeholder {
    color: var(--text-black);
    opacity: 1;
  }  

  .email-signup button {
    background-color: var(--yellow);
    color: var(--background-black);
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .email-signup button:hover {
    opacity: 0.8;
  }
  
  .hidden {
    display: none;
  }  

  /* === Contact Page Styles === */
.contact-body {
  background-color: var(--background-black);
  color: var(--text-white);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.contact-container {
  max-width: 600px;
  margin: 60px auto;
  background-color: var(--contact-container-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px var(--shadow);
  border: 1px solid var(--calendar-border);
}

.contact-container h1 {
  text-align: center;
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: bold;
  color: var(--text-white);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: var(--contact-input-color);
  border: 1px solid var(--calendar-border);
  color: var(--text-white);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  outline: none;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid var(--yellow);
}

.contact-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: var(--yellow);
  color: var(--text-black);
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  opacity: 0.8;
}

#form-status {
  margin-top: 15px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--light-gray);
}

.founder-photo-container {
  margin-top: 2em;
  text-align: center;
}

.founder-photo {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.founder-photo.circle {
  border-radius: 50%;
}

.founder-signoff {
  margin-top: 1em;
  font-style: italic;
  font-size: 1.1em;
}
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--background-black);
    font-size: 0.9rem;
  }

  .site-footer {
    background-color: var(--background-black);
    color: #ccc;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .footer-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: var(--footer-links);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  .footer-social {
    margin-bottom: 1rem;
  }
  
  .footer-social a {
    margin: 0 0.5rem;
    font-size: 1.5rem;
    color: var(--yellow);
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .footer-social a:hover {
    opacity: 0.7;
  }
  
  .footer-copy {
    color: #777;
  }

  .bmc-static-button {
    background-color: var(--yellow);
    color: #000;
    font-weight: bold;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin-left: 10px;
  }
  
  .bmc-static-button:hover {
    background-color: var(--hover-color);
  }
  
  .bmc-logo {
    height: 20px;
    width: auto;
    vertical-align: middle;
  }

  .stubhub-popup{
    display: none;
  }
  
  @media (max-width: 600px) {
    h2,
    .affiliate-mobile-h2 {
      font-size: 1.35rem;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      gap: 1.5rem;
      background-color: var(--background-black); /* adjust to match your theme */
      padding: 1rem 0 0.5rem 0;
      position: absolute;
      top: 60px; /* below the navbar */
      right: 0;
      width: 100%;
      z-index: 999;
      align-items: center;
    }
  
    .nav-links li {
      margin-bottom: 0.5rem;
      text-align: center;
      width: 100%; /* make each item full width for easier tapping */
      max-width: 300px; /* limit max width for nicer appearance */
      margin-left: auto;
      margin-right: auto;
    }
  
    .nav-links.open {
      display: flex;
      max-height: 300px; /* adjust as needed */
    }

    .dropdown-content {
      position: static;
      box-shadow: none;
      background-color: transparent;
      text-align: center;
      padding-left: 0;
      margin-top: 0;
      padding-top: 0;
      width: 100%;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
      display: none;
    }

    .dropdown-content.show {
      display: block;
    }

    .dropdown-content li a {
      color: #fff;
      padding: 2px 0;
      display: block;
      width: 100%;
    }
  
    .dropdown-content li a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
  
    .menu-toggle {
      display: block;
    }
  
    /* Adjust centered title for smaller view */
    .main-header-title {
      font-size: 2rem;
    }

    .stadium-grid-section {
      padding: 6rem 1rem; /* Reduce padding on top/bottom */
      background-size: 200%; /* Zoom in on the background image */
      background-position: center top; /* Adjust focus area if needed */
    }

    .toggle-labels {
      padding: 0;
      font-size: 0.75rem;
    }
    
    .map-container {
      aspect-ratio: 1 / 1.15;
    }

    .image-wrapper {
      overflow: hidden;
      align-items: center;
      justify-content: center;
      /* NO display here */
    }
  
    .static-overlay {
      position: static !important; /* keeps JS top from affecting it */
      width: 100%;
      height: auto;
      max-height: 100%;
    }
    
    .affiliate-links .calendar {
      display: block; /* Override the grid layout */
    }

    .affiliate-mobile-h2 {
      display: inline;
    }

    .affiliate-desktop-h2 {
      display: none;
    }
  
    .affiliate-links .event-list-item {
      background: var(--calendar-color);
      border: 1px solid var(--calendar-border);
      border-radius: 8px;
      padding: 12px;
      margin-bottom: 10px;
      color: var(--text-white);
    }
  
    .affiliate-links .event-list-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 1rem;
    }
  
    .affiliate-links .event-list-item a {
      color: var(--yellow);
      font-weight: bold;
      text-decoration: none;
    }
  
    .affiliate-links .event-list-item a:hover {
      text-decoration: underline;
    }
  
    /* Optionally hide grid-only elements */
    .affiliate-links .header {
      display: none;
    }
  
    .affiliate-links .day {
      flex: 1 0 14%; /* about 7 days per row */
      min-height: 60px;
      min-width: 14%;
      box-sizing: border-box;
    }

    .affiliate-links .event {
      font-size: 8px; /* slightly smaller text */
      padding: 2px;    /* tighter padding */
    }

    .logo-link {
      position: absolute;
      top: 50%; /* Centers the logo vertically */
      left: 0px; /* Adjust for desired left margin */
      transform: translateY(-50%); /* Ensures the logo is perfectly centered vertically */
    }

    .contact-container {
      margin: 20px;
      padding: 20px;
    }
  
    .contact-form button {
      font-size: 1rem;
      padding: 10px;
    }

    #weather {
      display: none;
    }  

    #stubhub-popup {
      display: none; /* Initially hidden */
      /* Your other styles here */
    }    

    .stubhub-popup {
      position: fixed;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: var(--left-header-yellow);
      color: var(--background-black);
      padding: 0.5rem 0.6rem;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      z-index: 9999;
    }
    
    .popup-content {
      font-family: 'Antonio', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center; /* Center everything horizontally */
      width: 100%;
    }
    
    .stubhub-popup a {
      display: flex;
      flex-direction: column;
      align-items: center;   /* Center text and logo horizontally */
      justify-content: center;
      text-decoration: none;
      color: var(--background-black);
      font-size: 1.3rem;
    }
    
    .popup-main {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .stubhub-popup-logo {
      height: 30px;
      margin-left: 0.5rem;
      vertical-align: middle;
    }
    
    .popup-subtext {
      font-size: 0.7rem;
      color: var(--background-black);
      margin-top: 0.1rem;
      text-align: center;
    }
    
    .stubhub-close {
      background: transparent;
      border: none;
      color: var(--background-black);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      margin-left: 1rem;
    } 
  
    .shade-checker-button {
      padding: 0.8rem;
      font-size: 1rem;
      margin: auto;
      width: 55%;
    }

    #reviewForm button[type="submit"] {
      width: 50%;
    }

    .review {
      width: 22vw; /* about 1/4 of viewport width minus gap */
      min-width: 180px; /* prevent too small on tiny screens */
    }

    @media (max-width: 429px) {
      .logo {
        max-height: 70px;
        width: auto;
      }
    }
  }
  