@charset "utf-8";

/*------------------------------------
  Theme Colors (CSS Variables)
------------------------------------*/
:root {
  --bg-light: #f4f6f6;
  --bg-black: #000000;
  --bg-dark: #241c34;
  --highlight: #F39C12;
  --gray: #CCCCCC;
  --text-dark: #000000;
  --text-gray: #333333;
  --blue-accent: #0099FF;
  --white-bright: #ffffff;
  --gold-accent: #fda83c;
}

/*------------------------------------
  Global Reset & Base Styles
------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: system-ui, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-light);
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

img, object, embed, video {
  max-width: 100%;
  height: auto;
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--gray);
}

/*------------------------------------
  Typography
------------------------------------*/
h1 { font-size: 1.65em; font-weight: 700; }
h2 { font-size: 1.5em; font-weight: 600; }
h3 { font-size: 1.17em; font-weight: 500; }
h4 { font-size: 1em; font-weight: 400; }
h5 { font-size: 0.83em; font-weight: 300; }
h6 { font-size: 0.67em; font-weight: 300; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em 0;
  color: var(--text-dark);
}

.text-small { font-size: 12px; color: var(--text-dark); }
.text-blue-12-bold { font-size: 12px; color: var(--blue-accent); }
.text-blue-medium-bold { font-size: 14px; color: var(--blue-accent); }
.text-white-extra-small { font-size: 9px; color: var(--white-bright); }
.text-white-small-bold { font-size: 12px; font-weight: bold; color: var(--white-bright); }
.text-white-bold, .text-blue-bold, .text-gold-bold, .text-medium-bold { font-size: 16px; font-weight: bold; }
.text-white-bold { color: var(--white-bright); }
.text-blue-bold { color: var(--blue-accent); }
.text-gold-bold { color: var(--gold-accent); }
.text-blue-small-bold { font-size: 9px; font-weight: 500; color: var(--blue-accent); }
.text-light { font-size: 12px; font-weight: 100; color: var(--text-gray); }
.text-large-bold { font-size: 24px; font-weight: bold; color: var(--text-gray); }
.text-light-gray { font-size: 12px; font-weight: bold; color: #999999; }
.text-center { text-align: center; }

/*------------------------------------
  Layout Containers
------------------------------------*/
.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.gridContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  text-align: center;
  gap: 1rem;
}

.section { padding: 20px; width: 100%; background: var(--bg-light); }
.section-black { background: var(--bg-black); }
.section-dark { background: var(--bg-dark); }
.section-highlight { background: var(--highlight); }
.section-gray { background: var(--gray); }

/*------------------------------------
  Flex Grid System
------------------------------------*/
.flex-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
    margin: 0 auto;
  align-items: center;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: .25rem;
}

.flex-item {
  display: flex;
  flex-direction: column; /* optional, depending on content */
  padding: .5rem;
  margin: 0; /* prevent horizontal centering from interfering */
  border: 1px solid #ddd;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow: visible;
  height: auto;
  width: 100%; /* ✅ Ensures full width inside the column class */
  max-width: 100%; /* optional */
}

.flex-row.fullscreen {
  justify-content: flex-start;
  gap: 0;
}

.ticket-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  padding: .5rem;
  margin: 0;
  background: var(--gray-accent);
  border: 1px solid #ddd;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow-x: auto;
  height: auto;
}
.theater-card {
  flex: 1 1 22%;
  max-width: 22%;
  padding: 1rem;
  background: #fff;
  border: 2px solid #FFCC66;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .theater-card {
    flex: 1 1 48%;
    max-width: 48%;
  }
}

@media (max-width: 480px) {
  .theater-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.theaters-info {
	padding: 1rem; 
	background: #fff; 
	border: 3px solid #FFCC66; 
	width: 96%; 
	margin: 0 auto; 
}

 @media (min-width: 600px) and (max-width: 767px) and (orientation: landscape) {
  .theater-card {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
 
/* RESPONSIVE MOBILE VIEW */
@media (max-width: 768px) {
  .theater-card {
    flex: 1 1 100%;
  } 
}

.flex-item:empty, .flex-item.col-1-5:empty {
  display: none;
  border: none;
  background-color: transparent;
}

/*------------------------------------
  Column Utilities (1–10 Columns)
------------------------------------*/
.col-1-1  { flex: 0 0 100%; max-width: 100%; }
.col-1-2  { flex: 0 0 48.0%; max-width: 48.0%; }
.col-1-3  { flex: 0 0 33.33%; max-width: 33.33%; }
.col-1-4  { flex: 0 0 25.0%; max-width: 25.0%; }
.col-1-5  { flex: 0 0 18.45%; max-width: 18.45%; }
.col-1-6  { flex: 0 0 16.66%; max-width: 16.66%; }
.col-1-7  { flex: 0 0 14.0%; max-width: 14.0%; }
.col-1-8  { flex: 0 0 12.5%; max-width: 12.5%; }
.col-1-9  { flex: 0 0 11.11%; max-width: 11.11%; }
.col-1-10 { flex: 0 0 10%; max-width: 10%; }

/* Desktop (Medium screen, 992px to 1290px) - 7 columns */
@media (max-width: 1290px) {
  .col-1-7 {
    flex: 0 0 14.0%;
    max-width: 14.0%;
	padding: 0.25rem;
    margin: 0;
  }
}

/* Tablet (Medium screen, 992px and lower) - 3 columns */
@media (max-width: 992px) {
  .col-1-5 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

/* Small Tablet / Large Mobile (768px and lower) - 2 columns */
@media (max-width: 768px) {
  .col-1-5 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 736px) and (orientation: landscape) {
  .flex-item,
  .theater-card {
    padding: 0.75rem;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .ticket-box {
    flex: 1 1 48%;
    max-width: 48%;
    padding: 0.75rem;
    margin: 0;
  }
}

/* Mobile Phones (480px and lower) - 1 column */
@media (max-width: 480px) {
  .col-1-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*------------------------------------
  Responsive Media Queries
------------------------------------*/
@media (max-width: 1290px) {
  .gridContainer { padding: 0.25rem; }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .theater-card {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

@media (max-width: 768px) {
  /* Flex grid adjustments */
  .col-1-5 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .col-1-7 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  [class^="col-1-"], [class*=" col-1-"] {
    flex: 0 0 48%;
    max-width: 48%;
  }

  /* Flex item and ticket-box adjustments */
  .flex-item {
    width: 100%;
  }

  .ticket-box {
    padding: .5rem;
   }

  /* Theater card adjustments */
  .theater-card {
    flex: 1 1 48%;
    max-width: 48%;
    margin-bottom: 1rem;
  }
}

/* Mobile (≤480px) - 1 column */
@media (max-width: 480px) {
  [class^="col-1-"], [class*=" col-1-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .theater-card, .flex-item, .ticket-box  {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
   .col-1-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) and (orientation: landscape) {
  .nav-links { top: 40px; }
}


/*------------------------------------
  Utility Classes
------------------------------------*/
.box {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: .5rem;
  background-color: #ffffff;
  border: 0;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow: visible;
  height: auto;
}
.center-screen {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* allow children to fill */
  justify-content: flex-start;
  width: 100%;
}
.center-content { display: flex; justify-content: center; align-items: center; }
.left-content { display: flex; justify-content: flex-start; align-items: flex-start; }
.justify-left { text-align: left; }
.justify-right { text-align: right; }
.justify-center { text-align: center; }

.border { border: 4px groove var(--gray); }
.shadow-md { box-shadow: 0 8px 5px #999; }
.shadow-container { filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.5)); display: flex; width: 100%; height: 100%; }

.full-width {
  width: 100%;
}

.AJXCSSMenuHLeHUZA {
  width: 100%;
}

/* Margin and Padding Utilities */
.mt-1 { margin-top: 0.5rem; } 
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.5rem; } 
.mb-2 { margin-bottom: 1rem; }
.pt-1 { padding-top: 0.5rem; } 
.pt-2 { padding-top: 1rem; }
.pb-1 { padding-bottom: 0.5rem; } .pb-2 { padding-bottom: 1rem; }

/*------------------------------------
  Visibility Helpers
------------------------------------*/
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/*------------------------------------
  Dark Mode Support
------------------------------------*/
@media (prefers-color-scheme: dark) {
  body { background-color: var(--bg-dark); color: #ffffff; }
  .section { background-color: #2f2f2f; }
  .text-light-gray { color: #999999; }
}

/*------------------------------------
  Widget Overrides
------------------------------------*/
.tner-container, .tner-list-container {
  display: block !important;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
  background: #fff !important;
  border: 1px solid #ccc !important;
  padding: 1rem !important;
  box-sizing: border-box;
  margin: 0 auto;
  min-height: 200px !important;
}

.tns3-widget {
  min-height: 225px;
  background-color: #0077FF;
  padding: 1rem;
  color: #ffffff;
}

.tns3-search-container {
  width: 100%;
  max-width: 100%;
  min-height: 30px;
  display: block;
}

.shadow-img, .buy-button, .box-shadow-img, img.show-image, img.buy-button-img, img.shadow-img {
  box-shadow: 0 6px 4px #000;
  border: 0;
  width: 100%;
  margin-top: 8px;
}

.button-image, .buy-button-img {
  width: auto; /* or a fixed width like 80px if needed */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Optional: center the image */
  box-shadow: 0 6px 4px #000;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  background: #f8f8f8;
  position: absolute;
  gap: 1rem;
  top: 60px;
  right: 10px;
  list-style: none;
  border: 1px solid #ccc;
  padding: 1rem;
  z-index: 1000;
}

.menu-icon { display: block; }
.nav-links.show { display: flex; }

#scrollToTopButton {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  font-size: 18px;
  background-color: #fda83c;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  z-index: 9999;
}
#scrollToTopButton:hover {
  background-color: #ffcc66;
  color: black;
}

.full-bleed {
  width: 100%;
  margin: 0 auto;
}

/*--Clarify 4 Column Flex Box rendering*/
@media (max-width: 768px) {
  .col-1-4 { flex: 0 0 48%; max-width: 48%; }
}
@media (max-width: 480px) {
  .col-1-4 { flex: 0 0 100%; max-width: 100%; }
}


@media (max-width: 480px) {
  .ticket-box,
  .box {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
<!--End High priority override for smaller screens (Remove if needed)-->  

@media (min-width: 600px) and (max-width: 767px) and (orientation: landscape) {
  .ticket-box {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    padding: 0.75rem;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .flex-item.auto-width {
    flex: 1 1 calc(100% / 4 - 0.5rem); /* 4 per row on tablets */
    max-width: calc(100% / 4 - 0.5rem);
  }
}

@media (max-width: 768px) {
  .flex-item.auto-width {
    flex: 1 1 calc(100% / 2 - 0.5rem); /* 2 per row on phones */
    max-width: calc(100% / 2 - 0.5rem);
  }
}

@media (max-width: 480px) {
  .flex-item.auto-width {
    flex: 1 1 100%; /* 1 per row on very small screens */
    max-width: 100%;
  }
}


/*------------------------------------
  Theme Colors (CSS Variables)
------------------------------------*/
:root {
  --bg-light: #f4f6f6;
  --bg-black: #000000;
  --bg-dark: #241c34;
  --highlight: #F39C12;
  --gray: #CCCCCC;
  --gray-accent: #CCCCCC;
  --text-dark: #000000;
  --text-gray: #333333;
  --blue-accent: #0099FF;
  --white-bright: #ffffff;
  --gold-accent: #fda83c;
}

/*------------------------------------
  Global Reset & Base Styles
------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: system-ui, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--bg-light);
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

img, object, embed, video {
  max-width: 100%;
  height: auto;
}

hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--gray);
}

/*------------------------------------
  Typography
------------------------------------*/
h1 { font-size: 1.65em; font-weight: 700; }
h2 { font-size: 1.5em; font-weight: 600; }
h3 { font-size: 1.17em; font-weight: 500; }
h4 { font-size: 1em; font-weight: 400; }
h5 { font-size: 0.83em; font-weight: 300; }
h6 { font-size: 0.67em; font-weight: 300; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em 0;
  color: var(--text-dark);
}

.text-small { font-size: 12px; color: var(--text-dark); }
.text-blue-12-bold { font-size: 12px; color: var(--blue-accent); }
.text-blue-medium-bold { font-size: 14px; color: var(--blue-accent); }
.text-white-extra-small { font-size: 9px; color: var(--white-bright); }
.text-white-small-bold { font-size: 12px; font-weight: bold; color: var(--white-bright); }
.text-white-bold, .text-blue-bold, .text-gold-bold, .text-medium-bold { font-size: 16px; font-weight: bold; }
.text-white-bold { color: var(--white-bright); }
.text-blue-bold { color: var(--blue-accent); }
.text-gold-bold { color: var(--gold-accent); }
.text-blue-small-bold { font-size: 9px; font-weight: 500; color: var(--blue-accent); }
.text-light { font-size: 12px; font-weight: 100; color: var(--text-gray); }
.text-large-bold { font-size: 24px; font-weight: bold; color: var(--text-gray); }
.text-light-gray { font-size: 12px; font-weight: bold; color: #999999; }
.text-center { text-align: center; }

/*------------------------------------
  Layout Containers
------------------------------------*/
.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.gridContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  text-align: center;
  gap: 1rem;
}

.section { padding: 20px; width: 100%; background: var(--bg-light); }
.section-black { background: var(--bg-black); }
.section-dark { background: var(--bg-dark); }
.section-highlight { background: var(--highlight); }
.section-gray { background: var(--gray); }

/*------------------------------------
  Flex Grid System
------------------------------------*/
.flex-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
    margin: 0 auto;
  align-items: center;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: .25rem;
}

.flex-item {
  display: flex;
  flex-direction: column; /* optional, depending on content */
  padding: .5rem;
  margin: 0; /* prevent horizontal centering from interfering */
  background: var(--gray-accent);
  border: 1px solid #ddd;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow: visible;
  height: auto;
  width: 100%; /* ✅ Ensures full width inside the column class */
  max-width: 100%; /* optional */
}

.flex-row.fullscreen {
  justify-content: flex-start;
  gap: 0;
}

.ticket-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  padding: .5rem;
  margin: 0;
  background: var(--gray-accent);
  border: 1px solid #ddd;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow-x: auto;
  height: auto;
}
.theater-card {
  flex: 1 1 22%;
  max-width: 22%;
  padding: 1rem;
  background: #fff;
  border: 2px solid #FFCC66;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .theater-card {
    flex: 1 1 48%;
    max-width: 48%;
  }
}

@media (max-width: 480px) {
  .theater-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.theaters-info {
	padding: 1rem; 
	background: #fff; 
	border: 3px solid #FFCC66; 
	width: 96%; 
	margin: 0 auto; 
}

 @media (min-width: 600px) and (max-width: 767px) and (orientation: landscape) {
  .theater-card {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
 
/* RESPONSIVE MOBILE VIEW */
@media (max-width: 768px) {
  .theater-card {
    flex: 1 1 100%;
  } 
}

.flex-item:empty, .flex-item.col-1-5:empty {
  display: none;
  border: none;
  background-color: transparent;
}

/*------------------------------------
  Column Utilities (1–10 Columns)
------------------------------------*/
.col-1-1  { flex: 0 0 100%; max-width: 100%; }
.col-1-2  { flex: 0 0 48.0%; max-width: 48.0%; }
.col-1-3  { flex: 0 0 33.33%; max-width: 33.33%; }
.col-1-4  { flex: 0 0 25.0%; max-width: 25.0%; }
.col-1-5  { flex: 0 0 18.45%; max-width: 18.45%; }
.col-1-6  { flex: 0 0 16.66%; max-width: 16.66%; }
.col-1-7  { flex: 0 0 14.0%; max-width: 14.0%; }
.col-1-8  { flex: 0 0 12.5%; max-width: 12.5%; }
.col-1-9  { flex: 0 0 11.11%; max-width: 11.11%; }
.col-1-10 { flex: 0 0 10%; max-width: 10%; }

/* Desktop (Medium screen, 992px to 1290px) - 7 columns */
@media (max-width: 1290px) {
  .col-1-7 {
    flex: 0 0 14.0%;
    max-width: 14.0%;
	padding: 0.25rem;
    margin: 0;
  }
}

/* Tablet (Medium screen, 992px and lower) - 3 columns */
@media (max-width: 992px) {
  .col-1-5 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

/* Small Tablet / Large Mobile (768px and lower) - 2 columns */
@media (max-width: 768px) {
  .col-1-5 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 736px) and (orientation: landscape) {
  .flex-item,
  .theater-card {
    padding: 0.75rem;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .ticket-box {
    flex: 1 1 48%;
    max-width: 48%;
    padding: 0.75rem;
    margin: 0;
  }
}

/* Mobile Phones (480px and lower) - 1 column */
@media (max-width: 480px) {
  .col-1-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*------------------------------------
  Responsive Media Queries
------------------------------------*/
@media (max-width: 1290px) {
  .gridContainer { padding: 0.25rem; }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .theater-card {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

@media (max-width: 768px) {
  /* Flex grid adjustments */
  .col-1-5 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .col-1-7 {
    flex: 0 0 48%;
    max-width: 48%;
  }

  [class^="col-1-"], [class*=" col-1-"] {
    flex: 0 0 48%;
    max-width: 48%;
  }

  /* Flex item and ticket-box adjustments */
  .flex-item {
    width: 100%;
  }

  .ticket-box {
    padding: .5rem;
   }

  /* Theater card adjustments */
  .theater-card {
    flex: 1 1 48%;
    max-width: 48%;
    margin-bottom: 1rem;
  }
}

/* Mobile (≤480px) - 1 column */
@media (max-width: 480px) {
  [class^="col-1-"], [class*=" col-1-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .theater-card, .flex-item, .ticket-box  {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
   .col-1-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) and (orientation: landscape) {
  .nav-links { top: 40px; }
}


/*------------------------------------
  Utility Classes
------------------------------------*/
.box {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: .5rem;
  background-color: #ffffff;
  border: 0;
  box-shadow: 0 8px 5px #999;
  box-sizing: border-box;
  overflow: visible;
  height: auto;
}
.center-screen {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* allow children to fill */
  justify-content: flex-start;
  width: 100%;
}
.center-content { display: flex; justify-content: center; align-items: center; }
.left-content { display: flex; justify-content: flex-start; align-items: flex-start; }
.justify-left { text-align: left; }
.justify-right { text-align: right; }
.justify-center { text-align: center; }

.border { border: 4px groove var(--gray); }
.shadow-md { box-shadow: 0 8px 5px #999; }
.shadow-container { filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.5)); display: flex; width: 100%; height: 100%; }

.full-width {
  width: 100%;
}

.AJXCSSMenuHLeHUZA {
  width: 100%;
}

/* Margin and Padding Utilities */
.mt-1 { margin-top: 0.5rem; } 
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.5rem; } 
.mb-2 { margin-bottom: 1rem; }
.pt-1 { padding-top: 0.5rem; } 
.pt-2 { padding-top: 1rem; }
.pb-1 { padding-bottom: 0.5rem; } .pb-2 { padding-bottom: 1rem; }

/*------------------------------------
  Visibility Helpers
------------------------------------*/
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/*------------------------------------
  Dark Mode Support
------------------------------------*/
@media (prefers-color-scheme: dark) {
  body { background-color: var(--bg-dark); color: #ffffff; }
  .section { background-color: #2f2f2f; }
  .text-light-gray { color: #999999; }
}

/*------------------------------------
  Widget Overrides
------------------------------------*/
.tner-container, .tner-list-container {
  display: block !important;
  width: 100%;
  visibility: visible !important;
  opacity: 1 !important;
  background: #fff !important;
  border: 1px solid #ccc !important;
  padding: 1rem !important;
  box-sizing: border-box;
  margin: 0 auto;
  min-height: 200px !important;
}

.tns3-widget {
  min-height: 225px;
  background-color: #0077FF;
  padding: 1rem;
  color: #ffffff;
}

.tns3-search-container {
  width: 100%;
  max-width: 100%;
  min-height: 30px;
  display: block;
}

.shadow-img, .buy-button, .box-shadow-img, img.show-image, img.buy-button-img, img.shadow-img {
  box-shadow: 0 6px 4px #000;
  border: 0;
  width: 100%;
  margin-top: 8px;
}

.button-image, .buy-button-img {
  width: auto; /* or a fixed width like 80px if needed */
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Optional: center the image */
  box-shadow: 0 6px 4px #000;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  background: #f8f8f8;
  position: absolute;
  gap: 1rem;
  top: 60px;
  right: 10px;
  list-style: none;
  border: 1px solid #ccc;
  padding: 1rem;
  z-index: 1000;
}

.menu-icon { display: block; }
.nav-links.show { display: flex; }

#scrollToTopButton {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  font-size: 18px;
  background-color: #fda83c;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  z-index: 9999;
}
#scrollToTopButton:hover {
  background-color: #ffcc66;
  color: black;
}

.full-bleed {
  width: 100%;
  margin: 0 auto;
}

/*--Clarify 4 Column Flex Box rendering*/
@media (max-width: 768px) {
  .col-1-4 { flex: 0 0 48%; max-width: 48%; }
}
@media (max-width: 480px) {
  .col-1-4 { flex: 0 0 100%; max-width: 100%; }
}


@media (max-width: 480px) {
  .ticket-box,
  .box {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}
<!--End High priority override for smaller screens (Remove if needed)-->  

@media (min-width: 600px) and (max-width: 767px) and (orientation: landscape) {
  .ticket-box {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    padding: 0.75rem;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .flex-item.auto-width {
    flex: 1 1 calc(100% / 4 - 0.5rem); /* 4 per row on tablets */
    max-width: calc(100% / 4 - 0.5rem);
  }
}

/* Social Media Grid Base */
.social-grid {
  display: flex;
  justify-content: center;
  width: 100%;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 1024px;
}

.social-item {
  flex: 0 0 30%;
  max-width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Social Icon Style */
.social-icon {
  width: 60px;
  height: 60px;
  display: block;
}

/* --- Media Queries --- */

/* iPhone Landscape (max 736px width) */
@media (max-width: 736px) {
  .social-item {
    flex: 0 0 27%;
    max-width: 27%;
  }
}

/* Mobile Portrait (max 480px width) */
@media (max-width: 480px) {
  .social-item {
    flex: 0 0 28%;
    max-width: 28%;
  }
}

/* Laptops (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .social-item {
    flex: 0 0 32%;
    max-width: 32%;
  }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
  .social-item {
    flex: 0 0 30%;
    max-width: 30%;
  }
}