/* ===== THE REPUBLICAN SPECTRUM — Natali e & Darren ===== */
/* Colors: Red / White / Blue + dark patriotic theme */

:root {
  --red: #dc2626;
  --red-dark: #991b1b;
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --darren-red: #ff4500;
  --gold: #f59e0b;
  --acreetion-green: #2ecc71;

  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --card-bg: #141414;
  --border: #2a2a2a;
  --text: #a0a0a0;
  --text-bright: #e4e4e7;
  --muted: #71717a;
  --white: #fafafa;

  --radius: 16px;
  --radius-sm: 10px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-height: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-bright);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(220, 38, 38, 0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

::selection {
  background: rgba(220, 38, 38, 0.3);
  color: var(--text-bright);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ===== Navigation ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  border-radius: 0 0 16px 16px;
  padding: 0 2rem;
  height: var(--nav-height);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

nav .logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-bright);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

nav .logo i { color: var(--red); font-size: 1.2rem; }
nav .logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 1.3rem;
  cursor: pointer;
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 2px solid var(--red);
    padding: 1rem 2rem;
    gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}

.hero-content { max-width: 800px; }

.hero-flag {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 0 50px rgba(220, 38, 38, 0.3);
  border: 3px solid rgba(255,255,255,0.1);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--red) 30%, var(--white) 50%, var(--blue) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.tagline strong { color: var(--text-bright); }
.tagline em { color: var(--red); font-style: normal; }

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: rgba(220, 38, 38, 0.06);
  color: var(--text);
  font-family: var(--font-mono);
}

.badge i { color: var(--red); font-size: 0.75rem; }

/* ===== Sections ===== */
section { padding: 5rem 2rem; }

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title i { color: var(--red); font-size: 1.5rem; }

.section-subtitle {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* ===== Cards ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s;
}

.card:hover { border-color: rgba(220, 38, 38, 0.3); }

.card p {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.card p strong { color: var(--text-bright); }
.card h3 { margin-bottom: 1rem; font-size: 1.2rem; color: var(--text-bright); }
.card h3 i { margin-right: 8px; }

/* ===== Kinds Grid ===== */
.kinds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

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

.kind-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s;
}

.kind-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
}

.kind-card[data-kind="traditional"] { border-left: 3px solid var(--blue); }
.kind-card[data-kind="maga"] { border-left: 3px solid var(--darren-red); }
.kind-card[data-kind="libertarian"] { border-left: 3px solid var(--gold); }
.kind-card[data-kind="religious"] { border-left: 3px solid #8b5cf6; }
.kind-card[data-kind="establishment"] { border-left: 3px solid #64748b; }
.kind-card[data-kind="populist"] { border-left: 3px solid #f97316; }
.kind-card[data-kind="constitutional"] { border-left: 3px solid #06b6d4; }
.kind-card[data-kind="nevertrump"] { border-left: 3px solid #78716c; }
.kind-card[data-kind="conservation"] { border-left: 3px solid var(--acreetion-green); }
.kind-card[data-kind="security"] { border-left: 3px solid #1d4ed8; }

.kind-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-bright);
}

.kind-desc {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.kind-ideas {
  margin-bottom: 1rem;
}

.kind-ideas h4 {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.kind-ideas ul {
  list-style: none;
}

.kind-ideas li {
  font-size: 0.83rem;
  color: var(--text);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kind-ideas li i {
  color: var(--red);
  font-size: 0.7rem;
  width: 16px;
  flex-shrink: 0;
}

.kind-figures {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fig {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--muted);
  border: 1px solid rgba(220, 38, 38, 0.15);
  font-family: var(--font-mono);
}

/* Kind meta badges */
.kind-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.kind-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kind-icon i { font-size: 1.1rem; color: var(--red); }

.kind-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.kind-label {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-family: var(--font-mono);
}

.kind-label.kind-darren {
  background: rgba(255, 69, 0, 0.1);
  color: var(--darren-red);
  border-color: rgba(255, 69, 0, 0.2);
}

/* ===== Divider ===== */
.divider-section {
  background: linear-gradient(135deg, rgba(220,38,38,0.05), rgba(37,99,235,0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ===== Perspective sections ===== */
.perspective-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.perspective-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  border: 3px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Darren section */
.darren-section {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.03), rgba(0, 0, 0, 0.05));
}

.card-darren {
  border-left: 3px solid var(--darren-red) !important;
}

.card-darren h3 i { color: var(--darren-red); }

/* Natalie section */
.natalie-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(0, 0, 0, 0.05));
}

.card-natalie {
  border-left: 3px solid var(--blue) !important;
}

.card-natalie h3 i { color: var(--blue); }

/* ===== Quote Block ===== */
.quote-block {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--red);
  background: rgba(220, 38, 38, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-bright);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quote-block i {
  color: var(--red);
  opacity: 0.5;
  margin: 0 4px;
}

/* ===== Together Section ===== */
.together-section {
  background: linear-gradient(135deg, rgba(220,38,38,0.05), rgba(37,99,235,0.05));
}

.together-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.together-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s;
}

.together-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.08);
}

.together-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.together-card h3 {
  font-size: 1.05rem;
  color: var(--text-bright);
  margin-bottom: 0.75rem;
}

.together-card p {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== Unified Message ===== */
.unified-message {
  background: var(--card-bg);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}

.unified-grip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.grip-darren, .grip-natalie {
  text-align: center;
  min-width: 140px;
}

.grip-darren i, .grip-natalie i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.grip-darren i { color: var(--darren-red); }
.grip-natalie i { color: var(--red); }

.grip-darren h3, .grip-natalie h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-bright);
}

.grip-darren p, .grip-natalie p {
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.6;
}

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

.unified-text {
  color: var(--text-bright);
  font-size: 1.1rem;
  line-height: 1.8;
}

.unified-text strong {
  font-size: 1.3rem;
  color: var(--red);
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

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

footer a:hover { text-decoration: underline; }

/* ===== Fade-In Animation ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-trigger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-trigger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Selection ===== */
.kind-card:hover .kind-ideas li i {
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 500px) {
  .hero { padding: 5rem 1rem 3rem; }
  section { padding: 3rem 1rem; }
  .kind-header { flex-direction: column; align-items: flex-start; }
  .perspective-header { flex-direction: column; text-align: center; }
  .perspective-header .section-subtitle { margin: 0 auto; }
}
