@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Chapbook';
  src: url('assets/fonts/Chapbook-Regular.woff2') format('woff2'),
       url('assets/fonts/Chapbook-Regular.woff') format('woff'),
       url('assets/fonts/Chapbook-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Oswald', Arial, sans-serif;
  background: #050505;
  color: #ffffff;
  line-height: 1.6;
}

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

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

.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border: 2px solid #D1550D; /* was: #ff8c1a */
  transform: rotate(45deg);
  display: inline-block;
}

.nav {
//  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #d0d0d0;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #D1550D; /* was: #ff8c1a */
}

.vendor-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #D1550D, #ffd700); /* was: #ff8c1a */
  color: #000000;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow:
    0 0 12px rgba(209, 85, 13, 0.6), /* was: rgba(255, 140, 26, 0.6) */
    0 0 25px rgba(209, 85, 13, 0.3); /* was: rgba(255, 140, 26, 0.3) */
  transition: all 0.25s ease;
}

.vendor-cta:hover,
.vendor-cta:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 0 18px rgba(209, 85, 13, 0.9), /* was: rgba(255, 140, 26, 0.9) */
    0 0 40px rgba(209, 85, 13, 0.5); /* was: rgba(255, 140, 26, 0.5) */
}

.experience-section {
  background: #0a0a0a;
}

.why-section {
  background: #050505;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.why-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.why-stat:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.why-stat-number {
  font-family: 'Chapbook', cursive;
  font-size: 2rem;
  color: #D1550D; /* was: #ff8c1a */
  white-space: nowrap;
}

.why-stat-label {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #cfcfcf;
  letter-spacing: 0.5px;
}

.experience-logo-wrap {
  background: #0a0a0a;
  padding: 40px;
}

.experience-logo {
  width: 100%;
  background: transparent;
}

.experience-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.experience-card p {
  flex: 1;
}

.experience-btn {
  margin-top: 8px;
  text-align: center;
}

.venue-banner {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(209, 85, 13, 0.3); /* was: rgba(255, 140, 26, 0.3) */
  position: relative;
}

.venue-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0a0a0a 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.venue-banner-text {
  z-index: 2;
}

.venue-banner-text {
  position: absolute;
  bottom: 24px;
  left: 32px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
  border-left: 3px solid #D1550D; /* was: #ff8c1a */
  border-radius: 4px;
  padding: 20px 32px;
  max-width: 680px;
}

.venue-dates {
  margin: 0 0 6px;
  font-family: 'Chapbook', cursive;
  font-size: 2.2rem;
  color: #D1550D; /* was: #ff8c1a */
  letter-spacing: 1px;
}

.venue-address {
  margin: 0;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #e8e8e8;
  letter-spacing: 0.5px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.venue-map-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.venue-map-link:hover {
  color: #D1550D; /* was: #ff8c1a */
  text-decoration-color: #D1550D; /* was: #ff8c1a */
}

.venue-location-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
  color: #D1550D; /* was: #ff8c1a */
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at top, rgba(209, 85, 13, 0.18), transparent 32%), /* was: rgba(255, 140, 26, 0.18) */
    linear-gradient(to bottom, #0a0a0a 0%, #050505 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.08;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 0px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.65),
    0 0 30px rgba(209, 85, 13, 0.12); /* was: rgba(255, 140, 26, 0.12) */
}

.hero-note {
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb266;
}

.hero-supporting-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #d8d8d8;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #D1550D; /* was: #ff8c1a */
  color: #111111;
  box-shadow: 0 10px 24px rgba(209, 85, 13, 0.22); /* was: rgba(255, 140, 26, 0.22) */
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffa94d;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: #D1550D; /* was: #ff8c1a */
  color: #ffb266;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.section {
  padding: 88px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-alt {
  background: #0a0a0a;
}

.section-heading {
  margin-bottom: 34px;
}

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

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D1550D; /* was: #ff8c1a */
}

.section h2 {
  margin: 0 0 14px;
  font-family: 'Chapbook', cursive;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(209, 85, 13, 0.15); /* was: rgba(255, 140, 26, 0.15) */
}

.lead {
  margin: 0;
  max-width: 760px;
  color: #cfcfcf;
  font-size: 1.08rem;
}

.cards {
  display: grid;
  gap: 20px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin: 0 0 12px;
  font-family: 'Chapbook', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #ffb266;
}

.card p {
  margin: 0;
  color: #c9c9c9;
}

.action-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.action-card:hover,
.action-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(209, 85, 13, 0.4); /* was: rgba(255, 140, 26, 0.4) */
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.split-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: start;
}

.split-layout-wide {
  margin-bottom: 30px;
}

.panel {
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.panel-large {
  min-height: 100%;
}

.panel-accent {
  border-color: rgba(209, 85, 13, 0.3); /* was: rgba(255, 140, 26, 0.3) */
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(209, 85, 13, 0.08); /* was: rgba(255, 140, 26, 0.08) */
}

.panel h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: 'Chapbook', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #ffb266;
}

.feature-list {
  margin: 22px 0 0;
  padding-left: 18px;
}

.feature-list li {
  margin-bottom: 12px;
  color: #d0d0d0;
}

.signup-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.signup-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  background: #050505;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font: inherit;
}

.signup-form input::placeholder {
  color: #8a8a8a;
}

.signup-form input:focus {
  outline: none;
  border-color: #D1550D; /* was: #ff8c1a */
  box-shadow: 0 0 0 3px rgba(209, 85, 13, 0.15); /* was: rgba(255, 140, 26, 0.15) */
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-family: 'Chapbook', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #ffb266;
}

.faq-item p {
  margin: 0;
  color: #c9c9c9;
}

.site-footer {
  padding: 32px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050505;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: #a8a8a8;
  font-size: 0.95rem;
}

.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;
}

@media (max-width: 1024px) {
  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .three-up,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .vendor-cta {
    padding: 10px 14px;
    font-size: 0.75rem;
    max-width: 100px !important;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 64px;
  }

  .section {
    padding: 68px 0;
  }

  .four-up {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: 2.6rem;
  }

  .card h3,
  .panel h3,
  .faq-item h3 {
    font-size: 1.8rem;
  }
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  color: white;
}

.social-link:hover {
  color: rgba(209, 85, 13, 0.9); /* was: rgba(255, 140, 26, 0.9) */
}

.social-icon {
  width: 40px;
  height: 40px;
  fill: none;
  //stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-center {
  width: 70px;
  height: 70px;
  fill: none;
  //stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
