/*
Theme Name: CzechElbit10 Solidarity
Theme URI: https://czechelbit10.org
Author: CzechElbit10
Description: A bold, dark solidarity statement theme for the CzechElbit10 campaign.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: czechelbit10
*/

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

:root {
  --bg: #121212;
  --fg: #ebebeb;
  --card: #1a1a1a;
  --muted-fg: #999999;
  --accent-green: hsl(142, 72%, 45%);
  --accent-red: hsl(0, 80%, 55%);
  --border: #333333;
  --secondary: #262626;
}

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

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-nav .nav-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav .logo {
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.site-nav .logo span {
  background: var(--fg);
  color: var(--bg);
  padding: 0.125rem 0.375rem;
  margin-left: 0.25rem;
  font-size: 0.875rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-links a {
  color: var(--muted-fg);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-green);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
}

.hero-box {
  max-width: 56rem;
  width: 100%;
  border: 1px solid var(--border);
  padding: 4rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero .the {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  letter-spacing: 0.4em;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 1rem;
}

.hero .elbit-badge {
  display: inline-block;
  background: var(--fg);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.hero .elbit-badge span {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--bg);
}

.hero .tagline {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--muted-fg);
}

/* ===== DIVIDER ===== */
.section-divider {
  max-width: 48rem;
  margin: 4rem auto;
  border: 0;
  border-top: 1px solid var(--border);
}

/* ===== STATEMENT ===== */
.statement {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.statement h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.statement-body {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

.statement-body p {
  margin-bottom: 2rem;
}

.text-green {
  color: var(--accent-green);
  font-weight: 700;
}

.text-red {
  color: var(--accent-red);
  font-weight: 700;
}

.statement-body .witch-hunt {
  color: var(--accent-red);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}

.demands-heading {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
}

.demands-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.demands-list li {
  margin-bottom: 1.5rem;
}

/* ===== CTA ===== */
.cta-section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: var(--accent-green);
  color: var(--bg);
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* ===== SIGN FORM ===== */
.sign-section {
  max-width: 42rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.sign-section h2 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.sign-section .subtitle {
  text-align: center;
  color: var(--muted-fg);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.signer-toggle {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.signer-toggle button {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: all 0.2s;
}

.signer-toggle button.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.sign-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sign-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.sign-form input,
.sign-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: inherit;
  font-size: 1rem;
  border-radius: 0.375rem;
}

.sign-form input::placeholder,
.sign-form textarea::placeholder {
  color: var(--muted-fg);
}

.sign-form textarea {
  min-height: 100px;
  resize: vertical;
}

.sign-form .btn-primary {
  width: 100%;
  padding: 1.25rem;
}

.thank-you {
  max-width: 42rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.thank-you-box {
  border: 1px solid var(--accent-green);
  padding: 3rem;
  border-radius: 0.5rem;
}

.thank-you h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.thank-you p {
  font-size: 1.125rem;
  color: var(--muted-fg);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 2rem;
  text-align: center;
  color: var(--muted-fg);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
}

/* ===== WORDPRESS DEFAULTS ===== */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}


.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn-outline .arrow-down {
  font-size: 1.25rem;
}

html {
  scroll-behavior: smooth;
}
