/* ===========================
   Cleveland Improv — Styles
   Fun, casual, approachable
   =========================== */

:root {
  --color-bg: #FFFBF5;
  --color-text: #2D3436;
  --color-text-muted: #636E72;
  --color-primary: #FF6B35;
  --color-primary-dark: #E55A2B;
  --color-secondary: #7B2FBE;
  --color-accent: #FFD166;
  --color-teal: #20B2AA;
  --color-card-bg: #FFFFFF;
  --color-signup-bg: #FFF3E6;
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===========================
   Hero
   =========================== */

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg) 0%, #FFF0E0 50%, #F0E6FF 100%);
}

.hero .eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--color-primary);
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-weight: 400;
}

/* Decorative shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: -80px;
  right: -60px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--color-secondary);
  bottom: -40px;
  left: -40px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--color-accent);
  top: 40%;
  left: 10%;
}

/* ===========================
   CTA Button
   =========================== */

.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
  background: var(--color-primary);
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* ===========================
   About Section
   =========================== */

.about {
  padding: 80px 0;
}

.about h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
  color: var(--color-text);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.about-card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}

.about-card:hover {
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===========================
   Signup Section
   =========================== */

.signup {
  padding: 80px 0;
  background: var(--color-signup-bg);
}

.signup h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
}

.signup-sub {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.form-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.signup-form input,
.signup-form select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid #E0D6CC;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.signup-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23636E72' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

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

.signup-form .cta-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 16px;
}

.success-message {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-teal);
  text-align: center;
  padding: 20px 0;
}

/* ===========================
   Footer
   =========================== */

.footer {
  padding: 40px 0;
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.footer-location {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 600px) {
  .hero {
    padding: 72px 0 60px;
  }

  .form-row {
    flex-direction: column;
  }

  .about, .signup {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shape-1 { width: 200px; height: 200px; }
  .shape-2 { width: 140px; height: 140px; }
  .shape-3 { width: 100px; height: 100px; }
}
