:root {
  --primary-color: #ffb400;
  --primary-dark: #d19400;
  --vibrant-orange: #ff6b35;
  --dark-orange: #e05a2c;
  --off-white: #fff9f5;
  --text-dark: #333333;
  --golden-yellow: #ffd700;
  --font-primary:
    "NF-PAGKAKI-Regular", Raleway, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-secondary:
    Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* === FONT SIZE & GLOBAL STYLES === */
:root {
  /* ... your existing variables ... */

  /* Add these new responsive font size variables */
  --font-size-base: clamp(16px, 1.6vw + 0.1rem, 18px);
  /* For body text */
  --font-size-h1: clamp(2.5rem, 5vw + 1rem, 5.6rem);
  /* For main headings */
  --font-size-h2: clamp(2rem, 4vw + 1rem, 4.4rem);
  /* For section headings */
  --font-size-h3: clamp(1.5rem, 3vw + 0.8rem, 2.5rem);
  /* For sub-headings */
  --font-size-h4: clamp(1.1rem, 2vw + 0.5rem, 1.25rem);
  /* For smaller headings */
}

/* Apply the variables to your elements */
body {
  font-family: var(--font-secondary);
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: var(--font-size-base);
  /* Apply base font size here */
}

h1,
.h1 {
  font-size: var(--font-size-h1);
}

h2,
.h2 {
  font-size: var(--font-size-h2);
}

h3,
.h3 {
  font-size: var(--font-size-h3);
}

h4,
.h4 {
  font-size: var(--font-size-h4);
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("../fonts/raleway/raleway-v28-latin-400.woff2") format("woff2"),
    url("../fonts/raleway/Raleway-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src:
    url("../fonts/raleway/raleway-v28-latin-400italic.woff2") format("woff2"),
    url("../fonts/raleway/Raleway-Italic.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    url("../fonts/raleway/raleway-v28-latin-600.woff2") format("woff2"),
    url("../fonts/raleway/Raleway-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src:
    url("../fonts/raleway/raleway-v28-latin-700.woff2") format("woff2"),
    url("../fonts/raleway/Raleway-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Pagkaki";
  src: url("/fonts/nf-pagkaki-regular-webfont-full/webfonts/nf-pagkaki-regular.eot");
  src:
    url("/fonts/nf-pagkaki-regular-webfont-full/webfonts/nf-pagkaki-regular.eot?#iefix")
      format("embedded-opentype"),
    url("/fonts/nf-pagkaki-regular-webfont-full/webfonts/nf-pagkaki-regular.woff2")
      format("woff2"),
    url("/fonts/nf-pagkaki-regular-webfont-full/webfonts/nf-pagkaki-regular.woff")
      format("woff"),
    url("/fonts/nf-pagkaki-regular-webfont-full/webfonts/nf-pagkaki-regular.ttf")
      format("truetype"),
    url("/fonts/nf-pagkaki-regular-webfont-full/webfonts/nf-pagkaki-regular.svg#nf_pakkakiregular")
      format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --deep-burgundy: #6b212f;
  --vibrant-orange: #e85923;
  --golden-yellow: #fbd95a;
  --royal-blue: #3450a1;
  --off-white: #fefefe;
  --text-dark: #333;

  --font-primary: "Pagkaki", serif;
  --font-secondary: "Raleway", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior: none;
  /* Prevent pull-to-refresh/bounce on mobile */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--golden-yellow);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

h2 {
  font-size: clamp(3.2rem, 6vw, 4.5rem);
  color: var(--golden-yellow);
  margin-bottom: 2.5rem;
  text-align: center;
}

h3 {
  font-size: clamp(3.2rem, 6vw, 4.2rem);
  color: var(--vibrant-orange);
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 1.25rem;
  color: var(--royal-blue);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--vibrant-orange);
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: clamp(3.75rem, 10vw, 7.5rem) 1.25rem;
  position: relative;
  overflow: hidden;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: inherit;
  filter: blur(15px);
  z-index: 0;
  background-attachment: initial;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-date {
  font-size: clamp(1.2rem, 3.3vw, 2rem);
  color: var(--off-white);
  font-weight: 600;
  margin-top: 1.25rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--vibrant-orange);
  color: var(--off-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;

  #schedule .cta-button-paper {
    display: block;
    margin: 2rem auto 0;
    max-width: 200px;
  }

  .cut-paper-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.8;
  }

  z-index: 0;
  opacity: 0.8;
}

.shape-1 {
  background: var(--royal-blue);
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
  width: 30%;
  height: 400px;
  top: -50px;
  left: -5%;
}

.shape-2 {
  background: var(--vibrant-orange);
  clip-path: polygon(0 20%, 100% 0, 80% 100%, 20% 95%);
  width: 40%;
  height: 500px;
  bottom: -80px;
  right: -10%;
}

.expect-section {
  background-color: var(--deep-burgundy);
  color: var(--off-white);
  position: relative;
}

.expect-section h2 {
  color: var(--golden-yellow);
}

.offerings-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.offering-item {
  flex-basis: 300px;
  padding: 2.8rem;
  margin: 1.25rem;
  text-align: center;
  color: var(--off-white);
  border-radius: 10px;
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease;
  will-change: transform;
}

.offering-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.offering-item:nth-child(1) {
  background-color: var(--vibrant-orange);
  clip-path: polygon(0% 0%, 100% 10%, 95% 100%, 5% 90%);
}

.offering-item:nth-child(2) {
  background-color: var(--royal-blue);
  clip-path: polygon(5% 10%, 95% 0%, 100% 90%, 0% 100%);
  transform: translateY(20px);
}

.offering-item:nth-child(3) {
  background-color: var(--golden-yellow);
  clip-path: polygon(0% 10%, 100% 0%, 91% 99%, 7% 95%);
}

.offering-item:nth-child(3) h3,
.offering-item:nth-child(3) p {
  color: var(--text-dark);
}

.offering-item svg {
  width: 60px;
  height: 60px;
  fill: var(--golden-yellow);
}

.offering-item:nth-child(3) svg {
  fill: var(--deep-burgundy);
}

.artists-section {
  max-width: 1200px;
  margin: 0 auto;
}

.artists-section h2 {
  color: var(--deep-burgundy);
}

.artists-section h3 {
  text-align: center;
  color: var(--royal-blue);
  font-family: var(--font-primary);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.75rem;
  padding: 1rem;
}

.artist-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.artist-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.artist-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  background-color: #eee;
}

.artist-card h4 {
  padding: 1.9rem;
  font-family: var(--font-primary);
  font-size: 2.5rem;
}

.artist-bio-placeholder {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.5rem;
}

.schedule-section {
  background-color: #f4f4f4;
}

.schedule-section h2 {
  color: var(--deep-burgundy);
}

.schedule-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.day-schedule {
  margin-bottom: 3rem;
}

.day-schedule:last-child {
  margin-bottom: 0;
}

.day-schedule h3 {
  text-align: center;
  font-family: var(--font-primary);
  font-size: clamp(3.2rem, 6vw, 4.2rem);
  color: var(--deep-burgundy);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.day-schedule h3:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: var(--golden-yellow);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.schedule-flyers {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flyer-container {
  text-align: center;
  flex: 1;
  min-width: 280px;
}

.flyer-wrapper {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.flyer-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.schedule-flyer {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .schedule-flyers {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    align-items: stretch;
  }

  .flyer-container {
    flex: 1;
    max-width: 45%;
  }

  .flyer-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .schedule-flyer {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1600px) {
  .flyer-container {
    flex: 0 1 45%;
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .flyer-container h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .schedule-highlight {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .flyer-wrapper {
    padding: 0.75rem;
  }
}

.schedule-day li .time-block {
  font-weight: 700;
  margin-right: 1.5rem;
  width: 120px;
  text-align: right;
  color: var(--text-dark);
}

.schedule-day li .event-title {
  font-weight: 600;
  text-align: left;
  flex: 1;
}

.event-meta {
  border-left-color: #ccc;
}

.event-workshop {
  border-left-color: var(--golden-yellow);
}

.event-party {
  border-left-color: var(--vibrant-orange);
}

.event-break {
  border-left-color: #aaa;
}

.event-saturnight {
  border-left-color: var(--royal-blue);
}

.event-liveband {
  border-left-color: #e83e8c;
}

.event-breakfast {
  border-left-color: #17a2b8;
}

@media (max-width: 768px) {
  .schedule-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }

  .schedule-day ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .schedule-day {
    margin-bottom: 2rem;
  }

  .schedule-day > ul > li {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    padding: 0.75rem 1rem 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    background: var(--off-white);
    border-left: 6px solid;
    gap: 0.5rem;
    min-height: 60px;
  }

  .schedule-day > ul > li .time-block {
    color: var(--deep-burgundy);
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .schedule-day > ul > li .event-title {
    color: var(--text-dark);
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 1rem;
    line-height: 1.4;
    padding-left: 0.5rem;
    text-align: left;
  }

  .event-meta {
    border-left-color: #9e9e9e !important;
    background-color: #f8f9fa;
  }

  .event-workshop {
    border-left-color: var(--golden-yellow) !important;
    background-color: #fff9e6;
  }

  .event-party {
    border-left-color: var(--vibrant-orange) !important;
    background-color: #fff0e6;
  }

  .event-break,
  .event-breakfast {
    border-left-color: #aaa !important;
    background-color: #f8f9fa;
  }

  .event-saturnight {
    border-left-color: var(--royal-blue) !important;
    background-color: #e6f0ff;
  }

  .event-liveband {
    border-left-color: #e83e8c !important;
    background-color: #ffe6f2;
  }
}

.festival-pricing-section h2 {
  color: var(--deep-burgundy);
}

.festival-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.festival-pass-card {
  background: var(--off-white);

  padding: 3rem 2.5rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
  clip-path: polygon(0% 4%, 100% 0%, 97% 95%, 3% 100%);
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.1));
}

.festival-pass-card:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.15));
}

.festival-pass-card h3 {
  font-family: var(--font-primary);
  font-size: 3.1rem;
}

.festival-pass-card .price {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--deep-burgundy);
  margin: 0.6rem 0;
  justify-content: center;
}

.festival-pass-card .price-member {
  margin-top: -0.6rem;
  margin-bottom: 1.9rem;
  font-weight: 600;
}

.festival-pass-card ul {
  margin-bottom: 2.5rem;
}

.festival-pass-card li {
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.festival-pass-card.unavailable {
  background-color: #f8f8f8;
  opacity: 0.6;
  border-color: #ddd;
}

.festival-pass-card.unavailable .price {
  color: #999;
}

.festival-pass-card .pass-status {
  font-weight: 600;
  color: #d9534f;
  margin-bottom: 1rem;
}

.festival-pass-card li.pass-includes,
.festival-pass-card li.pass-excludes {
  font-weight: 600;
}

.festival-pass-card li.pass-includes::before {
  content: "✓ ";
  color: #28a745;
  font-weight: bold;
  margin-right: 5px;
}

.festival-pass-card li.pass-excludes::before {
  content: "✗ ";
  color: #dc3545;
  font-weight: bold;
  margin-right: 5px;
}

.festival-pricing-section .festival-pass-card {
  color: var(--text-dark);
}

@media (min-width: 992px) {
  .festival-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
}

.map-container {
  position: relative;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 3px solid var(--golden-yellow);
}

.map-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.map-overlay-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.6rem 1.2rem;
  background-color: var(--vibrant-orange);
  color: white !important;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  z-index: 2;
  border: none;
  clip-path: polygon(9% 2%, 94% 3%, 100% 69%, 92% 100%, 4% 98%, 0 46%, 2% 23%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 160px;
}

@media (max-width: 992px) {
  .map-overlay-btn {
    padding: 1rem 1.3rem !important;
    font-size: 1.1rem !important;
    min-width: 90px !important;
    bottom: 15px !important;
    white-space: nowrap;
    line-height: 1;
    height: auto;
    letter-spacing: 0.1px;
  }

  .map-arrow {
    font-size: 10px !important;
    margin-left: 2px;
  }

  @media (max-width: 480px) {
    .map-overlay-btn {
      padding: 0.4rem 0.8rem !important;
      font-size: 1rem !important;
      min-width: 80px !important;
      bottom: 12px !important;
      line-height: 1.1;
      letter-spacing: 0;
    }

    .map-cta {
      font-size: 0.9rem !important;
    }

    .map-arrow {
      font-size: 9px !important;
      margin-left: 1px;
    }
  }
}

.map-overlay-btn:hover {
  background-color: var(--dark-orange);
  transform: translate(-50%, -2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-arrow {
  font-weight: bold;
  font-size: 18px;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-overlay-btn:hover .map-arrow {
  transform: translateX(3px);
}

.location-section {
  background-color: var(--deep-burgundy);
  color: var(--off-white);
  padding: 4rem 1rem;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 500px;
  margin: 0 auto;
  align-items: center;
}

.address {
  font-size: 1.2rem;
}

.address p {
  margin-bottom: 0.5rem;
}

.location-section.fallback-bg {
  background-color: var(--off-white);
}

.location-container.fallback {
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 1rem;
}

.map.fallback img {
  border: 3px solid #fbd95a;
  border-radius: 10px;
  max-height: 400px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .schedule-container,
  .location-container {
    grid-template-columns: 1fr;
  }

  .schedule-container {
    padding: 0 1.5rem;
  }

  .location-container {
    text-align: center;
  }

  .map {
    margin-top: 2rem;
  }

  .map img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--golden-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

.info-button {
  display: inline-block;
  background-color: #777;
  color: white !important;
  padding: 1.2rem 3rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-align: center;
  clip-path: polygon(9% 2%, 94% 3%, 100% 69%, 92% 100%, 4% 98%, 0 46%, 2% 23%);
}

.at-the-door-info {
  font-weight: 600;
  color: var(--deep-burgundy);
  margin-top: 1.5rem;
}

.door-sale-note {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  color: #555;
}

@media (max-width: 768px) {
  .cta-button-paper {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-content .cta-button-paper {
    font-size: 1.3rem;
    padding: 1rem 2.5rem;
  }
}

.opportunities-section .cta-button-paper,
.artists-section .cta-button-paper {
  padding: 0.75rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.offering-item h3 {
  font-family: var(--font-primary);
  color: var(--golden-yellow);
  font-size: clamp(3.2rem, 6vw, 4.2rem);
}

.offerings-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.offering-item {
  flex-basis: 300px;
}

@media (max-width: 992px) {
  .schedule-container {
    padding: 0 1rem;
  }
}

.opportunities-section {
  background-color: var(--royal-blue);
  color: var(--off-white);
  padding: clamp(3rem, 10vw, 6rem) 1rem;
  position: relative;
  overflow: hidden;
}

.opportunities-section h2 {
  color: var(--golden-yellow);
  text-align: center;
  margin-bottom: 2rem;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
  padding: 1rem;
}

.opportunity-card {
  background: var(--off-white);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.opportunity-card h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--vibrant-orange);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.opportunity-card p {
  margin-bottom: 2rem;
}

.opportunity-card .cta-button-paper {
  margin-top: auto;
}

.cta-button-paper.disabled {
  background-color: #bdbdbd;
  cursor: not-allowed;
  pointer-events: none;
  color: #757575 !important;
}

.cta-button-paper.disabled:hover {
  background-color: #bdbdbd;
  transform: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .door-sale-note {
    margin-top: 1rem;
  }
}

.festival-pricing-section .cta-button-paper {
  font-size: 1.3rem;
}

.gtco-nav {
  background: transparent !important;
  position: absolute;
  width: 100%;
  z-index: 1001;
}

@media (max-width: 768px) {
  .gtco-nav .menu-1,
  .gtco-nav .gtco-nav-toggle {
    display: none !important;
  }

  .gtco-nav .row {
    margin: 0;
    background: transparent !important;
  }

  #gtco-logo {
    padding: 15px;
  }

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

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.hero-logo img {
  max-width: 60%;
  height: auto;
}

@media (min-width: 769px) {
  .hero-logo img {
    max-width: 40%;
  }
}

/* --- Hero Section CTA Buttons --- */
.hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  /* Allows buttons to stack on small screens */
}

.hero-cta-group .cta-button-paper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--vibrant-orange);
  /* Primary button color */
}

.hero-cta-group .cta-button-paper.secondary {
  background-color: var(--royal-blue);
  /* Secondary button color */
}

.hero-cta-group .cta-button-paper:hover {
  transform: translateY(-3px);
}

.hero-cta-group .cta-button-paper.secondary:hover {
  background-color: #2a4182;
  /* Darker blue on hover */
}

.hero-cta-group .cta-button-paper i {
  font-size: 1.2rem;
}

/* === CINEMATIC TEASER STYLES === */

.festival-teaser-page {
  background-color: #0a0a0a;
  /* Deep dark background for cinematic feel */
  color: #fff;
  overflow: hidden;
  /* Prevent scrollbars during the intro */
  height: 100dvh;
  /* Use dynamic viewport height for mobile browsers */
  width: 100%;
  position: fixed;
  /* Force no scroll */
  top: 0;
  left: 0;
  z-index: 1000;
  /* Ensure it's on top of everything */
}

/* Navigation Override for Teaser - Removed as logo is now in overlay */

/* === KINETIC BACKGROUND === */
.kinetic-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2vh;
  z-index: 1;
  will-change: filter, transform;
  /* Hint for browser optimization */
  pointer-events: none;
  /* DISABLE ALL INTERACTION */

  /* Initial State: Blurred */
  filter: blur(20px) brightness(0.6);
  transition: filter 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Smooth "Focus Pull" easing */
}

.kinetic-background.sharp-view {
  filter: blur(0px) brightness(1) grayscale(0%);
  /* Phase 2: Appreciation - Full clarity, bright colors */
}

.kinetic-background.noir-view {
  filter: blur(0px) brightness(0.4) grayscale(40%);
  /* Phase 3: Action - Cinematic Noir: Sharp but dark and slightly desaturated to let text pop */
}

/* .kinetic-background.blur-out removed in favor of backdrop-filter on overlay */

.marquee-row {
  display: flex;
  width: 200%;
  /* Double width for seamless looping */
  gap: 2vw;
  will-change: transform;
  /* CSS Animations removed in favor of JS for smooth deceleration */
  pointer-events: none;
  /* Double safety */
}

.marquee-content {
  display: flex;
  gap: 2vw;
  width: 50%;
  justify-content: space-around;
}

/* === NEO-BRUTALIST SHARDS === */
.shard {
  position: relative;
  width: 25vw;
  height: 30vh;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    z-index 0s;
  filter: grayscale(20%);
  /* Hover effects removed as requested */
  pointer-events: none;
  /* Ensure no interaction */
}

.shard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Irregular Polygons */
.shard-1 {
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.shard-2 {
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
}

.shard-3 {
  clip-path: polygon(5% 5%, 95% 0, 100% 95%, 0 100%);
}

/* === TEASER OVERLAY === */
.teaser-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  /* Allow clicks through initially */
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  /* Match the previous blur transition duration */

  /* The Blur Effect - Applied to the overlay to avoid repainting the moving background */
  /* backdrop-filter: blur(15px) brightness(0.4); */
  /* Removed backdrop filter to rely on direct BG blur for better performance */
  background-color: rgba(0, 0, 0, 0.3);
  /* Fallback / Additional darkening */
}

.teaser-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.teaser-logo {
  margin-bottom: 6rem;
  /* Increased spacing to prevent overlap */
  padding-top: 10vh;
  /* Position in top third on desktop */
}

.teaser-logo img {
  height: 150px;
  width: auto;
  display: inline-block;
}

/* Mobile Adjustments for Logo */
@media (max-width: 768px) {
  .teaser-logo {
    position: absolute;
    top: 60px;
    /* Increased top padding (3x) */
    left: 40px;
    /* Increased left padding (2x) */
    padding-top: 0;
    margin-bottom: 0;
    z-index: 60;
    /* Ensure it's above everything */
  }

  .teaser-logo img {
    height: 110px;
    /* Larger logo on mobile (increased from 80px) */
  }

  /* Mobile Button Adjustment */
  .btn-irregular-large {
    padding: 1.1rem 3rem;
    /* Reduced height/width (~4/5 size) */
    font-size: 1.2rem;
  }
}

.teaser-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

/* Typography */
.teaser-content h1 {
  font-family: var(--font-primary);
  font-size: clamp(4rem, 13vw, 10rem);
  /* Slightly reduced max size for balance */
  color: var(--primary-color);
  /* Switched to primary gold (darker than golden-yellow) */
  margin: 0;
  line-height: 0.9;
  text-shadow: 4px 4px 0px var(--deep-burgundy);
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  /* Removed margin-top: auto to rely on logo margin */
}

.teaser-content h2 {
  font-family: var(--font-secondary);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--off-white);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 0.5rem;
  /* Reduced vertical padding */
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease 0.2s,
    transform 0.8s ease 0.2s;
}

/* Reveal Animations */
.teaser-overlay.visible h1,
.teaser-overlay.visible h2 {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Button */
.btn-irregular-large {
  display: inline-flex;
  /* Use flex for perfect centering */
  align-items: center;
  justify-content: center;
  background-color: var(--vibrant-orange);
  color: #fff;
  padding: 1.5rem 4rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.btn-irregular-large i {
  margin-right: 15px;
  /* Increased horizontal spacing */
  position: relative;
  top: 1px;
  /* Moved back up slightly as requested */
}

.btn-irregular-large:hover {
  transform: scale(1.05) rotate(-2deg);
  background-color: #ff8c00;
  color: #fff;
}

.teaser-archive {
  margin-top: 1.5rem;
  /* Decreased vertical distance */
  font-size: 1rem;
  opacity: 0.7;
}

.teaser-archive a {
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.teaser-archive a:hover {
  border-bottom-color: var(--off-white);
}

/* Helper Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.teaser-overlay.visible .fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.4s;
}

.delay-2 {
  transition-delay: 0.6s;
}

/* === KINETIC COLLAGE LOADER === */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--deep-burgundy); /* Deep Burgundy for logo contrast */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.collage-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The Stack */
.collage-stack {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.collage-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Irregular Polygons */
.shape-orange {
  background-color: var(--golden-yellow);
  clip-path: polygon(10% 0, 100% 10%, 90% 100%, 0% 90%);
  transform: rotate(-5deg);
  animation: shuffle-1 2s infinite;
}

.shape-blue {
  background-color: var(--royal-blue);
  clip-path: polygon(0 10%, 90% 0, 100% 90%, 10% 100%);
  transform: rotate(5deg);
  animation: shuffle-2 2.3s infinite;
}

.shape-burgundy {
  background-color: var(--deep-burgundy);
  clip-path: polygon(5% 5%, 95% 0, 100% 95%, 0 100%);
  transform: rotate(-2deg);
  animation: shuffle-3 1.8s infinite;
}

.shape-yellow {
  background-color: var(--vibrant-orange);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  transform: rotate(3deg);
  animation: shuffle-4 2.1s infinite;
}

/* The Logo */
.collage-logo {
  position: relative;
  z-index: 10;
  width: 150px;
  height: auto;
  animation: pulse-logo 2s infinite ease-in-out;
}

.collage-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.35));
}

/* Loading Text */
.loading-text {
  position: absolute;
  bottom: -60px;
  color: var(--off-white);
  font-family: monospace;
  font-size: 1.2rem;
  letter-spacing: 3px;
  z-index: 10;
  opacity: 0.7;
  animation: blink 1s infinite;
}

/* Animations */
@keyframes shuffle-1 {
  0%, 100% {
    transform: rotate(-5deg) translate(0, 0);
  }
  50% {
    transform: rotate(-8deg) translate(-5px, 5px);
  }
}

@keyframes shuffle-2 {
  0%, 100% {
    transform: rotate(5deg) translate(0, 0);
  }
  50% {
    transform: rotate(8deg) translate(5px, -5px);
  }
}

@keyframes shuffle-3 {
  0%, 100% {
    transform: rotate(-2deg) translate(0, 0);
  }
  50% {
    transform: rotate(0deg) translate(-3px, -3px);
  }
}

@keyframes shuffle-4 {
  0%, 100% {
    transform: rotate(3deg) translate(0, 0);
  }
  50% {
    transform: rotate(6deg) translate(3px, 3px);
  }
}

@keyframes pulse-logo {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.3;
  }
}

/* === EXPLOSION EXIT ANIMATION === */
/* Stop all shuffle animations before exploding */
.loading-overlay.exploding .collage-shape {
  animation: none !important;
}

.loading-overlay.exploding .shape-orange {
  transform: translate(-150vw, -150vh) rotate(-180deg) scale(3);
  opacity: 0;
  transition: all 1s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.loading-overlay.exploding .shape-blue {
  transform: translate(150vw, -150vh) rotate(180deg) scale(3);
  opacity: 0;
  transition: all 1s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0.08s;
}

.loading-overlay.exploding .shape-burgundy {
  transform: translate(-150vw, 150vh) rotate(-90deg) scale(3);
  opacity: 0;
  transition: all 1s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0.04s;
}

.loading-overlay.exploding .shape-yellow {
  transform: translate(150vw, 150vh) rotate(90deg) scale(3);
  opacity: 0;
  transition: all 1s cubic-bezier(0.6, 0.04, 0.98, 0.335) 0.12s;
}

.loading-overlay.exploding .collage-logo {
  animation: none;
  transform: scale(1.5);
  opacity: 0;
  transition: all 0.6s ease-out 0.2s;
}

.loading-overlay.exploding .loading-text {
  opacity: 0;
  transition: opacity 0.2s ease;
}


/* === CURTAIN REVEAL (Theatrical Split) === */
/* Initial state - curtain closed at center */
.loading-overlay {
  clip-path: polygon(
    0 0,
    50% 0,
    50% 100%,
    0 100%,
    0 0,
    50% 0,
    50% 100%,
    100% 100%,
    100% 0
  );
}

/* Animate to fully open when class added */
.loading-overlay.curtain-reveal {
  clip-path: polygon(
    0 0,
    0 0,
    0 100%,
    0 100%,
    0 0,
    100% 0,
    100% 100%,
    100% 100%,
    100% 0
  );
  transition: clip-path 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}


