/* WERK – Fire Horse Edition */
/* Global Styles */

:root {
  --primary-color: #D4A574;
  --accent-color: #E85D04;
  --text-dark: #1A1A1A;
  --text-light: #666666;
  --bg-light: #FEFCF8;
  --bg-dark: #F5F3EF;
  --border-color: #E5E3DF;
  --font-mono: 'Courier New', Courier, monospace;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-title {
  font-size: 64px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* Seat Counter */
.seat-counter {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.seat-counter.sold-out {
  color: #CC6655;
}

.seat-counter.sold-out::before {
  content: "⚠ ";
}

/* CTA Button */
.cta-button,
.cta-button-large {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: var(--font-mono);
}

.cta-button:hover,
.cta-button-large:hover {
  background-color: #C49564;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:disabled,
.cta-button-large:disabled {
  background-color: #ccc;
  color: #999;
  cursor: not-allowed;
  transform: none;
}

.cta-button-large {
  padding: 20px 48px;
  font-size: 18px;
  display: block;
  margin: 32px auto;
}

/* Video Section */
.video-section {
  margin: 60px 0 40px;
}

.video-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Why Section */
.why-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.why-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.why-card {
  background-color: var(--bg-dark);
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* How Section */
.how-section {
  padding: 60px 0;
}

.how-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 24px;
  padding: 24px;
  background-color: var(--bg-dark);
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  min-width: 60px;
  line-height: 1;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-light);
  font-size: 15px;
}

/* For Section */
.for-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.for-section h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.for-section > p {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--text-light);
}

.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.for-list li {
  font-size: 16px;
  padding-left: 28px;
  position: relative;
}

.for-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Reserve Section */
.reserve-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  border-radius: 8px;
  margin: 60px 0;
  text-align: center;
}

.reserve-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.payment-container {
  max-width: 400px;
  margin: 0 auto;
}

.payment-cta {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.payment-note {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 16px;
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.faq-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 32px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.faq-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

/* Context Section */
.context-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.context-section h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.context-section p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.footer a {
  color: var(--text-light);
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  letter-spacing: 0.5px;
}

strong {
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-description {
    font-size: 16px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .step {
    gap: 16px;
  }

  .step-number {
    min-width: 50px;
  }

  #videoFrame {
    height: 300px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .cta-button,
  .cta-button-large {
    width: 100%;
    padding: 16px 24px;
  }

  #videoFrame {
    height: 200px !important;
  }

  .why-card,
  .step {
    padding: 16px;
  }

  .for-list li {
    padding-left: 24px;
  }
}

/* Loading States */
.loading {
  opacity: 0.6;
  cursor: wait;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}
