/* ==========================================================================
   Font Imports
   ========================================================================== */

@font-face {
  font-family: "Hold Money";
  src: url("fonts/HoldMoney-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Espiritu Condensed";
  src: url("fonts/Espiritu-Condensed.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Antique Olive";
  src: url("fonts/AntiqueOlive.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

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

html {
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  font-family: "Espiritu Condensed", sans-serif;
  background: #232020 url("img/noise.png") repeat;
  color: #B2AB95;
  text-align: center;
  min-height: 100vh;
  font-size: 30px;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h2 {
  font-family: "Hold Money", serif;
  font-size: 50px;
  line-height: 1;
}

.highlight {
  color: #f8f2e0;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */

.header {
  margin: 50px 0 100px;
}

.main-content {
  padding: 0 30px;
}

.logo-wrapper {
  text-align: center;
  margin: 0 auto;
  max-width: 450px;
}

.intro {
  max-width: 1200px;
  margin: 150px auto;
  font-size: 36px;
  line-height: 1.2;
}
.intro-trybe {
  max-width: 1200px;
  margin: 30px auto;
  font-size: 36px;
  line-height: 1.2;
}

.trybe-container {
  max-width: 1200px;
  margin: 50px auto;
  text-align: left;
}

.trybe-two-column {
  display: grid;
  grid-template-columns: 2fr 4fr;
  gap: 50px;
  align-items: start;
}

.trybe-left-column h2 {
  margin-bottom: 1rem;
  margin: 60px auto 0;
  font-family: "Espiritu Condensed";
  color: #f8f2e0;
  margin-top: 0;
}

.trybe-right-column p {
  margin-bottom: 1.5rem;
  font-size: 34px;
}


.trybe-title {
    margin-bottom: 100px;
}

@media (max-width: 768px) {
.intro-trybe {
  font-size: 26px!important;
  text-align:left;
}
.trybe-left-column h2 {
  font-size: 32px;
}
  .trybe-two-column {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .trybe-right-column p {
    font-size: 24px;
  }
}


.small-text {
  font-size: 24px;
}
.promo-pic {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}

.callout {
  max-width: 800px;
  margin: 150px auto 30px;
  font-size: 50px;
  line-height: 1.2;
  font-family: "Hold Money", serif;
}

.admat {
  max-width: 800px;
  margin: 150px auto 30px;
}

.coming-soon {
  max-width: 800px;
  margin: 150px auto 30px;
}

.coming-soon p {
  line-height: 1.2;
}

footer {
  margin-bottom: 50px;
}
.tickets-info {
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 1.2;
}
/* ==========================================================================
   Buttons
   ========================================================================== */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: #f8f2e0;
  color: #232020;
  padding: 20px 30px;
  font-family: "Antique Olive", sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: none;
  margin: 30px 0;
}

.cta-button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url("img/arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #f8f2e0;
  color: #232020;
}

.cta-button:hover::after {
  transform: translateX(4px);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button:focus-visible {
  outline: 2px solid #f8f2e0;
  outline-offset: 2px;
}

.promo-cta {
  margin: 30px 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.copyright-text {
  font-family: "Antique Olive", sans-serif;
  font-size: 14px;
  animation: blur 2s ease 0s normal;
}

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
  will-change: opacity;
}

.fade-in.visible {
  opacity: 1;
  will-change: auto;
}

/* ==========================================================================
   Media Queries - Mobile Optimizations
   ========================================================================== */

@media (max-width: 768px) {
  body {
    font-size: 24px;
  }
.logo-wrapper {
  max-width: 300px;
}
  h2 {
    font-size: 36px;
  }

  .header {
    margin: 50px 0 50px;
    padding: 0 20px;
  }

  .main-content {
    padding: 0 20px;
  }

  .intro {
    margin: 100px auto;
    font-size: 28px;
  }

  .callout {
    margin: 100px auto;
    font-size: 42px;
  }

  .admat {
    margin: 100px auto 30px 0;
  }

  .coming-soon {
    margin: 100px auto;
  }

  .coming-soon p {
    font-size: 24px;
  }
  .tickets-info {
    font-size: 28px;
    line-height: 1.2;
  }
}
/* ==========================================================================
   GALLERY GRID
   ========================================================================== */

  .photo-gallery {
    max-width: 1200px;
    margin: 150px auto;
}

  .gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  @media (max-width: 900px) {
    .gallery { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .gallery { grid-template-columns: 1fr; }
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .gallery-item::before {
    content: "";
    display: block;
    padding-top: 75%; 
  }

  .gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease, filter .2s ease;
    -webkit-user-drag: none;
    border-radius: 10px;
  }

  .gallery-item:focus,
  .gallery-item:hover { outline: none; }
  .gallery-item:hover img,
  .gallery-item:focus img { transform: scale(1.05); filter: contrast(1.03) saturate(1.03); }

  /* Lightbox / modal */
  .lightbox {
    position: fixed;
    inset: 0;
    display: none; /* shown by JS */
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    padding: 24px;
  }

  .lightbox[aria-hidden="false"] { display: flex; }

  .lightbox-inner {
    max-width: calc(100% - 48px);
    max-height: calc(100% - 48px);
    width: 100%;
    height: auto;
    position: relative;
    display: grid;
    place-items: center;
    gap: 8px;
  }

  .lightbox-figure {
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.5);
    background: #111;
  }

  .lightbox-caption {
    margin-top: 10px;
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
    opacity: 0.95;
  }

  /* Controls */
  .lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(20,20,20,0.55);
    color: white;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(4px);
  }
  .lb-btn:focus { outline: 2px solid #fff; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }

  .lb-close {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: rgba(20,20,20,0.55);
    color: white;
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  /* small-screen UI adjustments */
  @media (max-width: 640px) {
    .lb-btn { display: none; } /* hide prev/next on tiny screens; use swipe or tap the sides */
    .lightbox-caption { font-size: 0.9rem; padding: 0 8px; }
  }