:root {
    --navy: #0a1a44;
    --red: #b30000;
    --light: #f5f5f5;
  }
  /* NAVIGATION BAR */
.navbar {
    background: var(--navy);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-logo {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    opacity: 0.8;
  }
  
  .donate-link {
    background: var(--red);
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
  }
  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #222;
    line-height: 1.6;
  }
  
  .hero {
    background: var(--red);
    color: white;
    padding: 60px 20px;
    text-align: left;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin: 0;
    text-transform: uppercase;
  }

  .hero-photo img {
    width: 240px;
    height: auto;
    border-radius: 8px;
    border: 4px solid white;
  }
  
  /* Desktop layout */
  @media (min-width: 800px) {
    .hero-content {
      flex-direction: row;
      justify-content: space-between;
      max-width: 1100px;
      margin: auto;
    }
    .hero-text {
      max-width: 60%;
    }
    .hero-photo img {
      width: 280px;
    }
  }
  
  h1 { 
    font-size: 3.2rem; 
    margin-bottom: 0; 
    text-transform: uppercase;
  }
  h2 { 
    margin-top: 10px; 
    font-weight: 500; 
  }
  
  section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  
  .issue-card {
    background: var(--light);
    padding: 22px;
    border-left: 6px solid var(--red);
    border-radius: 6px;
  }
  
  form input {
    display: block;
    width: 100%;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
  }
  textarea {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 10px;
  }
  
  
  .btn {
    background: var(--red);
    color: white;
    padding: 14px 22px;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    cursor: pointer;
  }
  
  footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 0.9rem;
  }

  #district-map {
    text-align: center;
  }
  
  .pdf-container {
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
    height: 500px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .download-btn {
    margin-top: 15px;
    display: inline-block;
  }
  .social-btn {
    background: var(--red);
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 12px;
    display: inline-block;
  }
  
  .social-btn:hover {
    opacity: 0.85;
  }
  .hero-social {
    margin-top: 18px;
    font-size: 1.1rem;
  }
  .social-icon {
    background: var(--red);
    padding: 10px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    text-decoration: none;
  }
  
  .social-icon svg {
    width: 24px;
    height: 24px;
    fill: blue;
  }
  
  .social-icon:hover {
    opacity: 0.85;
  }

  /* ========== HAMBURGER STYLES ========== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

/* Mobile layout */
@media (max-width: 800px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--navy);
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    gap: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .donate-link {
    font-size: 1.1rem;
  }
}

      
  