/* Travis Jordan for Bartow County School Board - Campaign Styles */

:root {
  --red: #C8102E;
  --red-dark: #9B0C23;
  --red-light: #E83A4F;
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark-gray: #2A2A2A;
  --gray: #555;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --navy: #0A2540;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow: 0 10px 30px rgba(0,0,0,0.15);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,16,46,0.4);
}

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

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

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 60%, #2a0a0f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200,16,46,0.08));
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.hero-content .office {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.hero-content .slogan {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .slogan::before,
.hero-content .slogan::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 3px;
  background: var(--red);
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-photo {
  position: relative;
  justify-self: end;
}

.hero-photo img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 3px solid var(--red);
  max-height: 540px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.hero-photo .flyer-img {
  max-height: 540px;
}

.party-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: var(--red);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  text-transform: uppercase;
  transform: rotate(-3deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ========== SECTIONS ========== */
.section {
  padding: 4.5rem 1.5rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 0.6rem auto 0;
}

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Platform Cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.platform-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.platform-icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
}

.platform-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.platform-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Quick Bio Strip */
.bio-strip {
  background: var(--light-gray);
  padding: 3.5rem 1.5rem;
}

.bio-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.bio-strip img {
  width: 320px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 4px solid var(--red);
  box-shadow: var(--shadow);
}

.bio-strip h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.bio-strip p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  max-width: 560px;
}

/* CTA Banner */
.cta-banner {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 1.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-banner .btn:hover {
  background: var(--black);
  color: white;
}

/* ========== ABOUT PAGE ========== */
.page-hero {
  background: var(--black);
  color: white;
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.4rem;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.about-intro img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 4px solid var(--red);
  box-shadow: var(--shadow);
}

.about-intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.about-intro p {
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.experience-section,
.education-section,
.endorsements-section {
  margin-bottom: 3.5rem;
}

.experience-section h2,
.education-section h2,
.endorsements-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--red);
  display: inline-block;
}

.exp-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  border-left: 5px solid var(--red);
}

.exp-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.exp-card h3::before {
  content: '★';
  color: var(--red);
}

.exp-card ul {
  padding-left: 1.5rem;
}

.exp-card li {
  list-style: disc;
  margin-bottom: 0.3rem;
  color: var(--dark-gray);
}

.edu-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.edu-icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.edu-box h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.endorsement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.endorsement-item {
  background: white;
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.endorsement-item:hover {
  border-color: var(--red);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 300px;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255,255,255,0.55);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-photo {
    justify-self: center;
    order: -1;
  }

  .hero-photo img {
    max-height: 360px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .bio-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bio-strip img {
    margin: 0 auto;
  }

  .bio-strip p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-intro img {
    max-width: 340px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content .slogan {
    font-size: 1.25rem;
  }
}
