/* Ken Paxton for US Senate - Campaign Site */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --navy: #002f5f;
  --red: #e70a34;
  --white: #ffffff;
  --light-gray: #f0f0f0;
  --dark: #0c0c0c;
  --text-muted: #666666;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--red);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text span {
  color: var(--red);
}

.logo-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links .btn-donate {
  background: var(--red);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
}

.nav-links .btn-donate:hover {
  background: #c5082c;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #001a36 100%);
  color: var(--white);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" opacity="0.03">★</text></svg>') repeat;
  background-size: 120px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--red);
}

.hero p {
  font-size: 20px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #c5082c;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ===== SIGNUP STRIP ===== */
.signup-strip {
  background: var(--red);
  padding: 30px 20px;
}

.signup-strip .container {
  max-width: 900px;
  margin: 0 auto;
}

.signup-strip h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.signup-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.signup-form input {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  width: 200px;
}

.signup-form input:focus {
  outline: 2px solid var(--navy);
}

.signup-form button {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.signup-form button:hover {
  background: #001a36;
}

.signup-notice {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-top: 10px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 20px;
  background: var(--white);
}

.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-image {
  flex: 0 0 360px;
  height: 420px;
  background: linear-gradient(135deg, var(--navy), #003d7a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text {
  flex: 1;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===== ISSUES SECTION ===== */
.issues-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

.issues-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.issue-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border-top: 4px solid var(--red);
  transition: transform 0.2s;
}

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

.issue-card .issue-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.issue-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.issue-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.issue-card a {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.issue-card a:hover {
  color: var(--navy);
}

/* ===== DONATE SECTION ===== */
.donate-section {
  padding: 80px 20px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.donate-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.donate-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.donate-section p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 36px;
}

.donate-amounts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.donate-amounts a {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 32px;
  border: 2px solid var(--white);
  border-radius: 4px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
  min-width: 100px;
}

.donate-amounts a:hover,
.donate-amounts a.active {
  background: var(--red);
  border-color: var(--red);
}

/* ===== VOLUNTEER SECTION ===== */
.volunteer-section {
  padding: 80px 20px;
  background: var(--white);
}

.volunteer-section .container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.volunteer-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.volunteer-section > .container > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.volunteer-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.volunteer-form .full-width {
  grid-column: 1 / -1;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

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

.volunteer-form button {
  grid-column: 1 / -1;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.6);
  padding: 50px 20px 30px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo-text {
  font-size: 22px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-links h4,
.footer-social h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
}

.social-icons a:hover {
  background: var(--red);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.8;
  margin-top: 12px;
}

/* ===== ABOUT PAGE ===== */
.bio-section {
  padding: 60px 20px;
  background: var(--white);
}

.bio-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.bio-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin: 40px 0 16px;
}

.bio-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.bio-section ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.bio-section ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.6;
}

.bio-section ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 12px;
  top: 10px;
}

/* ===== ISSUES PAGE ===== */
.issues-page-grid {
  padding: 60px 20px;
  background: var(--light-gray);
}

.issues-page-grid .container {
  max-width: 1000px;
  margin: 0 auto;
}

.issue-full {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  margin-bottom: 24px;
  border-left: 4px solid var(--red);
}

.issue-full h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.issue-full p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PATRIOTS PAGE ===== */
.patriots-intro {
  padding: 60px 20px;
  background: var(--white);
  text-align: center;
}

.patriots-intro .container {
  max-width: 700px;
  margin: 0 auto;
}

.patriots-intro h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.patriots-intro p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.endorsement-form {
  max-width: 600px;
  margin: 40px auto 0;
  text-align: left;
}

.endorsement-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.endorsement-form input,
.endorsement-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

.endorsement-form textarea {
  height: 100px;
  resize: vertical;
  margin-bottom: 14px;
}

.endorsement-form input:focus,
.endorsement-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.endorsement-form label.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.endorsement-form label.checkbox input {
  width: auto;
}

/* ===== IMAGE ELEMENTS ===== */
.logo-img {
  height: 50px;
  width: auto;
}

.issue-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}

.issue-full-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .about-section .container {
    flex-direction: column;
  }

  .about-image {
    flex: none;
    width: 100%;
    height: 280px;
  }

  .section-header h2,
  .about-text h2,
  .donate-section h2,
  .volunteer-section h2 {
    font-size: 32px;
  }

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

  .volunteer-form {
    grid-template-columns: 1fr;
  }

  .endorsement-form .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .signup-form input {
    width: 100%;
  }
}
