/* --- Branding Variables --- */
        :root {
            --navy: #0a192f;
            --red: #bd2026;
            --white: #ffffff;
            --grey: #f4f4f4;
            --transition: all 0.3s ease;
        }

        /* --- Global --- */
        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            color: var(--navy);
            line-height: 1.6;
        }

        h1, h2, h3, .nav-links a, .donate-label, .amt {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Navigation --- */
   .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  transition: background-color 0.3s ease;
  padding: 10px 0;
  height: 65px;
}
body {
  padding-top: 80px;
}



        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            height: 100%;
        }

   .nav-logo {
  background: #ffffff;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  left: 20px;
  top: 10px;

  outline: 4px solid #0A192F;
  z-index: 1100;
}


     .nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* --- LOGO STATES --- */
.nav-logo {
  transition: 
    width 0.35s ease,
    height 0.35s ease,
    top 0.35s ease,
    transform 0.35s ease;
}

/* Default (large / hanging) */
.nav-logo.large {
  width: 116px;
  height: 116px;
  top: 10px;
}

/* Shrunk (inside navbar) */
.nav-logo.shrunk {
  width: 64px;
  height: 64px;
  top: 0;
  transform: translateY(0);
}
.nav-logo img {
  transition: height 0.35s ease;
}

.nav-logo.large img {
  height: 100px;
}

.nav-logo.shrunk img {
  height: 44px;
}
@media (min-width: 993px) {
  .navbar.scrolled .nav-logo:hover {
    width: 116px;
    height: 116px;
    top: 10px;
  }

  .navbar.scrolled .nav-logo:hover img {
    height: 100px;
  }
}


        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 25px;
            margin-left: auto;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .btn-nav-donate {
            background-color: var(--red);
            padding: 12px 25px !important;
            border-radius: 0;
            transition: var(--transition);
            font-family: 'montserrat',sans-serif !important;
            font-weight: 800 !important;
        
        }

        .btn-nav-donate:hover {
            background-color: var(--white);
            color: var(--red) !important;
        }

        /* --- Hero Section --- */
.hero {
    position: relative;
    background-color: var(--navy);
    overflow: hidden;

    height: 600px;
    max-height: 85vh;

    display: flex;
    align-items: stretch; /* IMPORTANT */
}


.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    height: 100%;
    padding-right: 20px; /* replaces negative margin */
}


        .hero-overlay {
            position: absolute;
            inset: 0;
         
            z-index: 1;
        }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    height: 100%;
}



     .hero-content {
    padding-bottom: 40px;
}
.hero-logo {
    display: block;
}


   .hero-logo {
    max-width: 560px;
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .hero-logo {
        max-width: 380px;
        margin: 0 auto;
    }

    .nav-links {
  display: none !important;
}

}

       .hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: white;
  text-transform: uppercase;
  font-weight: 800;
}

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

        .hero-subtitle {
            max-width: 500px;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

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

        .hero-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                90deg,
                #0a192f 0%,
                rgba(10,25,47,0.6) 20%,
                rgba(10,25,47,0) 45%
            );
            z-index: 2;
            pointer-events: none;
        }

     .hero-image img {
    max-height: 100%;
    width: auto;
    height: auto;

    display: block;
}


        .btn-primary {
            background: var(--red);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            font-family: 'Oswald';
            font-size: 1.2rem;
            display: inline-block;
            font-family: 'montserrat',sans-serif;
            font-weight: 800;
            text-transform: uppercase;
        }
        

       .donation-bar {
    background: var(--red);
    padding: 40px 0;
}

.donate-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* allows wrapping */
}

.donate-label {
    font-size: 2rem;
    color: white;
    margin: 0;
    white-space: nowrap; /* keep "DONATE:" on one line */
}

.donate-options {
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* wrap amounts naturally */
    justify-content: center;
    align-items: baseline;
}

.amt, .amt-other {
    font-size: 2.2rem;
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    transition: var(--transition);
    padding: 8px 14px; /* optional for tap area */
    border-radius: 4px;
}

.amt:hover, .amt-other:hover {
    color: var(--navy);
}


        /* --- About Section --- */
        .about {
            padding: 60px 0;
        }
        
        .section-header {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

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

        .issues-grid h3 {
            margin-bottom: 10px;
        }

        /* --- Video Section --- */
        .video-section {
            padding: 80px 0;
            background: var(--grey);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .video-grid iframe {
            width: 100%;
            height: 315px;
            border: none;
        }

        /* --- Shop Promo --- */
        .shop-promo img {
            width: 100%;
            display: block;
        }

       /* =========================
   FOOTER WITH CENTER LOGO
========================= */

.footer {
  background: black;
  color: white;
  padding: 70px 0 50px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

/* Left info */
.footer-grid p {
  margin: 6px 0;
  line-height: 1.6;
}

.footer a {
  color: white;
  text-decoration: underline;
}

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

/* Logo */
.footer-logo {
  display: flex;
  justify-content: center;
}

.footer-logo img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-social a {
  font-size: 1.4rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: var(--red);
  transform: translateY(-3px);
}

/* Disclaimer */
.footer-disclaimer {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-disclaimer-box {
  display: inline-block;
  padding: 14px 18px;
  border: 2px solid white;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 40px;
  }

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

  .footer-logo {
    margin: 25px 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-disclaimer {
    padding: 0 15px;
  }
}


        /* --- Modal --- */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.85);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            max-width: 800px;
            max-height: 85vh;
            position: relative;
            margin: 20px;
        }

        .modal-content img {
            width: 100%;
            max-height: 85vh;
            object-fit: contain;
            display: block;
        }

        .modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 32px;
            cursor: pointer;
        }

        /* --- Hamburger Menu --- */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }
        .hamburger {
  position: absolute;
  right: 20px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
}


        .hamburger span {
            width: 30px;
            height: 3px;
            background: rgb(0, 0, 0);
        }

        .navbar.scrolled .hamburger span {
  background: white;
}
        /* --- Responsive --- */
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; }
            .hero-content { text-align: center; order: 2; }
            .hero-image { order: 1; }
            .hero-title { font-size: 3rem; }
            .hero-logo { margin: 0 auto 30px auto; }
            
            .hero {
                height: auto;
                padding: 60px 0;
            }

            .hero-image {
                height: 360px;
                margin-right: 0;
            }
            
            .video-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 20px; }

            .hamburger { display: flex; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--navy);
                padding: 20px 0;
                animation: slideDown 0.3s ease;
            }
            .nav-links.active { display: flex; }
            .nav-links a {
                padding: 12px 0;
            }
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
      
      /* --- Signup Form Section --- */
        .signup-section {
            padding: 80px 0;
            background: var(--navy);
            color: white;
            text-align: center;
        }

        .signup-subtext {
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

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

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .signup-form input {
            padding: 16px 14px;
            font-size: 1rem;
            border: none;
            border-radius: 6px;
            outline: none;
            font-family: 'Montserrat', sans-serif;
        }

        .signup-form input::placeholder {
            color: #666;
        }

        .signup-form input:focus {
            box-shadow: 0 0 0 2px var(--red);
        }

        .form-btn {
            padding: 16px 60px;
            font-size: 1.2rem;
            cursor: pointer;
            border: none;
        }

        .form-btn:hover {
            opacity: 0.9;
        }


 .hero-statement {
  background: #000000; /* near-black, still rich */
  padding: 45px 0 50px; /* much shorter height */
  text-align: center;
}

.hero-statement h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: 1px;
  color: white;
  margin: 0;
}

.hero-statement h2 span {
  color: var(--red);
}

@media (max-width: 992px) {
  .hero-statement {
    padding: 35px 0 40px;
  }

  .hero-statement h2 {
    font-size: 2.2rem;
  }
}


/* =========================
   CLEAN HERO v1
========================= */

.hero1 {
  position: relative;
  background: #0a192f;
  height: 600px;
  max-height: 85vh;
  overflow: hidden;
}

/* layout */
.hero1-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT CONTENT */
.hero1-content {
  z-index: 2;
}

.hero1-logo {
  max-width: 760px;
  width: 100%;
  display: block;
}

/* RIGHT IMAGE */
.hero1-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero1-image img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  margin-right: -35px;
}

/* FADE OVER IMAGE */
.hero1-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0a192f 0%,
    rgba(10, 25, 47, 0.65) 25%,
    rgba(10, 25, 47, 0) 55%
  );
  z-index: 1;
  pointer-events: none;
}

/* GRAIN / DEPTH OVERLAY */
.hero1::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/fabric-of-squares.png");
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero1 {
    height: auto;
    padding: 60px 0;
  }

  .hero1-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero1-content {
    margin-bottom: 40px;
  }

  .hero1-logo {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero1-image {
    height: 360px;
  }
}

.navbar {
  background-color: white;
  transition: all 0.3s ease;
}

.nav-links a {
  color: black;
}

.btn-nav-donate {
  color: white !important;
  background-color: var(--red);
}

.navbar.scrolled {
  background-color: var(--navy);
}

.navbar.scrolled .nav-links a {
  color: white;
}
.nav-links a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 4px 0;
  font-size: 1.2rem;
}

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

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

/* exclude donate button */
.nav-links a.btn-nav-donate::after {
  display: none;
}

/* --- Hero Responsive Fix --- */
@media (max-width: 992px) {
  .hero1-inner {
   
    text-align: center;
  }

  .hero1-content {
    margin-bottom: 30px; /* spacing above image */
  }

  .hero1-image {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
    border-radius: 15px; /* rounded corners */
    overflow: hidden;
  }

  .hero1-image img {
    width: 100%;
    height: auto;
    margin: 0;
  }

  /* Fade overlay adjustments */
  .hero1-image::before {
    background: linear-gradient(
      180deg, /* fade from top instead of left */
      rgba(10,25,47,0.65) 0%,
      rgba(10,25,47,0) 50%
    );
  }
}


@media (max-width: 992px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    box-sizing: border-box;
  }
}
body, html {
  overflow-x: hidden; /* prevents any horizontal scroll */
}


/* --- Meet John James (Campaign Style) --- */
.meet-john-james {
  padding: 100px 0;
  background: #ffffff;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.meet-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.meet-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  line-height: 1.05;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: var(--navy);
}

.meet-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 520px;
}

.meet-text .btn-primary {
  margin-top: 10px;
}

/* =========================
   MOBILE NAV OVERLAY
========================= */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.98);
  z-index: 3000;
}

.mobile-overlay.show {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

.close-btn:hover {
  color: var(--red);
}

/* Overlay Nav */
.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

.overlay-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.overlay-nav a:hover {
  color: var(--red);
  transform: scale(1.05);
}

/* Donate standout */
.overlay-nav .donate-link {
  color: var(--red);
  border: 2px solid white; /* Shorthand for width, style, and color */
    padding: 10px;        /* Adds space between the text and the border */
}

/* =========================
   MEET JOHN JAMES – RESPONSIVE
========================= */

/* Base safety */
.meet-john-james {
  overflow-x: hidden;
}

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

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
  .meet-john-james {
    padding: 80px 0;
  }

  .meet-grid {
    gap: 40px;
  }

  .meet-text h2 {
    font-size: 3rem;
  }

  .meet-text p {
    font-size: 1rem;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .meet-john-james {
    padding: 60px 0;
  }

  .meet-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .meet-image {
    max-width: 100%;
  }

  .meet-image img {
    width: 100%;
    border-radius: 14px;
  }

  .meet-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .meet-text h2 {
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .meet-text p {
    font-size: 1rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .meet-text .btn-primary {
    margin-top: 20px;
    padding: 14px 36px;
    font-size: 1.1rem;
  }
}

/* ---------- SMALL PHONES ---------- */
@media (max-width: 480px) {
  .meet-text h2 {
    font-size: 2rem;
  }

  .meet-text p {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .meet-john-james {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f7f7 100%
    );
  }
}

html {
  scroll-behavior: smooth;
}

/* Desktop: make image smaller in Meet John James */
@media (min-width: 1025px) {
  .meet-image {
    max-width: 85%;  /* shrink image a bit */
    margin: 0 auto;   /* center within column */
  }

  .meet-image img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* optional, keeps style consistent */
  }
}



/* =========================
   ISSUES SECTION
========================= */

.issues-section {
    padding: 100px 20px;
    background: #f7f7f7;
    text-align: center;
}

.issues-section .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #0a1930;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.issue-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.issue-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0a1930;
}

.issue-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .issues-section .section-title {
        font-size: 2.6rem;
        margin-bottom: 40px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .issues-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .issues-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .issue-card h3 {
        font-size: 1.6rem;
    }

    .issue-card p {
        font-size: 0.95rem;
    }
}
.issue-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.issue-card .issue-icon {
    font-size: 2.5rem;
    color: var(--red); /* highlight color */
    margin-bottom: 15px;
}

.issue-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0a1930;
}

.issue-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsive grid — unchanged */
@media (max-width: 1024px) {
    .issues-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .section-title { font-size: 2.6rem; margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .issues-grid { grid-template-columns: 1fr; gap: 25px; }
    .section-title { font-size: 2.2rem; margin-bottom: 30px; }
    .issue-card h3 { font-size: 1.6rem; }
    .issue-card p { font-size: 0.95rem; }
}

/* =========================
   SMS OPT-IN STYLES
========================= */

.sms-optin {
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.optin-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: white;
  margin-bottom: 12px;
  cursor: pointer;
}

.optin-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.sms-disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}


