/* ==============================
   UNIVERSAL VARIABLES
============================== */
:root {
  --purple: #3f006d;
  --gold: #b88a2f;
  --dark: #1f1f1f;
  --light: #ffffff;
  --line-speed: 280ms;

   --headline-font: "DIN Condensed", "Franklin Gothic Condensed",
                   "Arial Narrow", "Helvetica Neue Condensed",
                   "Roboto Condensed", Arial, sans-serif;

  --body-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ==============================
   UNIVERSAL RESET / BASE
============================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--light);
}

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

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

/* ==============================
   UNIVERSAL HEADER
============================== */
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 14px;

  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-rows: auto auto;
  column-gap: 26px;
  row-gap: 23px;
  align-items: start;
}

.brand-link {
  grid-column: 1;
  grid-row: 1;
  display: inline-block;
}

.site-logo {
  width: 300px;
  height: auto;
}

.header-right {
  display: contents;
}

.social-row {
  grid-column: 2;
  grid-row: 1;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  margin-top: 36px;   /* try 6–12px */
}

.social-row img {
  height: 32px;
  width: auto;
  opacity: 0.88;
  transition: opacity 250ms ease, transform 250ms ease;
}

.social-row a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.main-nav {
  grid-column: 1;
  grid-row: 2;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 56px;
}

.main-nav a {
  position: relative;
  padding-bottom: 5px;
  font-size: 23px;
  color: var(--purple);
  line-height: 1;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  height: 5px;
  width: 100%;
  background: var(--gold);

  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;

  transition:
    transform var(--line-speed) ease,
    opacity var(--line-speed) ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.search-form {
  align-self: start;
  margin-top: -12px;
    grid-column: 2;
  grid-row: 2;
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 8px;
}

.search-form input {
  width: 230px;
  height: 38px;
  border: 1.5px solid var(--purple);
  border-radius: 7px;
  padding: 0 12px;
  font-size: 16px;
  color: var(--purple);
  outline: none;
}

.search-form input::placeholder {
  color: var(--purple);
  opacity: 0.85;
}

.search-form button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 7px;
  background: var(--purple);
  padding: 8px;
  cursor: pointer;
}

.search-form button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ==============================
   UNIVERSAL PAGE PLACEHOLDER
============================== */
.placeholder-section {
  width: min(1120px, calc(100% - 40px));
  margin: 60px auto;
}

/* ==============================
   RESPONSIVE HEADER
============================== */
@media (max-width: 900px) {
  .header-inner {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-items: center;
    row-gap: 24px;
  }

  .brand-link,
  .social-row,
  .main-nav,
  .search-form {
    grid-column: 1;
    grid-row: auto;
  }

  .site-logo {
    width: 310px;
  }

  .social-row {
    justify-content: center;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px 36px;
  }

  .main-nav a {
    font-size: 21px;
  }

  .search-form {
    justify-self: center;
  }

  .search-form input {
    width: min(280px, 70vw);
  }
}

/* ==============================
   HERO SECTION
============================== */

.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 1px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6px;
  align-items: stretch;
}

/* SHARED HEIGHT */
.hero-left,
.hero-center,
.hero-right {
  height: 520px;
}

/* ==============================
   LEFT (SLIDER)
============================== */

.hero-left {
  position: relative;
  overflow: hidden;
  border-radius: 14px 0 0 14px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* base (both) */
.overlay-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease;
}

/* active state */
.overlay-slide.active {
  opacity: 0.6;
}

/* STORY (baseline reference) */
.overlay-slide.story {
  transform: scale(1);
}

/* LEGACY (adjust this one) */
.overlay-slide.legacy {
  transform: scale(1.2) translate(3px, 23px);  /* increase this */
  transform-origin: left bottom;
}

/* ==============================
   OVERLAY (ROTATING TEXT IMAGE)
============================== */

.hero-overlay {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 250px;
  height: 174px;
  z-index: 5;
  pointer-events: none;
}

.overlay-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.overlay-slide.active {
  opacity: 0.6;
}

/* ==============================
   CENTER PANEL
============================== */

.hero-heading-image {
  display: block;
  height: 25px;
  margin: 0 3px 18px;
  max-width: 260px;
}

.hero-center {
  background: var(--purple);
  color: white;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* EVENT BLOCK */

.event-title {
    text-align: center;
    margin-top: 12px;   /* try 10–18px */
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* BULLETS */

.events-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.events-list li {
  font-size: 14px;
  line-height: 1.5;
}

.events-list strong {
  font-weight: 300;
}

/* BUTTON */

.event-button {
  display: inline-block;   /* key change */
  margin: 12px auto 0;
  padding: 8px 16px;
  background: white;
  color: var(--purple);
  font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
}

.event-footer {
  text-align: center;
}

/* NOTE */

.event-note {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.85;
  text-align: center;
}

/* ==============================
   SCROLL WINDOW
============================== */

.events-window {
  position: relative;
  flex: 1;
  overflow: hidden;
}
/* ===. BLUR GRADIENT FADES FOR TOP AND BOTTOM OF SCROLLING EVENTS===
.events-window::before,
.events-window::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
  pointer-events: none;
}

.events-window::before {
  top: 0;
  background: linear-gradient(to bottom, var(--purple), transparent);
}

.events-window::after {
  bottom: 0;
  background: linear-gradient(to top, var(--purple), transparent);
}
  == */

.events-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.events-list li {
  font-size: 15px;
}

/* ==============================
   RIGHT STACKED IMAGES
============================== */

.hero-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

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

.hero-right img:first-child {
  border-radius: 0 14px 0 0;
}

.hero-right img:last-child {
  border-radius: 0 0 14px 0;
}

/* ==============================
   ANIMATION
============================== */

@keyframes scrollEvents {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}
/* SCROLL ANIMATION */
@keyframes scrollEvents {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ==============================
   FEATURE INFO SECTION
============================== */

.feature-info {
  width: min(1120px, calc(100% - 40px));
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 0 40px 44px;
}

.feature-left h2,
.feature-right h2 {
  font-family: var(--headline-font);
  font-weight: 400;          /* not bold */
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  color: #333;
}

.feature-left p,
.feature-right p {
  margin: 0 0 14px;
  color: #555;
  font-size: 17px;
  line-height: 1.28;
}

.feature-left p{

  line-height: 1.68;
}

.feature-right h2 {
  font-size: 38px;
  max-width: 420px;
}

.feature-right p {
  font-size: 15px;
  line-height: 1.55;
  max-width: 430px;
}

.feature-links {
  margin-top: 26px;
  max-width: 430px;
}

.feature-links a {
  display: block;
  padding: 13px 0;
  border-top: 1px solid #d7d7d7;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.feature-links a:last-child {
  border-bottom: 1px solid #d7d7d7;
}

.feature-links a:hover {
  color: var(--purple);
}

@media (max-width: 800px) {
  .feature-info {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 0 36px;
  }
}

/* ==============================
   FOOTER
============================== */

.site-footer {
  margin-top: 60px;
  padding: 40px 0 24px;
  background: #f7f7f7;
  border-top: 1px solid #e2e2e2;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* LEFT */

.footer-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.footer-address {
  font-size: 14px;
  color: #666;
}

/* RIGHT LINKS */

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: #333;
}

.footer-links a:hover {
  color: var(--purple);
}

/* BOTTOM */

.footer-bottom {
  width: min(1120px, calc(100% - 40px));
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid #e2e2e2;

  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

.footer-legal {
  margin-top: 6px;
}



/* ==============================
   PAYMENT MODAL
============================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 36px 32px;
  border-radius: 12px;
  width: min(640px, 92%);   /* bigger */
  position: relative;
  text-align: center;
}

/* CLOSE BUTTON */
.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* TEXT */

.modal-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.modal-subtext {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* OPTIONS */

.modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

.modal-option-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.modal-option-label {
  font-size: 12px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 4px;
}

.modal-note {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

/* BUTTON */

.modal-button {
  display: inline-block;
  padding: 10px 18px;
  background: var(--purple);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-top: 6px;
}

/* QR */

.modal-qr {
  width: 200px;
  margin: 10px auto 0;
}




/* ==============================
   ABOUT PAGE
============================== */

.about-page {
  width: min(1120px, calc(100% - 40px));
  margin: 42px auto 0;
}

.about-hero {
  max-width: 850px;
  margin-bottom: 44px;
}

.about-hero h1,
.about-block h2 {
  font-family: var(--headline-font);
  font-weight: 400;
  color: #333;
  letter-spacing: 0.3px;
}

.about-hero h1 {
  font-size: 46px;
  line-height: 1.05;
  margin: 0 0 18px;
}

.about-lead {
  font-size: 20px;
  line-height: 1.65;
  color: #4d4d4d;
  margin: 0;
}

.about-content {
  display: grid;
  gap: 42px;
}

.about-block {
  max-width: 940px;
}

.about-block h2 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.about-block p {
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.75;
  color: #4d4d4d;
  margin: 0 0 16px;
}

.about-list {
  margin: 0;
  padding-left: 20px;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.65;
}

.about-list.two-column {
  columns: 2;
  column-gap: 48px;
}

.about-list li {
  break-inside: avoid;
  margin-bottom: 6px;
}

@media (max-width: 800px) {
  .about-hero h1 {
    font-size: 36px;
  }

  .about-lead {
    font-size: 18px;
  }

  .about-list.two-column {
    columns: 1;
  }
}


/* ==============================
   COMING SOON PAGES
============================== */

.coming-soon-page {
  width: min(1120px, calc(100% - 40px));
  margin: 56px auto 120px;
}

.coming-soon-section {
  max-width: 760px;
}

.coming-soon-section h1 {
  font-family: var(--headline-font);
  font-weight: 400;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0.3px;
  color: #333;
  margin: 0 0 18px;
}

.coming-soon-text {
  font-family: var(--body-font);
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* MOBILE */
@media (max-width: 800px) {
  .coming-soon-section h1 {
    font-size: 36px;
  }

  .coming-soon-text {
    font-size: 18px;
  }
}


/* ==============================
   MOBILE HERO FIX
============================== */
@media (max-width: 800px) {
  .hero {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-left,
  .hero-center,
  .hero-right {
    height: auto;
  }

  .hero-left {
    height: 420px;
    border-radius: 14px;
  }

  .hero-center {
    border-radius: 14px;
    padding: 28px 24px;
  }

  .hero-heading-image {
    width: 100%;
    height: auto;
    max-width: 340px;
    margin: 0 auto 28px;
  }

  .event-title {
    text-align: center;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 26px;
  }

  .events-list {
    gap: 20px;
    padding-left: 24px;
  }

  .events-list li {
    font-size: 20px;
    line-height: 1.55;
  }

  .event-button {
    font-size: 18px;
    padding: 12px 24px;
  }

  .event-note {
    font-size: 17px;
    margin-top: 18px;
  }

  .hero-right {
    display: none;
  }

  .hero-overlay {
    width: 220px;
    height: 150px;
  }
}

/* ==============================
   MOBILE NAV
============================== */

.mobile-menu-toggle {
  display: none;
}

/* MOBILE */
@media (max-width: 800px) {

   .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 32px);
  row-gap: 0;
}

/* larger logo */
.site-logo {
  width: 260px;
}

/* remove old layout behavior */
.header-right {
  display: block;
  width: auto;
}

/* hide desktop stuff */
.social-row,
.search-form {
  display: none;
}

/* hamburger */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: 0;
  font-size: 42px;
  color: var(--purple);
  cursor: pointer;
  margin: 0;
  padding: 0;
  line-height: 1;
}

/* collapsed nav */
.main-nav {
  display: none;
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  background: white;
  padding: 24px 0;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  border-top: 1px solid #ececec;
  z-index: 100;
}

/* open state */
.main-nav.mobile-open {
  display: flex;
}

.main-nav a {
  font-size: 30px;
}
}

