/* GetTix.events - Main Stylesheet */
/* Plain ASCII only - System font stack */

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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #f8fafc;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --radius: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

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

a:hover {
  text-decoration: underline;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 48px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* Hero Section */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  line-height: 1.3;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Styles */
.section {
  padding: 60px 24px;
}

.section-white {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 40px auto;
  max-width: 1100px;
  padding: 48px;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.section-intro {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 700px;
}

/* Bullet Lists */
.benefit-list {
  list-style: disc;
  margin-left: 24px;
  line-height: 1.9;
}

.benefit-list li {
  margin-bottom: 8px;
  color: var(--text);
}

/* How It Works */
.steps-simple {
  margin-top: 16px;
}

.steps-simple ol {
  margin-left: 24px;
  line-height: 2;
}

.steps-simple li {
  margin-bottom: 4px;
}

/* FAQ */
.faq-list {
  margin-top: 16px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-light);
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  color: var(--text-light);
  display: none;
  padding-top: 4px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Page Header */
.page-header {
  padding: 48px 24px;
  text-align: center;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--text-light);
}

/* Content Sections */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.content-section h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  margin-top: 32px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.content-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.content-section li {
  margin-bottom: 6px;
}

/* Pricing Box */
.pricing-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.pricing-box h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.pricing-example {
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius);
  margin: 20px 0;
}

.pricing-example h4 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.pricing-example ul {
  list-style: none;
  margin: 0;
}

.pricing-example li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-example li:last-child {
  border-bottom: none;
  font-weight: 600;
}

.pricing-note {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  padding: 16px;
  border-radius: var(--radius);
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Support Scope */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 32px auto;
}

.scope-box {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.scope-box.organizer {
  background: #fef3c7;
  border-color: #f59e0b;
}

.scope-box.gettix {
  background: #dbeafe;
  border-color: var(--primary);
}

.scope-box h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.scope-box ul {
  list-style: disc;
  margin-left: 20px;
}

.scope-box li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* Apply Intro */
.apply-intro {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--text-light);
}

/* Contact Form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 32px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Footer */
.site-footer {
  background: var(--text);
  color: #fff;
  padding: 48px 24px 24px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

/* Legal Pages */
.legal-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 24px;
}

.legal-content h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: var(--text-light);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--text-light);
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 12px;
  color: var(--text-light);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav a {
    display: block;
    padding: 12px 0;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .section-white {
    margin: 24px 16px;
    padding: 32px 24px;
  }

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
