:root {
  --gold: #d4af37;
  --black: #000;
  --white: #fff;
  --blue: #00509e;
  --text-light: #fff;
  --font: 'Roboto', sans-serif;
}

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

body.fall-expo-page {
  font-family: var(--font);
  background: var(--black);
  color: var(--text-light);
}

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

/* Hero Banner */
.fall-expo-hero {
  
  min-height: 80svh;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fall-expo-hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.fall-expo-hero-title {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.fall-expo-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.fall-expo-btn {
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.2s ease;
}
.fall-expo-btn:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: var(--white);
}

/* Main Content Wrapper */
.fall-expo-about {
    background-image: url("../images/events/2025-fall-expo-hero.jpg");
    background-attachment: fixed;
}

.fall-expo-content {
    background-image: url("../images/events/2025-fall-expo-ticket-section.jpg");
    background-attachment: fixed;
}

/* Tickets & Passes Section */
.fall-expo-tickets h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 4rem;
  text-align: center;
}

/* Two‑panel Cards Layout */
.fall-expo-cards {
  display: flex;
  flex-direction: column;
  
}

/* Each card = one row */
.fall-expo-card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  height: 100vh;
  
}

/* Left panel - sticky */
.fall-expo-card-left {
  flex: 1 1 50%;
  position: sticky;
  font-weight: bold;
  font-size: 2rem;
  top: 0;
  height: 100vh;
  padding: 2rem;
  background: black;
  color: var(--gold, gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--gold);
}

/* Scrollable Right Panel */
.fall-expo-card-right {
    display: flex;
    flex-direction: column;
    flex: 1 1 50%;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-height: 100vh;
  background: var(--white);
  color: var(--black);
  padding: 2rem;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  border-bottom: 1px solid var(--blue);
}

.fall-expo-card-right::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.fall-expo-card-right p {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  font-weight: bold;
}
.fall-expo-note {
  font-size: 0.85rem;
  color: #555;
}

.price {
  text-decoration: underline solid var(--gold);
  color: var(--blue);
  font-weight: bold;
  padding-bottom: 2.5rem;
}


/* Event Details Accordion */
.fall-expo-details h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 2rem;
  text-align: center;
}

.fall-expo-game-list {
  padding: 3rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fall-expo-game-list h2 {
  color: black;
  font-size: 1.4rem;
}
.fall-expo-game-list p {
  color: black;
  text-align: center;
}

.fall-expo-accordion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  
}


/* Each accordion item */
.fall-expo-accordion-item {
  display: flex;
  flex-direction: column;
  background: var(--gray);
  border: 1px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.fall-expo-accordion-item:hover {
  transform: translateY(-2px);
}

/* Accordion button */
.fall-expo-accordion-header {
  background: transparent;
  color: var(--blue);
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  text-align: center;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease;
}

.fall-expo-accordion-header:hover {
  background: #333;
}

/* Accordion body content */
.fall-expo-accordion-body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #111;
  padding: 0 1rem;
  transition: max-height 0.3s ease;
  align-items: center;
  justify-content: center;
  max-height: 0;
}

.fall-expo-accordion-body p {
  padding: 1rem 0;
  color: #ddd;
  line-height: 1.5;
}

/* Open state */
.fall-expo-accordion-item.active .fall-expo-accordion-body {
  max-height: 100%;
}

/* Ensure centered alignment in last row if there's space */
.fall-expo-accordion {
  justify-items: center;
}

.fall-expo-accordion ul {
  list-style-position: outside;
  padding-left: 1.5rem;
  padding-top: 1rem;
  text-align: left;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
}

.fall-expo-ticket-wrapper {
  display: flex;
  align-items: flex-start;
}

.ticket-section {
  display: flex;
  min-height: 100vh;
  border-bottom: 1px solid var(--blue);
  position: relative;
}

.ticket-label {
  flex: 0 0 45%;
  background: black;
  color: var(--gold);
  font-size: 2.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: sticky;
  top: 0;
  height: 100vh;
  text-align: center;
}

.ticket-content {
  flex: 1;
  padding: 4rem 2rem;
  background: var(--white);
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.fall-expo-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.expo-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}


/* Responsive Breakpoints */
@media (max-width: 768px) {
  .fall-expo-hero-title {
    font-size: 2rem;
  }

  .fall-expo-hero {
    padding: 90px;
  }

  .fall-expo-hero-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .fall-expo-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    text-align: center;
    width: fit-content;
    max-width: 90%;
  }

  .fall-expo-ticket-wrapper {
    flex-direction: column;
  }

  .ticket-section {
    flex-direction: column;
    min-height: auto;
  }

  .expo-btn-container {
      flex-direction: column;
    }

  .ticket-label {
    position: relative;
    top: unset;
    height: auto;
    flex: none;
    font-size: 1.5rem;
    padding: 1.25rem;
    text-align: center;
    width: 100%;
    background: black;
    color: var(--gold);
  }

  .ticket-content {
    padding: 2rem 1rem;
    font-size: 1.05rem;
    text-align: center;
    align-items: center;
  }

  .ticket-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .fall-expo-accordion ul {
    max-width: 90vw;
    padding-left: 1.2rem;
  }

  .fall-expo-accordion-header {
    font-size: 1rem;
  }

  .fall-expo-game-list {
    padding: 2rem 1rem;
  }
}
