/* ============================================================
   Alabama Freedom & Prosperity PAC — Simple Landing Page
   ============================================================ */

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

:root {
  --navy:  #0d1f3c;
  --red:   #bf1b1b;
  --gold:  #c9a84c;
  --white: #ffffff;
}

html, body { height: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
}

/* Full-screen page */
.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #0d1f3c 0%, #16325c 50%, #7a1212 100%);
  padding: 2rem;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 31, 60, 0.45);
  pointer-events: none;
}

/* Main content */
.content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.star {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 500px;
}

.contact-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-btn:hover {
  background: #9e1515;
  transform: translateY(-2px);
}

/* Footer */
footer {
  position: absolute;
  bottom: 1.5rem;
  left: 0; right: 0;
  text-align: center;
  z-index: 1;
}
footer p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

/* Mobile */
@media (max-width: 500px) {
  h1 { font-size: 2.4rem; }
  .tagline { font-size: 0.92rem; }
}
