:root{
  --blue:#11166b;

  --page-gutter:clamp(20px,6vw,72px);
  --maxw:1100px;

  /* Futuristic dark (same DA as Resume) */
  --neo-bg:#060813;
  --neo-text:rgba(255,255,255,.92);
  --neo-muted:rgba(255,255,255,.68);
  --neo-accent:rgba(120, 210, 255, .95);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#111;
  line-height:1.6;
}

/* Container */
.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding-left:var(--page-gutter);
  padding-right:var(--page-gutter);
}

/* ===== HEADER (same as Resume) ===== */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--blue);
  box-shadow:0 4px 18px rgba(0,0,0,.2);
}
.nav{
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#fff;
}
.brand{
  font-weight:800;
  line-height:1.1;
  color:#fff;
  text-decoration:none;
}
.brand--link:hover{opacity:.95}
.nav ul{
  list-style:none;
  display:flex;
  gap:28px;
  margin:0;
  padding:0;
}
.nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  position:relative;
}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:#fff;
  transform:scaleX(0);
  transition:.25s;
}
.nav a:hover::after,
.nav a.active::after{
  transform:scaleX(1);
}
.lang-switch{
  display:flex;
  gap:6px;
  font-size:13px;
}
.lang-btn{
  background:none;
  border:none;
  color:#fff;
  font-weight:600;
  cursor:pointer;
}

/* ===== PAGE ===== */
.projects-neo{
  min-height:100vh;
  position:relative;
  background: var(--neo-bg);
  color: var(--neo-text);
  overflow:hidden;
}

/* Futuristic background */
.projects-neo::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(90, 220, 255, .18), transparent 62%),
    radial-gradient(900px 520px at 82% 28%, rgba(170, 120, 255, .18), transparent 62%),
    radial-gradient(900px 520px at 50% 92%, rgba(40, 120, 255, .10), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.28));
  filter:saturate(1.05);
}

.projects-neo > *{
  position:relative;
  z-index:1;
}

/* ===== HERO ===== */
.projects-hero{
  padding:54px 0 18px;
}
.projects-hero__inner{
  text-align:center;
}

.projects-hero__title{
  margin:0;
  font-size:clamp(26px, 4.2vw, 46px);
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  text-shadow:0 18px 60px rgba(0,0,0,.6);
}
.projects-hero__underline{
  width:84px;
  height:3px;
  margin:16px auto 18px;
  border-radius:99px;
  background:rgba(120,210,255,.75);
  box-shadow:0 0 22px rgba(120,210,255,.25);
}

/* ===== FILTERS ===== */
.filters{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:10px;
}
.filter-btn{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  backdrop-filter: blur(10px);
  transition: transform .2s, background .2s, border-color .2s;
}
.filter-btn:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.18);
}
.filter-btn.active{
  background:rgba(120,210,255,.92);
  color:rgba(10,10,20,.95);
  border-color:rgba(120,210,255,.35);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/* ===== GRID ===== */
.projects-grid{
  padding: 14px 0 70px;
}
.grid{
  width:min(1240px, calc(100% - (var(--page-gutter) * 1)));
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
}

/* Hide (for filtering) */
.p-card.is-hidden{
  display:none;
}

/* ===== CARD ===== */
.p-card{
  border-radius:18px;
}

.p-card__link{
  position:relative;
  display:block;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:#fff;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  backdrop-filter: blur(14px);

  transform: translateY(0);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

/* media */
.p-card__media{
  aspect-ratio: 1 / 1;
  width:100%;
  position:relative;
  background: rgba(0,0,0,.22);
}
.p-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1);
  filter: saturate(1.05) brightness(1);
  transition: transform .35s ease, filter .35s ease;
}

/* overlay (darken + futuristic scanlines) */
.p-card__overlay{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .25s ease;
  background:
    radial-gradient(520px 240px at 20% 20%, rgba(120,210,255,.10), transparent 62%),
    radial-gradient(520px 240px at 80% 35%, rgba(170,120,255,.10), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.68));
}
.p-card__overlay::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:.25;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,.06) 0px,
      rgba(255,255,255,.06) 1px,
      transparent 1px,
      transparent 6px
    );
  mix-blend-mode: overlay;
}

/* content */
.p-card__content{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  padding:14px 14px 12px;
  border-radius:16px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);

  transform: translateY(12px);
  opacity:0;
  transition: transform .26s ease, opacity .26s ease;
}

.p-card__kicker{
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:11px;
  color: rgba(120,210,255,.95);
}

.p-card__title{
  margin:8px 0 6px;
  font-weight:900;
  line-height:1.15;
  font-size:16px;
  color: rgba(255,255,255,.95);
}

.p-card__meta{
  margin:0;
  font-size:13px;
  font-weight:750;
  color: rgba(170,190,255,.92);
}

.p-card__cta{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
  color: rgba(255,255,255,.88);
}
.p-card__arrow{
  color: rgba(120,210,255,.95);
}

/* glow */
.p-card__glow{
  position:absolute;
  inset:-40px;
  pointer-events:none;
  opacity:0;
  transition: opacity .25s ease;
  background:
    radial-gradient(320px 220px at 25% 15%, rgba(120,210,255,.22), transparent 60%),
    radial-gradient(320px 220px at 80% 25%, rgba(170,120,255,.18), transparent 60%);
  filter: blur(12px);
}

/* Hover (Aurora Lift) */
.p-card__link:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.p-card__link:hover .p-card__overlay{
  opacity:1;
}
.p-card__link:hover .p-card__media img{
  transform: scale(1.03);
  filter: saturate(1.02) brightness(.72);
}
.p-card__link:hover .p-card__content{
  transform: translateY(0);
  opacity:1;
}
.p-card__link:hover .p-card__glow{
  opacity:1;
}

/* Focus accessibility */
.p-card__link:focus-visible{
  outline: 2px solid rgba(120,210,255,.75);
  outline-offset: 4px;
}
.p-card__link:focus-visible .p-card__overlay{
  opacity:1;
}
.p-card__link:focus-visible .p-card__content{
  transform: translateY(0);
  opacity:1;
}

/* ===== FOOTER (same as Resume/index) ===== */

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition:.25s;
}

.btn--primary{
  background:#fff;
  color:var(--blue) !important;
  box-shadow:0 12px 26px rgba(0,0,0,.35);
}
.btn--primary:hover{ transform:translateY(-2px); }

.btn--ghost{
  border:1.5px solid rgba(255,255,255,.6);
  background:rgba(255,255,255,.12);
  color:#fff !important;
}
.btn--ghost:hover{ background:rgba(255,255,255,.22); }

.btn--primary-dark{
  background:#fff;
  color:var(--blue) !important;
  box-shadow:0 12px 26px rgba(0,0,0,.25);
}
.btn--ghost-dark{
  border:1.5px solid rgba(255,255,255,.55);
  background:rgba(255,255,255,.12);
  color:#fff !important;
}

/* CTA band */
.cta-band{
  background:linear-gradient(180deg, #11166b 0%, #0d1258 100%);
  color:#fff;
  padding:42px 0;
}

.cta-band__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.cta-band__text h3{
  margin:0 0 6px;
  font-size:22px;
  letter-spacing:.02em;
}
.cta-band__text p{
  margin:0;
  opacity:.9;
}

.cta-band__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Footer */
.footer{
  background:#0b0f4f;
  color:#e9ecff;
}

.footer__grid{
  padding:44px 0;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:34px;
}

.footer__brand{
  font-weight:900;
  font-size:18px;
  margin-bottom:10px;
  color:#fff;
}

.footer__muted{
  margin:6px 0 0;
  opacity:.85;
  color:#d7dcff;
}

.footer__title{
  font-weight:800;
  color:#fff;
  margin-bottom:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.footer__links a{
  color:#d7dcff;
  text-decoration:none;
  opacity:.92;
}
.footer__links a:hover{
  opacity:1;
  text-decoration:underline;
}

.footer__contact{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d7dcff;
  text-decoration:none;
  margin-bottom:12px;
}
.footer__contact:hover{ color:#fff; }

.ico{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  opacity:.9;
}
.ico svg{ width:18px;height:18px;color:currentColor; }

.footer__lang{ margin-top:16px; }

.lang-switch--footer{ margin-top:8px; }
.lang-switch--footer span{
  opacity:.55;
  color:#d7dcff;
}
.lang-switch--footer .lang-btn{
  padding:2px 6px;
  border-radius:6px;
}
.lang-switch--footer .lang-btn.active,
.lang-switch--footer .lang-btn:hover{
  background:rgba(255,255,255,.12);
}

/* Bottom bar */
.footer__bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:14px 0;
}
.footer__bottom-inner{
  text-align:center;
  font-size:13px;
  color:#d7dcff;
  opacity:.9;
}

/* ===== Responsive ===== */
@media (max-width:1100px){
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width:700px){
  .grid{ grid-template-columns: 1fr; }
  .cta-band__inner{
    flex-direction:column;
    text-align:center;
  }
  .cta-band__actions{ justify-content:center; }
  .footer__grid{ grid-template-columns:1fr; }
}

/* ===== VOLUNTEERING ===== */
.vol-details{
  padding: 6px 0 38px;
}

.vol-details__head{
  text-align:center;
  padding: 6px 0 18px;
}

.vol-details__title{
  margin:0;
  font-size:clamp(22px, 3.2vw, 36px);
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
  text-shadow:0 18px 60px rgba(0,0,0,.6);
}

.vol-details__underline{
  width:84px;
  height:3px;
  margin:16px auto 0;
  border-radius:99px;
  background:rgba(120,210,255,.75);
  box-shadow:0 0 22px rgba(120,210,255,.25);
}

.vol-details__grid{
  width: min(1240px, calc(100% - (var(--page-gutter) * 1)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.vol-item{ min-width:0; }

.vol-item__box{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;

  /* ✅ glass look */
  background: rgba(255,255,255,.03);
  border: 2px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);

  cursor: default;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.vol-item__box img{
  width: 100%;
  height: 100%;
  display:block;

  /* ✅ no white background */
  background: transparent;
  padding: 12px;

  /* ✅ keep logos readable */
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.vol-item__box:hover,
.vol-item__box:focus{
  transform: translateY(-2px);
  border-color: rgba(120,210,255,.35);
  background: rgba(255,255,255,.05);
}

.vol-item__tip{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;

  padding: 10px 10px;
  border-radius: 14px;

  background: rgba(10,12,24,.78);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.vol-item__box:hover .vol-item__tip,
.vol-item__box:focus .vol-item__tip{
  opacity: 1;
  transform: translateY(0);
}

.vol-item__title{
  font-weight: 900;
  color: rgba(255,255,255,.95);
  line-height: 1.15;
  font-size: 13px;
}

.vol-item__desc{
  margin-top: 6px;
  font-weight: 650;
  color: rgba(255,255,255,.70);
  font-size: 12px;
  line-height: 1.35;
}

/* Empty tile */
.vol-item__box--empty{
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.03);
}
.vol-item__empty{
  font-weight:900;
  letter-spacing:.06em;
  color: rgba(255,255,255,.85);
  text-align:center;
  line-height:1.2;
}
/* ===== CONTACT CTA (below examples) ===== */
.contact-call{
  padding: 18px 0 46px;
}

.contact-call__inner{
  width: min(1240px, calc(100% - (var(--page-gutter) * 1)));
  margin: 0 auto;
  text-align: center;

  padding: 22px 18px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  position: relative;
}

.contact-call__inner > *{
  position: relative;
  z-index: 1;
}

.contact-call__title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255,255,255,.92);
}

.contact-call__text{
  margin: 0 auto 16px;
  max-width: 70ch;
  color: rgba(255,255,255,.65);
  font-weight: 650;
}

.contact-call__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;

  color: rgba(10,10,20,.95);
  background: rgba(120,210,255,.92);
  border: 1px solid rgba(120,210,255,.35);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  transition: transform .2s, filter .2s;
}

.contact-call__btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

/* Responsive */
@media (max-width:980px){
  .vol-details__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width:560px){
  .vol-details__grid{ grid-template-columns: 1fr; }
}