/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #1a3155;
  --navy-dark: #0f2240;
  --navy-light: #2a4a73;
  --blue-accent: #3a6ea5;
  --orange: #e8853d;
  --orange-hover: #d4742e;
  --white: #ffffff;
  --off-white: #f0f4f8;
  --light-gray: #dce4ed;
  --text-dark: #1a1a2e;
  --text-medium: #4a5568;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 49, 85, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-logo span {
  color: var(--orange);
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: var(--orange);
  opacity: 0.06;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: var(--blue-accent);
  opacity: 0.08;
  border-radius: 50%;
}

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

.hero-text {
  color: var(--white);
}

.hero-label {
  display: inline-block;
  background: rgba(232, 133, 61, 0.15);
  border: 1px solid rgba(232, 133, 61, 0.4);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-title .highlight {
  color: var(--orange);
}

.hero-slogan {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 133, 61, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-photo-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--orange);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

/* Election countdown bar */
.election-bar {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 999;
  margin-top: 0;
}

.election-bar .date-highlight {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo-col {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.about-photo-tag {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(26, 49, 85, 0.3);
}

.about-content h3 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-content p {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 10px;
}

.about-detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 1rem;
}

.about-detail-text {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.about-detail-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

/* ===== PLATFORM / PLAN ===== */
.platform {
  background: var(--off-white);
}

.platform-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.platform-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.platform-card:nth-child(1) { border-top-color: var(--orange); }
.platform-card:nth-child(2) { border-top-color: var(--blue-accent); }
.platform-card:nth-child(3) { border-top-color: var(--navy); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.platform-card:nth-child(1) .card-icon {
  background: rgba(232, 133, 61, 0.12);
  color: var(--orange);
}

.platform-card:nth-child(2) .card-icon {
  background: rgba(58, 110, 165, 0.12);
  color: var(--blue-accent);
}

.platform-card:nth-child(3) .card-icon {
  background: rgba(26, 49, 85, 0.12);
  color: var(--navy);
}

.platform-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.platform-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.platform-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

.platform-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.platform-card:nth-child(1) li::before { background: var(--orange); }
.platform-card:nth-child(2) li::before { background: var(--blue-accent); }
.platform-card:nth-child(3) li::before { background: var(--navy); }

/* ===== WHY I'M RUNNING ===== */
.why-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: var(--orange);
  opacity: 0.05;
  border-radius: 50%;
}

.why-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-inner .section-title {
  color: var(--white);
}

.why-inner .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-quote {
  font-size: 1.25rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  position: relative;
  padding: 0 2rem;
}

.why-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.4;
  position: absolute;
  top: -2.5rem;
  left: -0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.why-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
}

.why-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

/* ===== MUSIC / PERSONALITY SECTION ===== */
.personality {
  background: var(--white);
}

.personality-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

.personality-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.personality-content p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.personality-photo {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  object-fit: contain;
}

/* ===== CONTACT / CTA ===== */
.contact {
  background: var(--off-white);
}

.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-icon.email { background: rgba(232, 133, 61, 0.12); color: var(--orange); }
.contact-icon.social { background: rgba(58, 110, 165, 0.12); color: var(--blue-accent); }
.contact-icon.linkedin { background: rgba(26, 49, 85, 0.12); color: var(--navy); }

.contact-item-text {
  font-size: 0.95rem;
  color: var(--text-medium);
}

.contact-item-text strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-item-text a {
  color: var(--blue-accent);
  transition: color 0.2s;
}

.contact-item-text a:hover {
  color: var(--orange);
}

.contact-cta-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.contact-cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-cta-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-cta-card .btn-primary {
  align-self: center;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--orange);
}

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

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-photo-wrapper {
    width: 280px;
    height: 280px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-desc {
    margin: 0 auto 2rem;
  }

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

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

  .about-photo-col {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

  .platform-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .personality-grid {
    grid-template-columns: 1fr;
  }

  .personality-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 7rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-slogan {
    font-size: 1.1rem;
  }

  .hero-photo-wrapper {
    width: 220px;
    height: 220px;
  }

  section {
    padding: 3.5rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
