/********** RESET **********/
* {
  box-sizing: border-box;
}

/********** GLOBAL **********/
html, body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  height: 100%; /* helps vertical centering of loader */
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/********** MAIN CONTENT VISIBILITY (hidden until loader finishes) **********/

/* Hide main site content by default */
header,
main,
.upcoming-title,
.site-footer,
#seated-55fdf2c0 {
  opacity: 1; /* always visible */
}



/********** HEADER **********/
header {
  padding: 20px 20px 10px;
  border-bottom: 1px solid #000;
}

.logo-container {
  text-align: center;
}

.logo-container img {
  max-width: 260px;
  height: auto;
  display: inline-block;
}

/********** MAIN LAYOUT **********/
main {
  padding: 20px;
}

/* Left column only used now */
.left-column {
  width: 100%;
}

/* Hide right column so layout doesn't squeeze */
.right-column {
  display: none;
}

/********** NAV **********/
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.nav-button {
  padding: 8px 14px;
  border: 1px solid #000;
  background-color: #ffffff;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  cursor: pointer;
}

.nav-button:hover {
  background-color: #000000;
  color: #ffffff;
}

/********** DROPDOWN **********/
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  min-width: 160px;
  background-color: #ffffff;
  border: 1px solid #000;
  display: none;
  z-index: 10;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #000;
  background: #fff;
  color: #000;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: #000;
  color: #fff;
}

/********** MAIN IMAGES **********/

.front-images-wrapper {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

/* Responsive square images */
.front-image {
  width: 32%;                 /* 3 across without scroll */
  aspect-ratio: 1 / 1;        /* perfect square */
  object-fit: cover;
  border: 1px solid #000;
  display: block;
}

/********** FEATURED PRODUCTS **********/

.featured-section {
  padding: 20px;
  border-top: 1px solid #000;
  margin-top: 30px;
}

.featured-section h2 {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.featured-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

/* Same size as your front-image squares */
.featured-slot {
  text-decoration: none;
  color: inherit;
  position: relative;
  width: 32%;          /* match .front-image width */
  aspect-ratio: 1 / 1; /* square */
  border: 1px solid #000;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

/* Image in each slot */
.featured-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills the box (including TWIAY) */
  display: block;
}

/* Text overlay – only on hover with grey layer */
.featured-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: #ffffff;
  background: rgba(0,0,0,0.45); /* grey overlay */
  text-shadow: 0 0 4px #000,
               0 0 8px #000;
  pointer-events: none;
  opacity: 0;                   /* hidden by default */
  transition: opacity 0.25s ease;
}

/* Show overlay + text on hover */
.featured-slot:hover .featured-label {
  opacity: 1;
}

/********** UPCOMING SHOWS TITLE **********/
.upcoming-title {
  font-size: 20px;           /* bigger */
  font-weight: bold;         /* bold */
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 30px 0 15px;
  text-align: center;
}

/********** FOOTER **********/

.site-footer {
  margin-top: 60px;
  padding: 30px 20px;
  border-top: 1px solid #000;
  text-align: center;
}

.footer-location {
  margin: 0 0 15px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

/* Icons container */
.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* Matching size icons */
.footer-icons img {
  width: 40px;
  height: 40px;
  display: block;
  transition: transform 0.2s ease;
}

.footer-icons a:hover img {
  transform: scale(1.1);
}

/********** LOADING SCREEN **********/

#loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
  z-index: 9999;
}

/* Loader image – note: actual GIF file name is handled in HTML (GLASSHEADLOADER FAST.gif) */
#loader img {
  max-width: 360px;
  width: 79%;
  height: auto;
}

/********** MOBILE **********/
@media (max-width: 900px) {
  .front-images-wrapper {
    flex-direction: column;
  }

  .front-image {
    width: 100%;
  }

  .featured-wrapper {
    flex-direction: column;
  }

  .featured-slot {
    width: 100%;
  }
}
header,
main,
.upcoming-title,
.featured-section,
.site-footer,
#seated-55fdf2c0 {
  opacity: 0;
}

body.loaded header,
body.loaded main,
body.loaded .upcoming-title,
body.loaded .featured-section,
body.loaded .site-footer,
body.loaded #seated-55fdf2c0 {
  opacity: 1;
}

/* CONTACT PAGE STYLES */

.contact-section {
  margin-top: 30px;
  max-width: 600px;
}

.contact-section h1 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 13px;
  background: #ffffff;
}

.contact-form button {
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px solid #000;
  background: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #000;
  color: #fff;
}

/* Footer with socials */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid #000;
  padding-top: 12px;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links img {
  width: 20px;
  height: 20px;
  display: block;
}

