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

:root {
  --color-bg:         #0a0a0a;
  --color-surface:    #141414;
  --color-surface-2:  #1c1c1c;
  --color-border:     #2a2a2a;
  --color-text:       #f0ede8;
  --color-muted:      #888888;
  --color-accent:     #c8392b;
  --color-accent-2:   #e85d4a;
  --color-warning:    #e8a020;
  --color-safe:       #2a9d5c;
  --font-sans:        'Inter', system-ui, sans-serif;
  --font-serif:       'DM Serif Display', Georgia, serif;
  --max-w:            1120px;
  --radius:           10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background-color: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.emergency-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 10px;
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 40px;
  z-index: 999;
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: relative;
}

.nav-logo img {
  width: 150px;
  height: auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.clean {
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s;
}

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

.nav-cta {
  background-color: var(--color-accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background-color 0.2s !important;
}

.nav-cta:hover {
  background-color: var(--color-accent-2) !important;
}/* ===== FACEBOOK ICON ===== */
.facebook-icon {
  position: fixed; /* Keeps the icon fixed on the screen */
  right: 10px; /* Adjusts the distance from the right side */
  top: 50%; /* Vertically centers the icon */
  transform: translateY(-50%); /* Adjusts for perfect vertical centering */
  font-size: 20px;
  color: #fff;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1877F2;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
}

.facebook-icon:hover {
  background-color: #0a5fd8;
  color: #fff;
}

/* For mobile screens, position adjustments */
@media (max-width: 768px) {
  .facebook-icon1 {
    left: 15px; /* Position on the left for mobile */
    right: unset; /* Unset the right property */
  }
}
/* ===== DESKTOP SPECIFIC STYLES ===== */
@media (min-width: 769px) {
  .facebook-icon {
    right: 75px; /* Position on the right side for desktop */
    left: unset; /* Unset the left property to avoid conflicts */
    top: 50%; /* Vertically center the icon */
    transform: translateY(-50%); /* Adjust for perfect vertical centering */
  }
}

/* ===== HAMBURGER ===== */
/* ===== HAMBURGER ===== */
.hamburger {
  display: none; /* Hidden by default */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 2; /* Ensures it's above other elements */
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile-specific styling */
/* For mobile screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex; /* Show hamburger menu on mobile */
    position: fixed; /* Fix it to the screen */
    left: 275px; /* Position it on the right side */
    top: 50%; /* Vertically center the hamburger */
    transform: translateY(-50%); /* Perfect vertical centering */
  }

  .nav-links {
    display: none; /* Hide the nav links on mobile by default */
    position: absolute;
    top: 60px; /* Adjust this to prevent overlapping with other content */
    left: 0;
    width: 100%;
    background-color: #000; /* Optional: change background color for mobile */
    padding: 20px;
  }

  .nav-links.active {
    display: flex; /* Show nav links when the hamburger is clicked */
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}


/* ===== HERO ===== */
.hero {
  background-image: url("CleanCanada (16).jpg");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 60px;
  text-align: left;
}

.hero-content {
  display: flex; /* Use flexbox for easy centering */
  flex-direction: column; /* Stack elements vertically */
  justify-content: center; /* Vertically center the content */
  align-items: center; /* Horizontally center the content */
  text-align: center; /* Ensure text is also centered */
  height: 100vh; /* Ensure the hero content takes full height */
  padding: 0 20px; /* Optional: Add padding for spacing */
}

/* ===== HERO TAG #CLEANCANADA FOR DESKTOP ===== */
.hero-tag-desktop {
  display: block; /* show on desktop */
  width: fit-content;
  margin: 0 auto 28px;
  background-color: rgba(200, 57, 43, 0.15);
  color: var(--color-accent-2);
  border: 1px solid rgba(200, 57, 43, 0.3);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
/* ===== HERO TAG #CLEANCANADA FOR MOBILE ===== */
.hero-tag-mobile {
  display: none; /* hide on desktop */
  width: fit-content;
  margin: 0 auto 28px;
  background-color: rgba(200, 57, 43, 0.15);
  color: var(--color-accent-2);
  border: 1px solid rgba(200, 57, 43, 0.3);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .hero-tag-desktop { display: none; }
  .hero-tag-mobile  { display: block; }
}


/* ===== SHOW DESKTOP #CLEANCANADA ONLY ===== */
@media (min-width: 769px) {
  .hero-tag-desktop {
    display: block; /* Show on desktop */
  }
  .hero-tag-mobile {
    display: none; /* Hide on desktop */
  }
}

//* ===== HERO TAG MOBILE ===== */
/* ===== HERO TAG MOBILE ===== */
.hero-tag-mobile {
  display: block; /* Show on mobile */
  position: relative; /* Enable positioning for better control */
  top: 20px; /* Adjust this value to move the tag up or down */
  margin-bottom: 20px; /* Add some space below */
  background-color: rgba(200, 57, 43, 0.15);
  color: var(--color-accent-2);
  border: 1px solid rgba(200, 57, 43, 0.3);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  text-align: center;
}

/* ===== SHOW MOBILE HERO TAG ONLY ===== */
@media (max-width: 768px) {
  .hero-tag-desktop {
    display: none; /* Hide on mobile */
  }
  .hero-tag-mobile {
    display: block; /* Show on mobile */
    top: 20px; /* Adjust the #CleanCanada tag upwards */
  }
}
/* ===== SHOW MOBILE HERO TAG ONLY ===== */
@media (max-width: 768px) {
  .hero-tag-desktop {
    display: none; /* Hide on mobile */
  }
  .hero-tag-mobile {
    display: block; /* Show on mobile */
    margin-bottom: 420px; /* Move the #CleanCanada tag up */
  }
}

.hero h1 em {
  font-style: italic;
  color: var(--color-accent-2);
}
/* ===== Hero Buttons Desktop Only ===== */
.hero-actions-desktop {
  display: flex;
  gap: 20px;
  font-size: 16px;
  flex-wrap: wrap;
  justify-content: center;
}



/* ===== Hero Buttons (Mobile Only) ===== */
@media (max-width: 768px) {
  .hero-actions-desktop {
    display: none; /* Hide desktop buttons on mobile */
  }
  .hero-actions-mobile {
    display: flex; /* Enable flexbox */
    gap: 20px; /* Add space between buttons */
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: flex-start; /* Align buttons to the left or right */
    margin-bottom: 60px;
  }
}

/* For larger screens, ensure .hero-actions-mobile is hidden */
@media (min-width: 769px) {
  .hero-actions-mobile {
    display: none; /* Hide the actions on desktop */

  }
}

.hero-stats {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color 0.2s;
}

.stat-card:hover { border-color: var(--color-accent); }

.stat-card .stat-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--color-accent-2);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.stat-card .stat-label {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
}

.stat-card .stat-label strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none

}
.btn-mobile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none

}
/* Center the button using flexbox */
/* Default button for larger screens (hidden on mobile) */
.btn-mobile-follow {
  display: none;
}

@media (max-width: 767px) {
  .btn-mobile-follow {
    display: block !important;
    margin: 8px auto 0 auto !important;
    text-align: center;
    position: static !important; /* removes any fixed/absolute positioning */
    left: unset !important;
    bottom: unset !important;
    width: fit-content !important;
  }
}
.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-accent-2);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  border-color: var(--color-text);
  background-color: var(--color-surface);
}

.btn-white {
  background-color: #fff;
  color: var(--color-accent);
  font-weight: 700;
}

.btn-white:hover {
  background-color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

.btn-ghost {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 2000;
}

/* ===== VIDEO ===== */
.video-container {
  margin-top: 20px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== PROTEST INFORMATION ===== */
#protests {
  padding: 20px 24px;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-top: 20px;
  margin-bottom: 6px;
}

.section-title {
  font-family: Arial, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-text);
}

.section-title1 {
  font-family: Arial, sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 640px;
  margin-bottom: 56px;
}
.section-desc-learn {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 640px;
  margin: 0 auto 56px auto; /* auto on left/right centers it */
  text-align: center;
}

.event-calendar {
  margin-bottom: 40px;
}

.calendar-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== FACT LIST ===== */
.fact-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding-top: 20px;
}

.fact-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fact-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.fact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: rgba(200, 57, 43, 0.12);
  border: 1px solid rgba(200, 57, 43, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.fact-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.fact-text p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}
/* Desktop - 2 columns */
.myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

/* Mobile - 1 column */
@media (max-width: 768px) {
  .myths-grid {
    grid-template-columns: 1fr;
  }

  .myths-grid .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
  }

  .myths-grid .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }

  .myth-question {
    font-size: 13px;
    min-width: 0;
    word-break: break-word;
  }
}
.supply-chain {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 80px 24px;
}

.chain-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

/* Horizontal line connecting steps */
.chain-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), var(--color-accent-2));
  z-index: 0;
}

.chain-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.chain-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-bg);
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(200, 57, 43, 0.3);
}

.chain-body {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  transition: border-color 0.2s;
}

.chain-step:hover .chain-body {
  border-color: var(--color-accent);
}

.chain-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-2);
  margin-bottom: 8px;
}

.chain-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.chain-body p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.chain-body p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .chain-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chain-steps::before { display: none; }

  .chain-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 0;
  }

  .chain-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 0;
  }
}

  .chain-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 0;
  }
}
/* Stack on mobile */
@media (max-width: 768px) {
  .myths-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== WHAT IS FENTANYL ===== */
.what-section {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.what-grid {
  display: grid;

  gap: 60px;
  align-items: start;
}
.facts-image-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* stats on left, image on right */
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}

.facts-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Stack on mobile */
@media (max-width: 768px) {
  .facts-image-container {
    grid-template-columns: 1fr;
  }
}
.what-facts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.info-block {
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 12px;
}

.info-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
}

.info-block p + p { margin-top: 14px; }

.info-block strong { color: var(--color-text); }

/* ===== SUPPLY CHAIN ===== */
.supply-chain {
  font-family: Arial, sans-serif;
  background-color: #111;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
  color: #fff;
}

.supply-chain h2 {
  font-size: 28px;
  color: #f44336;
  text-align: center;
  margin-bottom: 20px;
}

.step {
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 2px solid #f44336;
}

.step-content {
  display: none;
  padding: 0 24px 20px;
  color: var(--color-muted);
}

.step[aria-expanded="true"] .step-content {
  display: block;
}

.step-title {
  cursor: pointer;
  font-size: 18px;
  color: #e63946;
  background: none;
  border: none;
  padding: 10px;
  text-align: left;
  width: 100%;
}

.step-title:hover {
  background-color: #f1f1f1;
}

.chevron {
  font-size: 20px;
  margin-right: 10px;
}

.step[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.step-content p {
  margin: 10px 0;
  line-height: 1.6;
}

/* ===== OVERDOSE SIGNS ===== */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sign-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.sign-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background-color: var(--color-accent);
  border-radius: 3px 0 0 3px;
}

.sign-card:hover {
  border-color: rgba(200,57,43,0.4);
  transform: translateY(-2px);
}

.sign-card .sign-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.sign-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

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

/* ===== NALOXONE ===== */
.naloxone-section {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 32px;
}

.step-item:last-child { padding-bottom: 0; }

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background-color: var(--color-border);
}

.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-item .step-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  margin-top: 8px;
}

.step-item .step-content p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.naloxone-info {
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 36px;
}

.naloxone-info h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.naloxone-info p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.naloxone-tag {
  display: inline-block;
  background-color: rgba(42, 157, 92, 0.12);
  color: #4eca7f;
  border: 1px solid rgba(42,157,92,0.25);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ===== RISK FACTORS ===== */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.risk-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
}

.risk-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.risk-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.risk-card ul li {
  font-size: 14px;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.risk-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ===== PREVENTION ===== */
.prevention-section {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.prevention-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prev-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.2s;
}

.prev-card:hover {
  border-color: rgba(200,57,43,0.35);
  transform: translateY(-2px);
}

.prev-card .prev-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-color: rgba(200, 57, 43, 0.1);
  border: 1px solid rgba(200,57,43,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.prev-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.prev-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ===== HELP / RESOURCES ===== */
.help-section {
  background-color: var(--color-bg);
  padding: 60px 24px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.help-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
}

.help-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.help-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

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

.help-hotline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent-2);
  letter-spacing: -0.02em;
  margin-top: 10px;
}

.help-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
  margin-top: 12px;
}

.help-link:hover {
  color: var(--color-text);
}

/* ===== MYTH VS FACT ===== */
.myths-section {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.myths-section-learn {
  background-color: black;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.myth-image-container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}

.myth-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.myth-image {
  flex: 1;
  max-width: 400px;
}

.myth-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.myth-item {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.myth-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  text-align: left;
}

.myth-header:hover { background-color: var(--color-surface); }

.myth-badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.myth-badge.myth-tag {
  background-color: red;
  color: white;
  border: 1px solid rgba(200,57,43,0.25);
}

.myth-badge.fact-tag {
  background-color: rgba(42,157,92,0.12);
  color: #4eca7f;
  border: 1px solid rgba(42,157,92,0.25);
}

.myth-question {
  font-size: 15px;
  font-weight: 600;
  flex: 1;
}

.myth-chevron {
  font-size: 18px;
  color: var(--color-muted);
  transition: transform 0.25s;
}

.myth-item.open .myth-chevron { transform: rotate(180deg); }

.myth-body {
  display: none;
  padding: 0 24px 20px;
}

.myth-body p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

.myth-item.open .myth-body { display: block; }

/* ===== CTA ===== */
.cta-section {
  background-color: var(--color-accent);
  padding: 80px 24px;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 56px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--color-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--color-text); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-credit {
  font-size: 13px;
  color: var(--color-muted);
}

.footer-credit a {
  color: var(--color-accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 60px;
    left: 120px;
    right: 0;
    z-index: 2;
  }

  .nav-links a {
    font-size: 18px;
    color: #fff;
  }

  .hamburger {
    display: flex;
  }


  .hero {
    background-image: url("CleanCanada (22).jpg");
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
    text-align: center;
    position: relative;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
  }

  .hero-stats {
    flex: 1;
    width: 100%;
    max-width: unset;
  }

  .hero-actions-mobile {
    justify-content: center;

  }

  /* Ensure it doesn't appear on desktops */
  /* Hide on desktop */
  .mobile-image {
    display: block;
    /* ← controls the gap from buttons */
    width: 100%;      /* optional: fills the container */
  }

  @media (min-width: 768px) {
    .mobile-image {
      display: none;
    }
  }

  /* Show + add gap on mobile */
  @media (max-width: 767px) {
    .mobile-image {
      position: relative;
      display: block;
    }
  }

  .what-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .what-info {
    text-align: center;
    padding: 20px;
  }

  .video-container {
    width: 100%;
    margin: 10px auto;
  }

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

  .naloxone-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prevention-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .fact-list {
    grid-template-columns: 1fr 1fr;
  }

  .myth-image-container {
    flex-direction: column;
    align-items: center;
  }

  .myth-image {
    margin-top: 20px;
    max-width: 100%;
  }

  .supply-chain {
    padding: 15px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-content {
    font-size: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 601px) {
  .mobile-image {
    display: none;
  }

  .what-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .video-container {
    width: 100%;


  }

  .video-container iframe {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 16px;
  }

  section {
    padding: 60px 16px;
  }

  .hero-actions-desktop {
    flex-direction: column;
    gap: 10px;
    margin-top: 250px; /* Push buttons down */
    position: relative; /* Ensure it's within the normal document flow */
  }



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

  .prevention-cards {
    grid-template-columns: 1fr;
  }

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

  .fact-list {
    grid-template-columns: 1fr;
  }
}
/* ============================================================
   about-sections.css — CleanCanada About Page
   Mobile-first, dark theme, matches main site aesthetic
   ============================================================ */

/* ── TOKENS (extend your existing CSS vars) ── */
:root {
  --cc-red:        #e02020;
  --cc-red-dim:    rgba(224, 32, 32, 0.15);
  --cc-red-glow:   rgba(224, 32, 32, 0.35);
  --cc-white:      #f4f4f4;
  --cc-off-white:  #c8c8c8;
  --cc-bg:         #0a0a0a;
  --cc-surface:    #111111;
  --cc-surface-2:  #1a1a1a;
  --cc-border:     rgba(255,255,255,0.08);
  --cc-border-red: rgba(224,32,32,0.4);
  --cc-font-head:  'DM Serif Display', Georgia, serif;
  --cc-font-body:  'Inter', system-ui, sans-serif;
  --cc-radius:     12px;
  --cc-radius-lg:  20px;
  --cc-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── SHARED LAYOUT ── */
.about-section {
  width: 100%;
  padding: 80px 20px;
  background: var(--cc-bg);
}

.about-container {
  max-width: 860px;
  margin: 0 auto;
}

/* ── SHARED TYPOGRAPHY ── */
.section-label {
  display: inline-block;
  font-family: var(--cc-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-red);
  border: 1px solid var(--cc-border-red);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 18px;
}
.section-label.light { color: #fff; border-color: rgba(255,255,255,0.35); }

.section-heading {
  font-family: var(--cc-font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cc-white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-body {
  font-family: var(--cc-font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cc-off-white);
  max-width: 660px;
  margin-bottom: 40px;
}

/* ══════════════════════════════════════════
   ABOUT HERO
══════════════════════════════════════════ */
.about-hero {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  background: var(--cc-bg);
  border-bottom: 1px solid var(--cc-border);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(224,32,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
}

.about-eyebrow {
  display: inline-block;
  font-family: var(--cc-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cc-red);
  margin-bottom: 20px;
}

.about-title {
  font-family: var(--cc-font-head);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  color: var(--cc-white);
  line-height: 1.05;
  margin-bottom: 22px;
}

.about-subtitle {
  font-family: var(--cc-font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--cc-off-white);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.25);
  font-size: 1.3rem;
  animation: bounceDown 2.2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   ORIGIN / STARTED SECTION
══════════════════════════════════════════ */
.origin-section {
  background: var(--cc-bg);
}

/* ── VIDEO WRAPPER (responsive 16:9) ── */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--cc-radius-lg);
  border: 1px solid var(--cc-border);
  background: #000;
  margin-bottom: 32px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(224,32,32,0.12);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--cc-radius-lg);
}

/* red glow accent on origin video */
.origin-section .video-wrapper::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--cc-radius-lg);
  border: 1px solid rgba(224,32,32,0.25);
  pointer-events: none;
}

.origin-quote {
  font-family: var(--cc-font-head);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--cc-white);
  border-left: 3px solid var(--cc-red);
  padding: 16px 24px;
  background: var(--cc-red-dim);
  border-radius: 0 var(--cc-radius) var(--cc-radius) 0;
  line-height: 1.55;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   LETTER SECTION
══════════════════════════════════════════ */
.letter-section {
  background: var(--cc-surface);
  border-top: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
}

.letter-card {
  background: var(--cc-surface-2);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.letter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--cc-border);
  background: rgba(255,255,255,0.025);
  flex-wrap: wrap;
  gap: 10px;
}

.letter-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.letter-tag {
  font-family: var(--cc-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-red);
}

.letter-date {
  font-family: var(--cc-font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.letter-seal {
  font-size: 2rem;
  opacity: 0.2;
}

/* ── Letter Body ── */
.letter-body {
  font-family: var(--cc-font-body);
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--cc-off-white);
  padding: 28px 28px 0;
  max-height: 260px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
}

.letter-body p { margin-bottom: 1.1em; }
.letter-body p:last-child { margin-bottom: 0; }

/* fade-out gradient when collapsed */
.letter-body:not(.expanded)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--cc-surface-2));
  pointer-events: none;
}

.letter-body.expanded {
  max-height: 2400px; /* large enough for any letter */
  padding-bottom: 0;
}
.letter-body.expanded::after { display: none; }

/* ── Letter Footer ── */
.letter-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-top: 1px solid var(--cc-border);
  flex-wrap: wrap;
}

.letter-download-btn,
.letter-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cc-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--cc-transition);
  text-decoration: none;
  border: none;
}

.letter-download-btn {
  background: var(--cc-red);
  color: #fff;
}
.letter-download-btn:hover { background: #c01818; transform: translateY(-1px); }

.letter-expand-btn {
  background: transparent;
  color: var(--cc-off-white);
  border: 1px solid var(--cc-border);
}
.letter-expand-btn:hover { border-color: rgba(255,255,255,0.25); color: #fff; }

/* ══════════════════════════════════════════
   RADIO SECTION
══════════════════════════════════════════ */
.radio-section {
  background: var(--cc-bg);
}

.radio-video {
  /* slightly different shade to distinguish from origin video */
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.radio-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.radio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cc-font-body);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--cc-off-white);
  background: var(--cc-surface-2);
  border: 1px solid var(--cc-border);
  border-radius: 40px;
  padding: 8px 16px;
}

.badge-icon { font-size: 1rem; }

/* ══════════════════════════════════════════
   PROPOSED SOLUTION
══════════════════════════════════════════ */
.solution-section {
  background: var(--cc-surface);
  border-top: 1px solid var(--cc-border);
  border-bottom: 1px solid var(--cc-border);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.solution-card {
  background: var(--cc-bg);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--cc-transition), transform var(--cc-transition);
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--cc-red);
  opacity: 0;
  transition: opacity var(--cc-transition);
}

.solution-card:hover {
  border-color: var(--cc-border-red);
  transform: translateX(4px);
}
.solution-card:hover::before { opacity: 1; }

.solution-number {
  font-family: var(--cc-font-head);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 14px; right: 20px;
  user-select: none;
}

.solution-card-title {
  font-family: var(--cc-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cc-white);
  margin-bottom: 10px;
  position: relative;
}

.solution-card-body {
  font-family: var(--cc-font-body);
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(200,200,200,0.75);
  position: relative;
}

/* ══════════════════════════════════════════
   JOIN THE MOVEMENT CTA
══════════════════════════════════════════ */
.join-section {
  background: var(--cc-red);
  background: linear-gradient(135deg, #b80000 0%, #e02020 55%, #c41010 100%);
  padding-top: 90px;
  padding-bottom: 90px;
}

.join-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 860px;
}

.join-heading {
  font-family: var(--cc-font-head);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.join-body {
  font-family: var(--cc-font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 0;
}

.join-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--cc-font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: all var(--cc-transition);
  letter-spacing: 0.01em;
}

.join-btn-primary {
  background: #fff;
  color: var(--cc-red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.join-btn-primary:hover { background: #ffe8e8; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

.join-btn-secondary {
  background: rgba(0,0,0,0.25);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
}
.join-btn-secondary:hover { background: rgba(0,0,0,0.4); border-color: #fff; transform: translateY(-2px); }

.join-btn-event {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.join-btn-event:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≥600px)
══════════════════════════════════════════ */
@media (min-width: 600px) {

  .about-section { padding: 100px 40px; }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .join-btn { flex: 1 1 auto; min-width: 180px; }

  .letter-footer { flex-wrap: nowrap; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — DESKTOP (≥900px)
══════════════════════════════════════════ */
@media (min-width: 900px) {

  .about-section { padding: 120px 60px; }

  .join-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }

  .join-text { flex: 1; }

  .join-actions {
    flex: 0 0 260px;
    flex-direction: column;
    align-self: center;
  }

  .join-btn { flex: none; width: 100%; }
}

/* ══════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .about-hero-scroll-hint { animation: none; }
  .solution-card,
  .join-btn { transition: none; }
}

.petition-img-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.petition-img-overlay .btn-white {
  font-size: 1.2rem;
  padding: 16px 48px;
}

@media (min-width: 600px) {
  .petition-img-overlay .btn-white {
    font-size: 1.5rem;
    padding: 20px 70px;
  }
}
.petition-img-overlay .btn-white {
  margin-top: 60px;
}
.white{
  color: white;
}

.hashtag {
  font-weight: bold;  /* Makes the # bold */
  font-size: 1em;    /* Increases the size of the # symbol */
}

.team {
  color: var(--color-accent-2);         /* Makes the word TEAM red */
}
.letter-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.letter-img:hover { opacity: 0.85; }

.letter-body:not(.expanded)::after { display: none; }

/* LIGHTBOX */
.letter-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.letter-lightbox.open { display: flex; }

.letter-lightbox-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
}

.letter-lightbox-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.letter-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  background: var(--cc-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
