/* BODY — NO BACKGROUND IMAGE HERE */
html, body{
  background-color: #fff;
}
body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.site {
  position: relative;
  z-index: 0;
  overflow-y: scroll;
   scroll-snap-type: y mandatory;
    -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}
.site::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, and Opera */
}

.site::before {
  content: "";
  position: fixed;
  inset: 0;

  background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url("/assets/images/Website\ Background\ 3\ Horizontal.png")
    no-repeat center;

  background-size: 80%;
  opacity: 0.12;
  filter: blur(0.5px);

  pointer-events: none;
  z-index: -1;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --dark: #121212;
  --light: #fff;
  --muted: #fff;
  --accent: #fff;
  --max: 1280px;
  --icon-size: 100px;
  --icon-size-lg:350px;
  --royalblue:#0E1135;
}
.h1, .h2, .h3, .h4, .h5, .h6, caption, h1, h2, h3, h4, h5, h6 {
    font-family: Barlow, Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.about-text,
.support-column p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
section{
  min-height: 100svh;
  scroll-snap-align: start;
}

/* EXCEPTION */
.hero-container {
  min-height: unset;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.pillars.center {
  min-height: 100vh;
}

.container.narrow {
  max-width: 680px;

  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* NAV */
.nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 10000;
  transition: transform 0.3s ease;
}
.nav.hidden{
  transform: translateY(-100%);
}
.logo{
  display: flex;
  align-items: center; 
}

.logo-text-group{
  display: flex;
  flex-direction: column;
  align-items: start;   
  justify-content: flex-start;
  gap: 0.65rem;  
  padding-top: 5%;
}
.logo-text {
  color: var(--royalblue);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height:0;
}

.logo-divider {
  width: 36px;
  height: 2px;
  background: #ff7a00;
  opacity: 0.5;
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--royalblue);
  white-space: nowrap;
  margin: 0;               
}

.logo-image{
  width: 108px;
  height: auto;
}

.nav-inner {
  max-width: var(--max);
  margin: auto;
  padding: 0 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.95rem;
}
.nav a,
.dropdown-toggle {
  font-size: 0.95rem;
  line-height: 1;
  padding: 0;
  margin: 0;
}
.nav nav{
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav ul {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}

#nav-toggle:checked ~ .site {
  overflow: hidden;
}

/* Active state */
/* ===== SLIDING NAV PANEL ===== */

.nav {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10000;
}

.nav-panel {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  transition: max-height 0.45s ease;
}

.nav-panel.open {
  max-height: 320px; /* adjust if needed */
}

.panel-content {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  
}

.panel-content.active {
  display: block;
}

.panel-grid {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.01rem;
}

.panel-grid a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.1rem;
}

.panel-grid a:hover {
  color: #ff7a00;
}

/* panel items  */
.panel-item {
  text-decoration: none;
  color: var(--dark);

  padding: 1rem;
}

.panel-item-inner {
  position: relative;
  min-height: 240px;
  background-color: #f0f0f0;
  border-radius: 1px;
  gap: 0.75rem;

  padding: 1.5rem;

  overflow: hidden;

  background-size: cover;
  background-position: center;
  
  filter: grayscale(100%) contrast(0.9) brightness(0.95);
  transition: filter 0.35s ease;
}

.panel-item:hover .panel-item-inner {
  filter: none;
}

.panel-item-inner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.25);
  z-index: 0;
}
.panel-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.panel-description {
  font-size: 0.9rem;
  line-height: 1.35;
  max-width: 85%;

  margin-bottom: 1rem;
}
.panel-main,
.panel-hover {
  position: relative;
  z-index: 1;
}
.panel-main{
  color: #fff;
  align-items: start;

  margin-bottom: 1rem;
}

/* title */

.panel-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );

  color: #fff;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.panel-item:hover .panel-hover {
  transform: translateY(0);
}



/* CTA (hidden by default) */
.panel-cta {
  position: absolute;
  bottom: 0rem;
  /* right: 1rem; */
  
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff7a00;

  letter-spacing: 0.05em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;

  margin-bottom: 1rem;
}

.panel-bg-chieftain{
  background-image: url("../images/icon-3.png");
  background-repeat: no-repeat;
  background-size: 70%;
}
.panel-bg-adam{
  background-image: url("../images/icon-8.png");
  background-repeat: no-repeat;
  background-size: 70%;
}
.panel-bg-white-flag{
  background-image: url("../images/icon-1.png");
  background-repeat: no-repeat;
  background-size: 70%;
}
.panel-bg-emblem{
  background-image: url("../images/icon-5.png");
  background-repeat: no-repeat;
  background-size: 70%;
}
.panel-bg-support{
  background-image: url("../images/icon-6.png");
  background-repeat: no-repeat;
  background-size: 40%;
}
.panel-bg-contact{
  background-image: url("../images/icon-2.png"),
  url("../images/icon-8-black.png");
  background-repeat: no-repeat no-repeat;
  background-position: calc(100% - 20%) center,
    20% center;
  background-size: 40%;

  
}
.panel-bg-story{
  background-image: url("../images/1-48374\ Logo\ Icon.png");
  background-repeat: no-repeat;
  background-size: 40%;
}
/* HOVER STATE */
.panel-item:hover .panel-cta {
  opacity: 1;
  transform: translateY(0);
}

.panel-cta {
  transition-delay: 0.3s;
}
/* selector designs  */
.section-indicator {
  display: none;
  width: 100%;
  background: #ff7a00; 
  pointer-events: none;
}



.section-indicator-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.current-section {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

/* ===== DESKTOP SAFETY RESET ===== */
#nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links li{
  position: relative;
  cursor: pointer;
}

.nav-links li::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;

  width: 0;
  height: 2px;
  background: #ff7a00;

  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-links li:hover::after {
  width: 100%;
}

.mobile-nav{
  display: none;
}

/* hero-img */
.hero-container{
  
  width: 100%;
  height: auto;
  overflow: hidden;
  background: none; 
}

.hero{
  position: relative;
  min-height: 85vh;
  background-color: #e5e5e5; /* fallback layer */
  background-image: url("../images/landing.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.tagline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: white;
  width: 80%;
  text-align: center;
}
.tagline {
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
  margin: 0;
}
/* SCROLL with BULB  */
.scroll-indicator{
  border-bottom: 3px solid white;

  animation: glow 4.5s ease-in-out infinite;

}
.scroll-indicator.bulb {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  
  opacity: 1;
  pointer-events: none;
}

.scroll-indicator.bulb img {
  width: 16px;
  height: auto;
  color: rgba(255, 122, 0,0.8); 
  animation: glow 4.5s ease-in-out infinite;
}

.scroll-indicator.bulb span {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
}

@keyframes glow {
  0%, 50%, 100% {
    opacity: 0.25;
  }
  35%, 65%, 85% {
    opacity: 0.9;
  }
}

/* PILLARS */
.pillars {
  
  padding: 2rem 0;
  display: flex;
  flex-direction: column;

  max-width: 1200px;
  width: 100%;

  margin-inline: auto;
  text-align: center;
}
  .pillars.center {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: var(--max);
    width: 100%;
  }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  width: 100%;
  align-items: start;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
  /* flex: 1 1 0;
  text-align: center;
  max-width: 33.333%; */
}

.pillar span{
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.pillar img {
  max-width: auto;
  margin-bottom: 0.5rem;
}

.pillar h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-top: 1rem;
  color: var(--royalblue);
}


.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
}

.center{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}



/* PROJECTS */

.projects {
  max-width: 1200px;
  padding: 0 1rem;
  margin: 0 auto;
}

.projects h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.slider {
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
  background: #ddd;
}

.project {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  min-width: 100%;
  background: #fafafa;
  border-left: 4px solid #8a6a3f;
  
  /* color: #921212; */
}

.project > div:first-child {
  max-width: 520px; /* optional, but improves reading */
}

.project h3 {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.project p {
  line-height: 1.7;
  max-width: max-content;
  font-size: 2rem;
}

/* icon and button per project slide  */
/* RHS stack */
.slide-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  margin-top: 24px;

  flex-shrink: 0; /* prevents squishing */
}
.slide-actions:hover .slide-icon {
  transform: scale(1.05);
}


.slide-icon {
  transition: transform 0.25s ease;
}
/* ICON */
.slide-icon {
  width: 350px;
  height: auto;
  display: block;
}

/* BUTTON */
.slide-btn {
  padding: 10px 16px;
  font-size: 2rem;
  font-weight: 600;
  background: #ff7a00;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  white-space: nowrap;
}

.slider-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cfcfcf;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dots .dot:hover {
  transform: scale(1.2);
}

.slider-dots .dot.active {
  background: #000;
}


/* GET INVOLVED */
.involved {
  margin-top: 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

/* 1. Create the Triangle Grid */
.triangle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns for the bottom row */
  gap: 1rem 10rem;                 /* Large vertical gap, standard horizontal gap */
  max-width: 1100px;               /* Keeps the triangle shape tight */
  margin: 0 auto;
}

/* 2. Position the Support div at the Head */
.support-column.head {
  grid-column: 1 / span 2;        /* Forces it to take up the full width of the top row */
  justify-self: center;           /* Centers the div itself */
  text-align: center;
  max-width: 450px;               /* Prevents text from stretching too wide */
  margin-bottom: 1.5rem;
}

.small-icon{
  width: var(--icon-size-lg);
  height: var(--icon-size-lg);
}
/* 3. Style the Orange Buttons */
.btn-orange {
  display: inline-block;
  background-color: #ff7a00;      /*  orange accent color */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.8rem 2.5rem;
  border-radius: 20px;            /* Creates the rounded pill shape */
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.btn-orange:hover {
  transform: translateY(-3px);
  background-color: #e66e00;
}

/* 4. Column Alignment */
.support-column {
  display: flex;
  flex-direction: column;
  align-items: center;            /* Centers button and text horizontally */
  text-align: center;
}

.support-column p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark);
}
/* ABOUT */



/* about text  */
h2 > .about-text{

  margin-top: 2rem;
  padding-top: 2rem;
}
.about-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.about-text strong {
  font-weight: 700;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-text {
  letter-spacing: 0.2px;
}
.orange-banner{
  margin-top: 2rem;
  background: #ff7a00; 
  display: inline-block;
  padding: 3rem 3rem;
  border-radius: 4px;
  /* Typography */
  font-size: 1.5rem;
  font-weight: 800;          /* Extra bold */
  text-transform: uppercase;
  /* Depth */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* CONTACT */
.contact {
  display: block;
  min-height: 70vh;
}


/* socials */

.social-icons{
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
  margin: 1rem 0;
  cursor: pointer;
}

.social-icons-icons{
  width: 24px;
  height: 24px;
  fill: #000;
}

.social-icons a{
  padding: 0.25rem;
}

.social-icons a:hover .social-icons-icons{
  fill: #ff7a00;
}

/* Make SVGs White */
.social-icons-icons {
  fill: #fff; /* Solid white */
  transition: fill 0.3s ease;
}

/* Optional: Change color on hover */
.social-icons a:hover .social-icons-icons {
  fill: #ff7a00; /* Turn orange on hover */
}

/* FOOTER */
/* FOOTER CONTAINER */
.footer {
  background: #000; /* Solid black background like the image */
  color: #fff;
  padding: 4rem 0;
  font-size: 0.9rem;
  text-align: left; /* Overriding your previous center align */
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr; /* One wide column, two equal cards */
  gap: 2rem;
  align-items: start;
}

/* LEFT INFO SECTION */
.footer-nav {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal p {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #ccc;
  max-width: 400px;
  margin-bottom: 1rem;
}

.footer-legal .copyright {
  margin-top: 2rem;
  color: #888;
}

/* CARDS COMMON STYLING */
.footer-card {
  height: 250px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.card-content h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

/* CENTER FEATURED CARD */
.featured-card {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url('assets/images/footer-feature.jpg') no-repeat center;
  background-size: cover;
}

.view-more {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* RIGHT COMMUNITY CARD */
.community-card {
  background-color: #e66e00; /
}

.email-input-wrapper {
  display: flex;
  background: #f0f0f0;
  padding: 0.5rem 1rem;
  width: 100%;
}

.email-input-wrapper input {
  background: transparent;
  border: none;
  flex: 1;
  padding: 0.5rem 0;
  outline: none;
}

.email-input-wrapper button {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #0b3c91;
}

/* back to top  */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;

  cursor: pointer;
  z-index: 9999;
}

.back-to-top img {
  width: 16px;
  height: auto;
  opacity: 0.6;
  
}

/* Visible state */
.back-to-top.show {
  opacity: 0.75;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover */
.back-to-top:hover {
  opacity: 1;
}

.back-to-top.at-footer {
  background: #e66e00; 
  border-color: transparent;
}

.back-to-top.at-footer img,
.back-to-top.at-footer svg {
  color: #000; 
}

.full-section {
  min-height: 100vh;
  min-height: 100svh; /* Safari-safe override */
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  scroll-snap-align: start;
}


@supports (-webkit-touch-callout: none) {
  .site::before {
    position: absolute;          /* 🔑 key fix */
    background-attachment: scroll;
    background-size: contain;    /* prevents zoom */
    /* background-repeat: repeat; */
  }
}
/* TABLET MEDIA QUERY */

@media (min-width: 768px) and (max-width: 1024px) {
  html, body {
    height: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body {
    scroll-snap-type: none;
  }
 
  .hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
  }

  .tagline {
    max-width: 90%;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }
  .logo-text{
    font-size: 2rem;
    letter-spacing: 0.5px;
  }
  .logo-tagline {
  font-size: 0.75rem;
  }
}

/* =========================
   MOBILE MEDIA QUERY
   ========================= */
@media (max-width: 768px) {
  /* body setting */
    body {
    background: #fff;
  } 
  body {
    scroll-snap-type: y mandatory;
  }
  section{
    min-height: 80svh;
    scroll-snap-align: start;
  }
    .pillars.center {
        padding: 4rem 1.5rem;
      }

  /* Hide desktop spacing */
  .nav nav {
    position: relative;
  }
  .nav-panel,
  .nav-panel.open,
  .panel-content,
  .nav-links {
    display: none !important;
    max-height: 0 !important;
  }
  .nav-inner {
  padding: 0 0.5rem;
  /* align-items: center; */
}
.logo-text-group{
  display: flex;
  flex-direction: column;
  align-items: flex-start;   
  justify-content: center;
  gap: 0.1;  
  padding-top: 20px;
}
  .logo-image {
    content: url("../images/1-48374\ Logo\ Icon.png");
    width: 96px;
    height: auto;
  }
  .logo-text{
    font-size: 1rem;
    letter-spacing: 0.5px;
  }
  .logo-divider{
    width: 72px;
    height: 3px;
    opacity: 0.2;
  }
  .logo-tagline {
  /* padding-top: 10px; */
  white-space: nowrap;
  font-weight: normal;
  color: var(--royalblue);
}
.logo-tagline {
  font-size: 0.50rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--royalblue);
  white-space: nowrap;
  margin: 0;               
}
  /* Hamburger toggle */
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .nav-toggle-label span {
    width: 22px;
    height: 2px;
    background: var(--dark);
  }

      /* ===== MOBILE NAV DRAWER ===== */

    .mobile-nav {
      display: block;

      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: #ff7a00; 
      color: #fff;

      transform: translateY(-100%);
      transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);

      z-index: 20000;
      padding: 1.5rem;

      will-change: transform;

      /* Prevent content showing through */
      overflow: hidden;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    .mobile-nav.open {
      transform: translateY(0);
    }

    .mobile-close {
      background: none;
      border: none;
      color: #fff;
      font-size: 2rem;
      position: absolute;
      top: 1rem;
      right: 1.25rem;
      cursor: pointer;
    }

    /* Menu */
    .mobile-menu {
      margin-top: 4rem;
      list-style: none;
      padding: 0;
    }

    .mobile-item {
      border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    /* Accordion trigger */
    .mobile-trigger {
      width: 100%;
      background: none;
      border: none;
      color: #fff;

      display: flex;
      justify-content: space-between;
      align-items: center;

      font-size: 1.25rem;
      padding: 1rem 0;
      cursor: pointer;
    }

    /* Submenu */
    .mobile-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .mobile-submenu a {
      display: block;
      padding: 0.5rem 0 0.75rem 1rem;
      font-size: 0.95rem;
      color: #fff;
      text-decoration: none;
      opacity: 0.9;
    }

    /* Open state */
    .mobile-item.open .mobile-submenu {
      max-height: 300px;
    }

    .mobile-item.open .icon {
      content: "×";
    }

    /* Standalone links */
    .mobile-link a {
      display: block;
      padding: 1.25rem 0;
      font-size: 1.25rem;
      color: #fff;
      text-decoration: none;
    }

    /* NEW TEMPORARY */
  
      /* Mobile nav container */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Each top-level row */
  .mobile-item {
    width: 100%;
    display: block;
  }

  /* Clickable row */
  .mobile-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: none;
    border: none;

    padding: 1.25rem 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;

    cursor: pointer;
  }

  /* Accordion content */
  .mobile-submenu {
    width: 100%;
    display: block;

    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
  }

  .mobile-submenu li {
    width: 100%;
  }

  .mobile-submenu a {
    display: block;
    width: 100%;

    padding: 0.5rem 0 0.75rem 1.25rem;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
  }
    /* END of NEW TEMPORARY */
  /* Hide links by default */
  .nav-links {
    display: none;
  }
    /* hero */
  .tagline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: white;
  width: 80%;
  text-align: center;
}
  .tagline {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    margin: 0;
    text-wrap: wrap;
  }
  .projects h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
  .project {
    flex-direction: column;
    align-items: center;
  }
  .project h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
  .slide-actions {
    align-items: center;
    margin-top: 16px;
  }

  .slide-icon {
  max-width: 100%;
  height: auto;
  
}
.involved {
  margin-top: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.orange-banner{
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min-content;
  flex-wrap: wrap;
  padding: 3rem 1rem;
}

.small-icon{
  width: var(--icon-size);
  height: var(--icon-size);
}

.small-icon h2 p {
  padding: 1rem;
  margin: 1rem;
}
.support{
  position: unset;
  top: 1rem;

  border-bottom: 1px solid rgba(173, 6, 6, 0.1);
}
  .about{
    height: max-content;
    padding: 3rem 1rem;
    border-bottom: 1px solid rgba(167, 14, 14, 0.1);
  }
  .contact{
    min-height: max-content; 
  }
  .contact .card{
    background: #fff;
    border-radius: 12px;
  }

  /* Pillars section spacing */

  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pillar {
    max-width: 360px;
    margin: 0 auto;
  }

  /* Icon sizing */
  .pillar img {
    width: var(--icon-size);
    margin-bottom: 0.75rem;
  }

  /* Headings */
  .pillar h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }

  /* Body text */
  .pillar p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .center {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-items: center;
  padding: 0 auto;
  }

  .cta::before{
    margin-top: 1rem;
  }
  .footer-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-inner.container{
    display: flex;
    flex-direction: column;
  }
  .footer {
  scroll-snap-align: none;
}
  .featured-card{
    display: none;
  }
  .split {
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      flex-direction: column;
      flex-wrap: wrap;
    }

  .triangle-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
  }
  .support-column{
    padding: 2.5rem 2rem;
    width: 100%;
    /* max-width: 100%; */
    max-width: 450px;
    
  }
}
