/* ===========================
   VARIABLES
=========================== */
:root {
  --nav-background: rgb(10, 23, 41);
  --primary-text-color: rgb(246, 244, 236);
  --secondary-text-color: rgba(246, 244, 236, 0.7);
  --footer-bottom-color: rgba(246, 244, 236, 0.5);
  --link-text-color: #ff9500;
  --background-image: linear-gradient(to bottom, rgba(6,9,14,1) 0%, rgba(13,30,52,1) 50%, rgba(6,9,14,1) 100%);
  --body-background-color: rgb(1, 0, 42);
  --landing-container-background: linear-gradient(to bottom, rgb(1, 0, 42) 0%, rgb(2, 0, 84) 30%, rgb(2, 0, 84) 70%, rgba(1, 0, 42) 100%);
  --button-background: linear-gradient(to bottom, rgb(255, 186, 91) 0%, rgb(255, 149, 0) 40%);
  --button-background-hover: linear-gradient(to bottom, rgb(255, 190, 98) 0%, rgb(255, 165, 39) 40%);
  --footer-background-color: rgb(1, 0, 42);
  --menu-price-color: rgb(152, 151, 146);
  --header-gradient: linear-gradient(90deg, rgb(215, 147, 255), rgb(162, 0, 255));
  --event-background: rgb(76, 27, 144)
}

/* ===========================
   RESET / BASE
=========================== */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding-top: 80px;
  background-color: var(--body-background-color);
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

a {
  -webkit-tap-highlight-color: transparent; /* iOS Safari */
  -webkit-touch-callout: none;              /* Disable callout on long press */
}

/* ===========================
   FADE IN / OUT
=========================== */

.fade-section,
.fade-section-mobile,
.fade-out-only-mobile {
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.visible {
  opacity: 1;
}

.fade-out-only-mobile.fade-out {
  opacity: 0;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, p, a {
  text-align: left;
  font-family: 'Inter', 'Arial', sans-serif;
}

h1 {
  color: var(--primary-text-color);
  font-size: 2.6rem;
  font-size: clamp(2.6rem, 2.3642857142857143rem + 1.1785714285714284vw, 4.25rem);
  text-transform: uppercase;
  font-weight: 900;
}

.header-gradient {
  display: inline-block;
  background: var(--header-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 0px;
}
.header-index-landing-text {
  text-align: center;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 1.4285714285714286rem + 5.357142857142857vw, 10rem);
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1; /* Add this for more precise bounding box */
}

h2 {
  color: var(--primary-text-color);
  font-size: clamp(1.375rem, 1.325rem + 0.25vw, 1.625rem);
  text-transform: uppercase;
}

.p-gradient {
  display: inline-block; /* Shrink element width to just the text */
  background: var(--header-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.index-landing-text {
  text-align: center;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.625rem + 3.125vw, 5.625rem);
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1; /* Add this for more precise bounding box */
}

h3 {
  color: var(--primary-text-color);
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
  text-transform: uppercase;
  font-weight: 600;
}

p {
  color: var(--primary-text-color);
  font-size: clamp(1rem, 0.9642857142857143rem + 0.17857142857142858vw, 1.25rem);
  line-height: 1.6rem;
  margin: 1.5rem 0;
}

a {
  color: var(--primary-text-color);
  text-decoration: underline;
}

a:hover{
  color: var(--link-text-color);
  text-decoration: underline;
}

li{
  color: var(--primary-text-color);
  font-size: clamp(1rem, 0.9642857142857143rem + 0.17857142857142858vw, 1.25rem);
  line-height: 1.5rem;
  margin: 1.5rem 0;
}

.binary-code {
  justify-self: right;
  font-family: monospace;
  margin: 0;
  padding: 0 10px 0 0;
  opacity: .6;
  font-size: 0.7rem;
  font-size: clamp(0.7rem, 0.6214285714285714rem + 0.3928571428571429vw, 1.25rem);
  position: absolute;
  bottom: 0;
  left: 10px;
  text-align: right;
  text-transform: uppercase;
}

.p-center {
  text-align: center;
}

.menu-item-header-line {
  display: flex;
  align-items: baseline; /* keeps the h3 and p nicely aligned */
  gap: 0.5rem;
}

.menu-item-title {
  margin: 1rem 0 0 0;
  padding: 0;
}

.menu-item-title-paragraph {
  margin: 1rem 0 0 0;
  padding: 0;
}

.menu-item-description {
  margin: .5rem 0;
}

.menu-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(246, 245, 236, 0.0);
  margin: 8vh auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.0);
}

.menu-price {
  font-weight: bold;
  color: var(--menu-price-color);
  margin: 0 0 2rem 0;
}

.menu-category-description {
  font-style: italic;
  margin: 1rem 0 3rem 0;
}

.contact-header {
  margin: 3rem 0 1rem 0;
}

.contact-header-business-hours {
  margin: 3rem 0 2rem 0;
}

.contact-hours {
  color: var(--primary-text-color);
  font-size: clamp(1rem, 0.9642857142857143rem + 0.17857142857142858vw, 1.25rem);
  line-height: 1.6rem;
}

.hours-row {
  font-size: clamp(1rem, 0.9642857142857143rem + 0.17857142857142858vw, 1.25rem);
}

.carousel-container {
  margin: 0 1rem;
  padding: 0;
  max-width: 2560px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* Default: Mobile (1 image per view) */
.carousel-slide {
  flex: 0 0 100%;
  padding: 0;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-btn:focus {
  outline: none;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: auto;
  background-color: #222;
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-popup a {
  color: var(--link-text-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-button {
  background: var(--button-background);
  color: var(--body-background-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cookie-button:hover {
  background: var(--button-background-hover);
}

.cookie-button.secondary {
  background: #444;
  color: var(--primary-text-color);
}

.cookie-button.secondary:hover {
  background: #555;
}

.hidden {
  display: none !important;
}

/* Pricing Section Style - Mobile First */
.pricing {
  padding: 1rem 0;
  margin: 2rem 0;
  background-color: transparent;
  text-align: center;
}

.pricing h3{
  margin: 0 0 1rem 0;
}

.pricing-container {
  display: flex;
  flex-direction: column;  /* Default to column layout for small screens */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.pricing-column {
  background-color: transparent;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  /* Ensure all content inside is centered */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

img.border-radius {
  border-radius: 8px;
}

/* ===========================
   BUTTONS / LINKS / ICONS
=========================== */
a.current:link {
  color: var(--link-text-color);
  text-decoration: none;
}

.back-to-top {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  width: 12vw;
  max-width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  z-index: 997;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex; /* Hidden by default */
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.back-to-top {
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

#index-top,
#snacks,
#burgers,
#sides,
#craftbeer,
#draftbeer,
#cocktails,
#sodas {
  position: relative;
  top: -80px;
  height: 0;
}

.back-to-top a {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  -webkit-tap-highlight-color: transparent;
}

.footer-bottom img.icon-chef {
  display: inline-block; /* or inline-block */
  height: 24px;
  vertical-align: middle;
  margin: 0 0.2em;
}

.footer-bottom img.icon-heart {
  display: inline-block; /* or inline-block */
  height: 14px;
  vertical-align: middle;
  margin: 0 0.2em;
}

.footer .footer-company-name {
  color: var(--primary-text-color);
  font-family: Roboto, sans-serif;
  font-size: clamp(1.25rem, 1.2142857142857142rem + 0.17857142857142858vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
}

.footer .footer-bottom p,
.footer .footer-bottom a {
  white-space: nowrap;
  color: var(--footer-bottom-color);
  text-decoration: none;
  font-size: 0.7rem;
  font-size: clamp(0.7rem, 0.6214285714285714rem + 0.3928571428571429vw, 1.25rem);
  font-weight: 400;
  text-align: center;
}

.footer .footer-bottom a:hover {
  color: var(--link-text-color);
  text-decoration: none;
}

.footer p,
.footer a {
  color: var(--secondary-text-color);
  font-size: clamp(1rem, 0.9642857142857143rem + 0.17857142857142858vw, 1.25rem);
  line-height: 1.6rem;
  margin: 0;
  padding: 0;
}

.button-one:hover {
  background: var(--button-background-hover);
  color: var(--body-background-color);
  text-decoration: none;
}

.button-one {
  display: inline-block;
  background: var(--button-background);
  color: var(--body-background-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  padding: .75rem 1rem;
  border-radius: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.7714285714285715rem + 0.14285714285714282vw, 1rem);
  font-weight: 800;
  border: none;
  max-width: 100%;
  white-space: nowrap;
  text-align: center;
}

/* ===========================
   LAYOUT / CONTAINERS
=========================== */
 /* Popup-overlay */
#popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup-box */
.popup-content {
  background-color: #222;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.popup-content p {
  margin: 0;
  color: var(--primary-text-color);
  text-align: center;
  font-size: 1rem;
}

.popup-content button {
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background: var(--button-background);
  color: var(--body-background-color);
  border: none;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background: var(--button-background-hover);
}

.index-landing-container {
  position: relative;
  overflow: hidden;
  height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed rgba(255,255,255, .4);
  background: var(--landing-container-background);
}

.floating-controller {
  position: absolute;
  width: 80px; /* add height for consistency */
  height: auto;
  pointer-events: none;
  transition: none; /* remove transition so animation is smooth */
}

.floating-controller-smal {
  position: absolute;
  width: 60px; /* add height for consistency */
  height: auto;
  pointer-events: none;
  transition: none; /* remove transition so animation is smooth */
}

.floating-controller-smaler {
  position: absolute;
  width: 28px; /* add height for consistency */
  height: auto;
  pointer-events: none;
  transition: none; /* remove transition so animation is smooth */
}

.content-container {
  margin: 0 4vw;
}

.container {
  display: grid;
  margin: 0 0 2rem 0;
  grid-template-areas:
    "title"
    "text-one"
    "image"
    "text-two";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0;
}

.container > div {
  padding: 0;
}

.container-title h1 {
  grid-area: title;
}

.container-text-one > * {
  margin-bottom: 0;
}

.container-text-two > * {
  margin-top: 0;
}

.container-text-one {
  grid-area: text-one;
  margin: 0;
}

.container-image img {
  grid-area: image;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0 0 0; /* ← Only horizontal padding */
  flex-shrink: 0;
}

.container-text-two {
  grid-area: text-two;
  margin-top: 20px;
  margin-bottom: 0;
}

.gaming-container {
  display: grid;
  margin: 0 0 2rem 0;
  grid-template-areas:
    "title"
    "text-one"
    "image"
    "text-two";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0;
}

.gaming-container > div {
  padding: 0;
}

.gaming-container-title h1 {
  grid-area: title;
}

.gaming-container-text-one > * {
  margin-bottom: 0;
}

.gaming-container-text-two > * {
  margin-top: 0;
}

.gaming-container-text-one {
  grid-area: text-one;
  margin: 0;
}

.gaming-container-image img {
  grid-area: image;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin: 1rem 0 0 0; /* ← Only horizontal padding */
  flex-shrink: 0;
}

.gaming-container-text-two {
  grid-area: text-two;
  margin-top: 20px;
  margin-bottom: 0;
}

.footer {
    background-color: transparent;
    padding: 2vw 4vw;
  }

.footer i {
  margin-right: .5rem;
}

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

.hours {
  color: var(--secondary-text-color);
}

.hours-row {
  display: flex;
  justify-content: flex-start;
}

.hours-row span:first-child {
  width: 110px; /* fixed width for day names */
  flex-shrink: 0;
}

.hours-row span:last-child {
  flex-grow: 1;
  text-align: left; /* or 'right' or 'center' depending on desired alignment */
}

.footer-logo-inline {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin: 0;
}


.footer-section h3 {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  color: var(--secondary-text-color);
}

.footer-section a {
  color: var(--secondary-text-color);
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: none;
  color: var(--link-text-color)
}

.footer-bottom {
  margin: 2rem 0;
  padding: 1rem 6vw 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
  font-size: 0.85rem;
}

.menu-container {
  display: grid;
  grid-template-columns: 1fr; /* Default to a single column on mobile */
  gap: 0px;
  padding: 0 4vw;
}

/* Each column for the menu */
.menu-column {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.equipment-container {
  display: grid;
  grid-template-columns: 1fr; /* Default to a single column on mobile */
  gap: 0px;
  padding: 0;
  margin: 0 4vw;
}

.equipment-column {
  background-color: transparent;
  padding: 20px 0;
  border-radius: 0;
}

.equipment-header {
  margin: 2rem 0 1rem 0;
}

.equipment-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: auto;
  width: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.equipment-image {
  height: auto;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0;
}

.equipment-title {
  margin-top: 3rem;
  padding: 0;
  text-align: center;
}
.no-list-style {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  text-align: center;
}

.info-border {
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--event-background);
  padding: .5rem 1rem;
}

/* Event styling */
.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background-color: var(--event-background);
}

.event-left {
  width: 100%;
}

.event-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px
}

.event-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.event-title {
  margin: 0;
}

.event-datetime,
.event-info {
  font-size: 1rem;
  margin: 0;
  color: var(--primary-text-color);
}

.event-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.event-short-text,
.event-full-text {
  display: inline-block;
  vertical-align: top;
  font-size: clamp(1rem, 0.9642857142857143rem + 0.17857142857142858vw, 1.25rem);
  line-height: 1.6rem;
}

.event-full-text p {
  margin: 0;
}

.event-full-text p + p {
  margin-top: 0.75rem; /* or 1rem if you want more space */
}

.event-full-text {
  transition: opacity 0.3s ease;
}

.read-more-toggle {
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  font-size: clamp(1rem, 0.9642857142857143rem + 0.17857142857142858vw, 1.25rem);
  margin-left: 0;
  display: block;
  margin-top: 1rem;
  text-decoration: none;
}
.event-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.event-button {
  background: var(--button-background);
  color: var(--body-background-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', 'Arial', sans-serif;
  text-decoration: none;
  margin: 1rem 0;
  padding: .75rem 1rem;
  border-radius: 5px;
  transition: all 0.5s ease;
  cursor: pointer;
  font-size: 0.8rem;
  font-size: clamp(0.8rem, 0.7714285714285715rem + 0.14285714285714282vw, 1rem);
  font-weight: 800;
  border: none;
  align-self: flex-start;
}

.event-button + .event-button {
  margin-left: 8px;
}

.event-button:hover {
  background: var(--button-background-hover);
  color: var(--body-background-color);
  text-decoration: none;
}

iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

.google-maps {
  margin-top: 20px;
}

section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: var(--event-background);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* ===========================
   NAVIGATION
=========================== */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: var(--body-background-color);
  font-family: 'Inter', 'Arial', sans-serif;
  padding: 0px 4vw;
  width: 100%;
  position: fixed;
  height: 80px;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: top 0.6s;
}

.logo-link {
  display: flex;
  margin: 0 auto;
  flex: 0 0 auto;
  height: 100%;
  width: fit-content;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: var(--primary-text-color);
  font-size: clamp(1.25rem, 1.2142857142857142rem + 0.17857142857142858vw, 1.5rem);
}

.logo-text {
  text-transform: uppercase;
  margin-left: .6em;
  font-size: clamp(1.25rem, 1.2142857142857142rem + 0.17857142857142858vw, 1.5rem);
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  line-height: 1;
  align-items: baseline;
}

.logo-thin-italic {
  font-family: Roboto, sans-serif;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.logo-bold {
  font-family: Roboto, sans-serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1;
  margin-left: 0.2rem;
}

.logo-img {
  width: 35px;
  height: auto;
}

.logo-link:hover {
  text-decoration: none;
}

.logo-link:hover .logo-img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(84%) saturate(3266%) hue-rotate(1deg) brightness(115%) contrast(104%);
}

.nav-toggle {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

.nav-toggle:focus ~ .nav-toggle-label {
  outline: none;
}

.nav-toggle-label {
  position: relative;
  margin-left: auto;
  margin-right: 2vw;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--primary-text-color);
  height: 3px;
  width: 1.8em;
  border-radius: 4px;
  position: relative;
  transition: all 300ms ease-in-out;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

nav {
  position: absolute;
  text-align: right;
  top: 80px;
  padding-top: 20px;
  right: 0;
  background: var(--body-background-color);
  border-radius: 0;
  width: auto;
  height: calc(100vh - 80px);
  transform: translateX(100%);
  transform-origin: top;
  transition: transform 500ms ease-in-out;
  z-index: 999;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  margin: 0 2em 2em 2em;
}

nav a {
  color: var(--primary-text-color);
  text-decoration: none;
  font-size: clamp(1.25rem, 1.2142857142857142rem + 0.17857142857142858vw, 1.5rem);
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}

nav a:hover {
  color: var(--link-text-color);
  text-decoration: none;
}

nav a.current {
  color: var(--link-text-color);
}

.backdrop {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
  z-index: 998;
  pointer-events: none;
}

.nav-toggle:checked ~ nav {
  transform: translateX(0);
}

.nav-toggle:checked ~ .backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-toggle:checked ~ nav a {
  opacity: 1;
  transition: opacity 250ms ease-in-out 250ms;
}

.nav-toggle:checked ~ .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
  transform: rotate(45deg);
  bottom: 0;
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ===========================
   EASTER EGG
=========================== */

@keyframes barrelRoll {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.barrel-roll {
  animation: barrelRoll 1.5s ease-in-out;
  transform-origin: center center;
}

.secret-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a1a1a;
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  z-index: 1000;
  font-family: 'Press Start 2P', monospace;
  text-align: center;
  max-width: 300px;
}

.secret-popup button {
  margin-top: 1rem;
  background: var(--button-background);
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0.5rem;
}

.secret-popup:hover button {
  background: var(--button-background-hover);
}

.secret-popup code {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  background: #333;
  padding: 0.5rem;
  border-radius: 0.3rem;
}

.secret-popup img.popup-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  border-radius: 0;
}
/* ===========================
   MEDIA QUERIES
=========================== */

@media (min-width: 900px) {
.container {
  display: grid;
  grid-template-areas:
    "title image"
    "text-one image"
    "text-two image";
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  margin: 4rem 0;
}

.container > div {
  padding: 0;
}

.container-image {
  grid-area: image;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.container-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding: 0px 0px 0px 0px; /* ← Only horizontal padding */
  border-radius: 8px;
}

.gaming-container {
  display: grid;
  grid-template-areas:
    "title image"
    "text-one image"
    "text-two image";
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  margin: 0 0 4rem 0;
  padding: 0;
}

.gaming-container > div {
  padding: 0;
}

.gaming-container-image {
  grid-area: image;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin: 2rem 0 0 0;
}

.gaming-container-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding: 0;
  margin: 0;
  border-radius: 8px;
}
    
.footer-content {
  flex-direction: row;
  justify-content: space-between;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 350px; /* Adjust based on your layout */
}

.footer-bottom {
  margin: 2rem 0;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}

.menu-container {
  grid-template-columns: 1fr 1fr; /* Two equal-width columns */
  margin: 0;
  gap: 10vw;
}

.menu-image {
  width: 40%;
}

.menu-column {
    padding: 0px 0px;
}

.equipment-container {
  grid-template-columns: 1fr 1fr 1fr 1fr; /* four equal-width columns */
  gap: 50px;
  margin: 0 2vw;
}

.equipment-column {
  padding: 0px 0px;
}

.equipment-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 40vh;
  width: 60%;
  object-fit: cover;
  margin: 0 auto;
}

.equipment-image {
  height: auto;
  width: 100%;
  object-fit: cover;
  margin-bottom: 0;
}

.equipment-title {
  margin-top: 3rem;
  padding: 0;
  text-align: center;
}
.no-list-style {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  text-align: center;
}

.event-card {
  max-width: 1800px;
  flex-direction: row; /* <== Add this */
}

.event-left {
  flex: 0 0 auto; /* <-- change */
  width: 33%; /* <-- set width instead of flex-grow */
  padding: 1rem;
  display: flex; /* <-- new */
  flex-direction: column; /* <-- new */
}

.event-image-wrapper {
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.event-content {
  flex: 1;
  padding: 1.5rem;
}

iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
}

.carousel-container {
  margin: 0 2rem;
  padding: 0;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.carousel {
  margin: 2rem -5px 0 -5px; /* Adjusted margin to account for gaps */
}

.carousel-slide {
  flex: 0 0 50%;
  padding: 0 5px;
  box-sizing: border-box;
}

.carousel-btn {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
}

.carousel-slide img {
  object-position: center;
}

.pricing-container {
  flex-direction: row;  /* Switch to row layout on larger screens */
  gap: 40px;  /* Space between the two columns */
}

.pricing-column {
  flex: 1;  /* Each column takes up equal width */
}

}

@media screen and (min-width: 1300px) {
  
.nav-toggle-label {
  display: none;
}

.home-link {
  display: none;
}

.backdrop {
  display: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--body-background-color);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-text-color);
}

nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  background: none;
  height: auto;
  justify-content: center; /* Ensures links are centered */
  padding: 0;
}

nav ul {
  display: flex;
  gap: 3vw; /* Adjust spacing between links */
  list-style: none;
  margin: 0;
}

nav li {
  margin: 0;
}

nav a {
  font-size: 1.2rem;
  color: var(--primary-text-color);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 1;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--link-text-color);
}

.index-image {
  aspect-ratio: 18/7;
}

.index-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.back-to-top {
  display: none;
}

.floating-controller {
  position: absolute;
  width: 110px; /* add height for consistency */
  height: auto;
  pointer-events: none;
  transition: none; /* remove transition so animation is smooth */
}

.floating-controller-smal {
  position: absolute;
  width: 80px; /* add height for consistency */
  height: auto;
  pointer-events: none;
  transition: none; /* remove transition so animation is smooth */
}

.floating-controller-smaler {
  position: absolute;
  width: 30px; /* add height for consistency */
  height: auto;
  pointer-events: none;
  transition: none; /* remove transition so animation is smooth */
}

.content-container,
.menu-container {
  margin: 0 18vw;
}

.footer-content {
  margin: 0 12vw
}

.index-landing-container {
  position: relative;
  overflow: hidden;
  height: 85vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed rgba(255,255,255, .4);
  background: var(--landing-container-background);
}

.equipment-container {
  grid-template-columns: 1fr 1fr 1fr 1fr; /* four equal-width columns */
  gap: 50px;
  margin: 0 4vw;
}

.equipment-image-wrapper {
  height: 60vh;
}

.carousel-container {
  margin: 8rem;
  padding: 0; /* or margin: 0 2rem; */
  max-width: 2560px;
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  flex: 0 0 25%;
  padding: 0 7.5px;
  box-sizing: border-box;
}

.carousel {
  margin: 0 -7.5px;
}

.carousel-btn {
  width: 70px;
  height: 70px;
  font-size: 2rem;
}

}


/* Accessibility: if user prefers reduced motion, don't animate */
@media (prefers-reduced-motion: reduce) {
.fade-section,
.fade-section-mobile,
.fade-out-only-mobile {
  transition: none;
  transform: none;
  opacity: 1;
}
}