/* ================= BASE ================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root{
  /* === BACKGROUNDS === */
  --black: #5f73aa;              /* secondary blue (used for glow) */
  --black-soft: #0f172a;         /* main page background */

  /* === ACCENTS (bright) === */
  --gold-light: #dee3ee;         /* primary accent (buttons, highlights) */
  --gold-deep: #ecedf0;          /* hover accent */

  /* === TEXT === */
  --text-primary: #fcfbfb;
  --text-muted: rgba(255,255,255,0.78);

  /* === UI === */
  --border: rgba(255,255,255,0.16);
  --card: rgba(222,227,238,0.10);
}

body{
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black-soft);
  color: var(--text-primary);
  line-height: 1.65;
}

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

.container{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.35rem;
}

h1,h2,h3{
  font-family: "Playfair Display", serif;
  letter-spacing: 0.2px;
}

.gold{ color: var(--gold-light); }
.muted{ color: var(--text-muted); }

/* ================= NAV ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,23,42,0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  gap: 1rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  padding: 0px;
}

.brand-text{ display: grid; line-height: 1.05; }
.brand-name{ font-weight: 600; letter-spacing: 0.22em; font-size: 0.95rem; }
.brand-sub{
  color: rgba(222,227,238,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav{
  display: flex;
  gap: 1.1rem;
  font-size: 0.88rem;
  color: rgba(252,251,251,0.88);
}

.main-nav a{
  position: relative;
  padding: 0.2rem 0;
  opacity: 0.9;
}

.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--gold-light);
  transition: width 0.22s ease;
}

.main-nav a:hover{ opacity: 1; }
.main-nav a:hover::after{ width: 100%; }

.nav-cta{ white-space: nowrap; }

/* ================= BUTTONS ================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.btn:hover{ transform: translateY(-1px); }

.btn-gold{
  background: var(--gold-light);
  color: #0f172a;
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 18px 45px rgba(222,227,238,0.18);
}

.btn-gold:hover{
  background: var(--gold-deep);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline{
  background: rgba(222,227,238,0.08);
  color: var(--gold-light);
  border-color: rgba(222,227,238,0.45);
}

.btn-outline:hover{
  background: rgba(222,227,238,0.16);
  border-color: rgba(222,227,238,0.60);
}

.btn-outline-light{
  background: rgba(252,251,251,0.06);
  color: var(--text-primary);
  border-color: rgba(252,251,251,0.25);
}

.btn-outline-light:hover{
  background: rgba(252,251,251,0.12);
  border-color: rgba(252,251,251,0.45);
}

/* ================= HERO ================= */
/* HERO with background image (keeps your overlay + theme) */
/* Put this in style.css (replace your current .hero + .hero-overlay if needed) */

.hero{
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);

  /* background image + your gradients */
  background:
    url("./ngobg.JPG");  

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* use 'fixed' only if you really want parallax */
}

/* Dark/blue overlay to keep text readable */
.hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15,23,42,0.72),
    rgba(15,23,42,0.30),
    rgba(15,23,42,0.72)
  );
  opacity: 1;
}

/* Keep content above overlay */
.hero-content{ position: relative; z-index: 1; }

.hero-content{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.2rem;
  padding: 5.2rem 0 5rem;
}

.kicker{
  color: rgba(222,227,238,0.88);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}

.hero-text h1{
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.highlight{ color: var(--gold-light); }

.hero-sub{
  max-width: 38rem;
  color: rgba(252,251,251,0.88);
  font-size: 0.98rem;
}

.hero-actions{
  margin: 2.2rem 0 2.2rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.pillars{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.pillar-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--card);
  border-radius: 14px;
  padding: 1rem;
}

.pillar-title{
  font-family: "Playfair Display", serif;
  color: var(--gold-light);
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.pillar-desc{
  color: rgba(252,251,251,0.78);
  font-size: 0.85rem;
}

.hero-side-card{
  align-self: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(222,227,238,0.08);
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.hero-side-card h2{
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.mini-divider{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 1rem 0;
}

.hero-counters{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.counter-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(222,227,238,0.08);
  border-radius: 14px;
  padding: 0.85rem;
}

.counter-number{
  display: block;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-light);
}

.counter-label{
  display: block;
  font-size: 0.78rem;
  color: rgba(252,251,251,0.72);
}

.tiny-note{
  font-size: 0.78rem;
  color: rgba(252,251,251,0.68);
  margin-top: 0.7rem;
}

/* ================= SECTIONS ================= */
.section{
  padding: 5.5rem 0;
  background: var(--black-soft);
}

.section-alt{
  padding: 5.5rem 0;
  background: #0b1226;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.section-title{
  text-align: center;
  font-size: 2.05rem;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
}

.section-subtitle{
  text-align: center;
  color: rgba(252,251,251,0.72);
  max-width: 44rem;
  margin: 0 auto 2.8rem;
  font-size: 0.95rem;
}

.lead{
  font-size: 1.02rem;
  color: rgba(252,251,251,0.92);
  margin-bottom: 1rem;
}

/* ================= PROGRAM CARDS ================= */
.program-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.program-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--card);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.program-card h3{
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.45rem;
}

.program-card p{
  color: rgba(252,251,251,0.78);
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
}

.program-card ul{
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.1rem;
}

.program-card li{
  color: rgba(252,251,251,0.86);
  font-size: 0.9rem;
}

.text-link{
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ================= LAYOUTS ================= */
.two-column{
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.7rem;
  align-items: center;
}
.two-column.reverse{
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 3fr);
}

.section-text h2{
  color: var(--gold-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.actions-row{
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

/* ================= LISTS ================= */
.list-check{
  list-style: none;
  margin: 1rem 0 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.list-check li{
  position: relative;
  padding-left: 1.3rem;
  color: rgba(252,251,251,0.9);
  font-size: 0.92rem;
}

.list-check li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 600;
}

/* ================= BOXES / STATUS ================= */
.impact-box{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(222,227,238,0.10);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  margin: 1.2rem 0 0.6rem;
}

.status-pill{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(222,227,238,0.08);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.8rem;
  margin-top: 0.9rem;
}

.status-pending{ color: rgba(222,227,238,0.85); }

/* ================= MEDIA CARDS ================= */
.image-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--card);
  border-radius: 18px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.image-placeholder{
  height: 240px;
  border-radius: 14px;
  border: 1px dashed rgba(222,227,238,0.40);
  background: radial-gradient(circle at 30% 30%, rgba(222,227,238,0.20), transparent 55%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.85rem;
  color: rgba(252,251,251,0.85);
  font-weight: 500;
}

.image-caption{
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: rgba(252,251,251,0.70);
}

/* ================= PROGRESS ================= */
.progress-wrapper{ margin: 1rem 0 0.85rem; color: rgba(252,251,251,0.85); }

.progress-bar{
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(252,251,251,0.14);
  overflow: hidden;
  margin-top: 0.45rem;
  border: 1px solid rgba(252,251,251,0.16);
}
.progress-bar.small{ height: 8px; }

.progress-fill{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(222,227,238,0.85), rgba(236,237,240,0.95));
  transition: width 0.4s ease;
}

/* ================= MASJID GRID ================= */
.masjid-grid{
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
  gap: 1.3rem;
  margin-top: 2rem;
}

.masjid-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--card);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.masjid-card h3{ color: var(--gold-light); margin-bottom: 0.55rem; font-size: 1.4rem; }
.masjid-card h4{ margin-top: 0.9rem; margin-bottom: 0.4rem; color: rgba(252,251,251,0.92); }

.disc{ margin-left: 1.2rem; }
.disc li{ margin: 0.3rem 0; }
.need-progress{ margin-top: 0.8rem; }

.masjid-card.secondary{
  background: rgba(222,227,238,0.12);
  border-color: rgba(255,255,255,0.16);
}

/* ================= TESTIMONIALS ================= */
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.testimonial-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--card);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

.quote-mark{
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: rgba(222,227,238,0.22);
  line-height: 1;
}

.testimonial-card h3{
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

/* ================= LEDGER ================= */
.dashboard-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: 2rem;
  margin-top: 2.8rem;
}

.dashboard-embed iframe{
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(222,227,238,0.06);
}

/* ================= DONATE ================= */
.donate-section{
  padding: 5rem 0;
  background: linear-gradient(180deg, #0f172a, #0b1226);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.donate-container{
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.8rem;
  align-items: center;
}

.donate-steps{
  margin: 1.2rem 0 1.6rem 1.3rem;
  color: rgba(252,251,251,0.85);
  display: grid;
  gap: 0.5rem;
}

.donate-qr{
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

.donate-qr img{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
}

/* ================= FOOTER ================= */
.site-footer{
  background: #0b1226;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 1.8rem 0;
}

.footer-container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-title{
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.footer-muted{ color: rgba(252,251,251,0.72); font-size: 0.86rem; margin-top: 0.35rem; }
.footer-left a{ color: var(--gold-light); }

.footer-quote{
  color: rgba(252,251,251,0.75);
  max-width: 420px;
  font-size: 0.86rem;
}

/* ================= QUICK DONATE (HOME STYLE) ================= */
.qd-home{ text-align: center; }

.qd-currency-home{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: rgba(252,251,251,0.92);
  font-size: 14px;
}

.qd-sep{ opacity: 0.55; }

.qd-curr-home{
  background: rgba(222,227,238,0.06);
  border: 1px solid rgba(222,227,238,0.22);
  color: rgba(252,251,251,0.92);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.qd-curr-home:hover{
  background: rgba(222,227,238,0.12);
  border-color: rgba(222,227,238,0.45);
}

.qd-curr-home.is-active{
  background: rgba(222,227,238,0.18);
  border-color: rgba(222,227,238,0.70);
  color: var(--gold-light);
}

.qd-row-home{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qd-fixed{
  font-size: 0.85rem;
  padding: 10px 18px;
}

/* custom input group */
.qd-custom-home{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(222,227,238,0.22);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(222,227,238,0.10);
}

.qd-prefix-home{
  color: var(--gold-light);
  font-weight: 700;
  padding-left: 6px;
}

.qd-input-home{
  width: 140px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(222,227,238,0.18);
  background: rgba(15,23,42,0.35);
  color: rgba(252,251,251,0.92);
  outline: none;
}

.qd-input-home::placeholder{ color: rgba(252,251,251,0.55); }

.qd-input-home:focus{
  border-color: rgba(222,227,238,0.55);
  box-shadow: 0 0 0 3px rgba(222,227,238,0.16);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .main-nav{ display: none; }
  .hero-content{ grid-template-columns: 1fr; }
  .pillars{ grid-template-columns: 1fr; }
  .program-grid{ grid-template-columns: 1fr; }
  .two-column, .two-column.reverse, .masjid-grid, .dashboard-grid, .donate-container, .testimonial-grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px){
  .qd-input-home{ width: 120px; }
}


/* =========================================
   MOBILE HERO IMPROVEMENTS
   ========================================= */

@media (max-width: 768px){

  /* Hero spacing */
  .hero{
    min-height: auto;
    padding: 3.5rem 0 3rem;
  }

  /* Add left/right breathing room */
  .hero-content{
    grid-template-columns: 1fr;
    padding: 0 1.4rem;
    gap: 2rem;
  }

  /* Headline size more balanced */
  .hero-text h1{
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    line-height: 1.2;
  }

  /* Subtext spacing */
  .hero-sub{
    font-size: 0.95rem;
    margin-top: 0.6rem;
  }

  /* Stack buttons nicely */
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn{
    width: 100%;
    text-align: center;
  }

  /* Pillars stacked clean */
  .pillars{
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  /* Hero side card full width */
  .hero-side-card{
    padding: 1.2rem;
  }

  /* Counters stack better */
  .hero-counters{
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

}

/* Extra small devices */
@media (max-width: 480px){

  .hero-content{
    padding: 0 1.1rem;
  }

  .hero-text h1{
    font-size: 1.7rem;
  }

  .counter-number{
    font-size: 1.3rem;
  }

}

/* =========================================
   GLOBAL MOBILE RESPONSIVENESS PATCH
   Paste at END of style.css
   ========================================= */

/* 1) Better spacing on small screens */
@media (max-width: 768px){
  .container{ padding: 0 1.1rem; }

  .section,
  .section-alt,
  .donate-section{
    padding: 3.5rem 0;
  }

  .section-title{ font-size: 1.7rem; }
  .section-subtitle{ font-size: 0.92rem; margin-bottom: 1.8rem; }

  /* Navbar tweaks */
  .nav-container{ padding: 0.85rem 0; }
  .brand-logo{ width: 38px; height: 38px; }
  .brand-name{ font-size: 0.85rem; }
  .brand-sub{ font-size: 0.7rem; }

  /* Reduce heavy shadows a bit on mobile */
  .program-card,
  .testimonial-card,
  .masjid-card,
  .image-card,
  .hero-side-card{
    box-shadow: 0 12px 35px rgba(0,0,0,0.30);
  }

  /* Program / Testimonials / Masjid / Dashboard / Donate layout already stacks,
     but ensure gaps are consistent */
  .program-grid,
  .testimonial-grid,
  .masjid-grid,
  .dashboard-grid,
  .donate-container{
    gap: 1.1rem;
  }
}

/* 2) Quick Donate: make buttons & custom input behave nicely */
@media (max-width: 768px){
  .qd-row-home{
    gap: 10px;
  }

  /* Make donate amount buttons more tappable */
  .qd-fixed{
    width: 100%;
    max-width: 420px;
    justify-content: center;
  }

  /* Custom input group full width */
  .qd-custom-home{
    width: 100%;
    max-width: 420px;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .qd-input-home{
    width: 100%;
    max-width: 200px;
    padding: 10px 12px;
  }
}

/* 3) Two-column sections: better text flow + spacing */
@media (max-width: 768px){
  .two-column,
  .two-column.reverse{
    gap: 1.4rem;
  }

  .section-text h2{
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .actions-row{
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

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

/* 4) Ledger embed: ensure iframe doesn’t look cramped */
@media (max-width: 768px){
  .dashboard-embed iframe{
    min-height: 420px;
  }
}

/* 5) Donate section: center QR and make it breathe */
@media (max-width: 768px){
  .donate-qr{
    max-width: 320px;
  }

  .donate-qr img{
    width: 100%;
  }
}

/* 6) Footer: stack vertically + center align */
@media (max-width: 768px){
  .site-footer{
    padding: 1.4rem 0;
  }

  .footer-container{
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-left,
  .footer-right{
    width: 100%;
  }

  .footer-title{
    font-size: 0.95rem;
  }

  .footer-muted{
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-quote{
    max-width: 100%;
    font-size: 0.85rem;
    opacity: 0.9;
  }
}

/* Extra small screens: tighten further */
@media (max-width: 480px){
  .brand-name{ font-size: 0.8rem; }
  .brand-sub{ font-size: 0.68rem; }

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

  .qd-currency-home{
    gap: 8px;
    font-size: 13px;
  }

  .qd-curr-home{
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .footer-muted,
  .footer-quote{
    font-size: 0.82rem;
  }
}

/* =========================================
   MOBILE NAVBAR REFINEMENT
   ========================================= */

@media (max-width: 768px){

  /* More breathing room */
  .nav-container{
    padding: 0.9rem 1.2rem;
  }

  /* Logo spacing from left */
  .brand{
    gap: 0.75rem;
  }

  .brand-logo{
    width: 36px;
    height: 36px;
  }

  .brand-name{
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

  .brand-sub{
    font-size: 0.65rem;
  }

  /* Make Quick Donate button smaller */
  .nav-cta{
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 999px;
  }

  /* Slight softer background for cleaner look */
  .nav-cta.btn-outline{
    background: rgba(222,227,238,0.12);
  }

}

/* Extra small devices */
@media (max-width: 480px){

  .nav-container{
    padding: 0.8rem 1rem;
  }

  .brand-logo{
    width: 32px;
    height: 32px;
  }

  .brand-name{
    font-size: 0.75rem;
  }

  .nav-cta{
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
  }
}