/* M.D.F PMC — Static Site Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border-color);
}

:root {
  --bg: hsl(0 0% 4%);
  --fg: hsl(0 0% 98%);
  --card-bg: hsl(0 0% 7%);
  --muted: hsl(0 0% 60%);
  --border-color: hsl(0 0% 15%);
  --zinc-900: hsl(0 0% 7%);
  --zinc-950: hsl(0 0% 3.5%);
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(40,40,40,0.5) 0%, transparent 70%),
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

::selection {
  background: #fff;
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

/* ─── Scanline animation ─── */
.scanline {
  width: 100%;
  height: 100px;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(255,255,255,0.05) 50%, rgba(0,0,0,0) 100%);
  opacity: 0.1;
  animation: scanline 10s linear infinite;
}

@keyframes scanline {
  0%   { transform: translateY(-100vh); }
  100% { transform: translateY(100vh); }
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
  background: transparent;
}

.nav.scrolled {
  background: hsla(0 0% 4% / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 2.5rem;
  height: 2.5rem;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a:hover {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--fg);
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  text-transform: uppercase;
  background: hsla(0 0% 4% / 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a:hover {
  color: rgba(255,255,255,0.6);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.5);
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent, hsla(0 0% 4% / 0.2));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .hero-logo {
  width: 8rem;
  height: 8rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: rgba(255,255,255,0.2);
}

.hero-tagline {
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  height: 3.5rem;
  padding: 0 3rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
}

.btn-lg {
  font-size: 1.25rem;
  letter-spacing: 0.4em;
  height: 6rem;
  padding: 0 4rem;
}

.btn svg,
.btn .chevron {
  margin-left: 0.5rem;
  transition: transform 0.2s;
}

.btn:hover svg,
.btn:hover .chevron {
  transform: translateX(0.5rem);
}

/* ─── Sections ─── */
section {
  scroll-margin-top: 5rem;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-divider .line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.section-divider svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(255,255,255,0.4);
}

/* ─── About ─── */
.about {
  padding: 8rem 0;
  background: var(--zinc-950);
}

.about-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.about h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
}

.about h2 span {
  color: rgba(255,255,255,0.2);
}

.about .subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ─── What We Offer ─── */
.ops {
  padding: 6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ops h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  margin-bottom: 4rem;
  text-align: center;
}

.ops h2 span {
  color: rgba(255,255,255,0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}

.feature-item {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 0 1rem 2rem;
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Image cards */
.image-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

@media (min-width: 768px) {
  .image-cards { grid-template-columns: 1fr 1fr 1fr; }
}

.image-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--zinc-900);
  border: 1px solid rgba(255,255,255,0.05);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.7s;
}

.image-card:hover img {
  opacity: 0.6;
  transform: scale(1.05);
}

.image-card .card-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, black, transparent);
}

.image-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.image-card .card-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.image-card .card-desc {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Requirements ─── */
.requirements {
  padding: 8rem 0;
  background: var(--zinc-950);
}

.requirements-inner {
  max-width: 56rem;
  margin: 0 auto;
}

.requirements h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
}

.requirements h2 span {
  color: rgba(255,255,255,0.2);
}

.requirements .subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 4rem;
  font-size: 1.125rem;
}

.req-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .req-grid { grid-template-columns: 1fr 1fr; }
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.req-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.req-item p {
  color: var(--muted);
}

.req-item p.bold {
  font-weight: 700;
}

/* Schedule */
.schedule-box {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  margin-bottom: 4rem;
}

.schedule-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.schedule-box .tz {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .schedule-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.schedule-day {
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 1rem;
}

.schedule-day svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255,255,255,0.4);
  margin: 0 auto 0.5rem;
}

.schedule-day h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.schedule-day p {
  font-size: 0.875rem;
  color: var(--muted);
}

.training-note {
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
}

/* ─── Recruitment ─── */
.recruitment {
  padding: 8rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.status-badge {
  display: inline-block;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.status-badge-inner {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.25rem 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.recruitment h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
}

.recruitment h2 span {
  color: rgba(255,255,255,0.2);
}

.recruitment > .container > p {
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Handbook ─── */
.handbook {
  padding: 6rem 0;
  background: var(--zinc-950);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.handbook-icon {
  width: 3rem;
  height: 3rem;
  color: rgba(255,255,255,0.4);
  margin: 0 auto 1.5rem;
}

.handbook h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.handbook h2 span {
  color: rgba(255,255,255,0.2);
}

.handbook p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Community ─── */
.community {
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.community h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  margin-bottom: 4rem;
  text-align: center;
}

.community h2 span {
  color: rgba(255,255,255,0.2);
}

.community-widgets {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .community-widgets {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
}

.widget-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.widget-col h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.vote-flavour {
  margin-top: 1.5rem;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.vote-flavour p {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.6;
}

.vote-flavour strong {
  color: var(--fg);
}

.vote-flavour ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vote-flavour ul li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}

.vote-flavour ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--fg);
}

/* ─── Footer ─── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #000;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0.4;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.footer-copy {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #fff;
}

/* ─── Donations page hero ─── */
.donate-hero {
  position: relative;
  padding: 12rem 0 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.donate-hero .bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24,24,27,0.5), var(--bg));
  pointer-events: none;
}

.donate-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donate-hero-content .badge {
  display: inline-block;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.donate-hero-content .badge-inner {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.25rem 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

.donate-hero-content .heart-icon {
  width: 4rem;
  height: 4rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}

.donate-hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.donate-hero-content h1 span {
  color: rgba(255,255,255,0.2);
}

.donate-hero-content .tagline {
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.donate-hero-content .desc {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Funding breakdown */
.funding {
  padding: 6rem 0;
  background: var(--zinc-950);
}

.funding h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
}

.funding h2 span {
  color: rgba(255,255,255,0.2);
}

.funding .subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.funding-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .funding-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.funding-card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  background: rgba(24,24,27,0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.funding-card svg {
  width: 2rem;
  height: 2rem;
  color: rgba(255,255,255,0.4);
}

.funding-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.funding-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Donation CTA */
.donate-cta {
  padding: 8rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.donate-cta h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
}

.donate-cta h2 span {
  color: rgba(255,255,255,0.2);
}

.donate-cta .subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.donate-box {
  max-width: 32rem;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem;
  background: rgba(24,24,27,0.3);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.donate-box h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.donate-box > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.donate-box .divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.donate-box .btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.donate-box .secured {
  font-size: 0.625rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.donate-disclaimer {
  max-width: 48rem;
  margin: 3rem auto 0;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 1.5rem;
}

.donate-disclaimer p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

.donate-disclaimer .note-label {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── 404 page ─── */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found h1 {
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}

.not-found h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.not-found p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ─── SVG icons inline helper ─── */
.icon {
  display: inline-block;
  vertical-align: middle;
}
