/* ========== GLOBAL BODY + TYPOGRAPHY ========== */
/* Responsive design tokens (shared across pages) */
:root {
  /* Brand */
  --brand-green: #00ff73;

  /* Method lines: consistent size across home + methods pages */
  --method-line-size: clamp(18px, 1.8vw, 26px);
  --method-line-margin-v: clamp(20px, 3.5vh, 48px);
  --method-line-height: 1.7;

  /* Emphasis styling (underline + outline) */
  --emph-size-mult: 1.15;                 /* relative to surrounding text */
  --emph-stroke-width: 0.06em;            /* scales with font-size */
  --emph-underline-thickness: max(2px, 0.09em);
  --emph-underline-offset: 0.18em;
}
/* General Body Styling */

/* ===== Global Page Titles ===== */
.page-title {
  font-family: 'Playfair Display', serif;   /* elegant + cinematic */
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);   /* responsive scaling */
  color: #fff;
  text-align: center;
  margin: 0rem 0 2rem;
  letter-spacing: 0.03em;
  position: relative;
}

/* Optional green underline for all titles */
.page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 0.6em auto 0;
  background: linear-gradient(90deg, #5bff17, #009944);
  border-radius: 3px;
}


body {
  background-color: black;
  color: white;
  text-align: center;
  margin: 30;
  padding: 0;
  font-family: 'Playfair Display', serif;
}
.navbar a.active,
.navbar a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* ========== NAVIGATION BAR (GLOBAL) ========== */
/* Sticky nav */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0);
  padding: 5vh 10vw;
  z-index: 10;
}

.navbar ul {
  display: flex;
  justify-content: center;
  gap: 2vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 3vw;
  
}



/* --- Base layout --- */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0b0b0b;
  color: #f5f5f500;
  overflow-x: hidden;              /* no horizontal panning site-wide */
  overscroll-behavior-x: none;     /* suppress horizontal bounce */
}

header {
  padding: 48px 20px 16px;
  text-align: center;
}
header h1 {
  margin: 0;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ========== CONTACT US CALL TO ACTION ========== */
/* Contact CTA */
.contact-cta {
  background: black;
  text-align: center;
  padding: 4vh 5vw;
  color: rgb(0, 0, 0);
  font-family: 'Playfair Display', serif;
}

.contact-cta button {
  background: white;
  color: black;
  border: none;
  padding: 1rem 2rem;
  font-size: 1vw;
  margin-top: 2vh;
  cursor: pointer;
}

/* ========== FOOTER WITH ICONS ========== */
/* Footer with icons */
/* ===== FOOTER ===== */
.footer {
  background: #000;      /* full width black */
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 1.5rem 1.25rem;
  font-family: 'Playfair Display', serif;
}
/* Top accent lines (three thin green strokes) */
.footer-toplines {
  height: 2px;
  margin: 0 0 24px;
  background: linear-gradient(90deg, #5bff17, #009944);
  border-radius: 2px;
}


/* Main grid */
.footer-container {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  background: transparent; /* ✅ remove black here */
}

.footer-logo h2 {
  margin: 0;
  font-size: 2rem;
  color: #5bff17;
}
.footer-logo .tagline { color: #aaa; margin-top: .4rem; font-size: .95rem; }

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: #5bff17;
  margin: 0 0 .6rem;
  font-size: 1.05rem;
}

.footer-links ul,
.footer-contact ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
}

.footer-links a,
.footer-social a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer-links a:hover,
.footer-social a:hover {
  color: #5bff17;
  border-bottom-color: #5bff17;
}

.footer-contact li,
.footer-social li {
  display: flex; align-items: center; gap: .5rem;
}
.footer-contact img,
.footer-social img { width: 18px; height: 18px; object-fit: contain; }

/* Middle strip with quick contact handles */
.footer-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: .75rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  max-width: 1200px;
  margin: 0 auto 14px;
  font-size: .95rem;
  color: #ddd;
}
.footer-item { display: flex; align-items: center; gap: .5rem; justify-content: center; }
.footer-item img { width: 16px; height: 16px; }

/* Bottom */
.footer-bottom { text-align: center; color: #aaa; font-size: .85rem; }

/* Responsive */
@media (max-width: 900px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-contact li, .footer-social li, .footer-item { justify-content: center; }
}
/* === Global falling particles (site-wide) === */
html, body { height: 100%; }
body { position: relative; }

/* Render particles behind all content, above the page background */
body.has-particles::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;                 /* background < particles < content < nav */
  opacity: .30;

  background-image:
    radial-gradient(1.4px 1.4px at 20px 20px, rgb(0, 0, 0) 99%, transparent 100%),
    radial-gradient(1px 1px at 90px 60px,     rgb(212, 51, 51) 99%, transparent 100%),
    radial-gradient(1.1px 1.1px at 140px 5px, rgb(0, 255, 30) 99%, transparent 100%);
  background-size: 220px 220px, 300px 300px, 380px 380px;
  background-repeat: repeat;
  animation: ashFall 65s linear infinite;
}

/* Vertical fall */
@keyframes ashFall {
  0%   { background-position: 0 -900px, 0 -900px, 0 -900px; }
  100% { background-position: 0  900px, 0  900px, 0  900px; }
}

/* Make sure regular content stacks above the particles */
header, main, section, footer { position: relative; z-index: 1; }
/* Keep sticky/fixed nav on top if you use one */
.navbar, header nav { z-index: 10; }

/* Keep page gradients intact; just remove the stray white backdrop */
body { margin: 0 !important; }                  /* keep zero margin */

/* Make common wrappers transparent instead of html/body */
main, section, header, footer {
  background: transparent !important;
}

/* If you still see the strip, this catches generic wrappers too */
.container, .page, .page-wrap, .content, .content-band, .page-overlay {
  background: transparent !important;
}

/* Leave html, body backgrounds alone (no override here) */
/* --- Footer hard override (last in stylesheet) --- */
footer.footer {
  background: #000 !important;   /* force full-width black */
  color: #fff !important;        /* force white text */
}

footer.footer a { color: #fff !important; }
footer.footer .footer-strip,
footer.footer .footer-container { background: transparent !important; } /* keep inner grid transparent */
/* Full-bleed footer: ignore parent padding and span the viewport */
footer.footer {
  background: #000 !important;
  color: #fff !important;

  /* make the element span the viewport width regardless of parent */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* avoid any max-width/padding constraints from parents */
  max-width: 100vw;
}

/* keep the inner grid centered on the black strip */
footer.footer .footer-container,
footer.footer .footer-strip,
footer.footer .footer-bottom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
