:root{
  --bg:#0b0b0f;
  --panel:#111118;
  --panel2:#0f0f16;
  --text:#ffffff;
  --muted:#b8b8c7;
  --gold:#f6c445;
  --outline: rgba(246,196,69,.35);
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: Arial, sans-serif; background:var(--bg); color:var(--text); }

a{ color:inherit; text-decoration:none; }

.container{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }

.topbar{
  position: sticky;
  top:0;
  z-index:20;
  background: rgba(11,11,15,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{ display:flex; align-items:center; gap:12px; }
.logo{
  width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--outline);
  background: linear-gradient(135deg, rgba(246,196,69,.25), rgba(246,196,69,.06));
  font-weight:900;
}
.brand-name{ font-weight:900; letter-spacing:.2px; }
.brand-tag{ color:var(--gold); font-weight:700; font-size:12px; margin-top:2px; }

.nav{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }

.btn{
  background: var(--gold);
  color:#141414;
  border: none;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
  cursor:pointer;
  display:inline-block;
}
.btn:hover{ filter:brightness(1.05); }

.btn.outline{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--outline);
}
.btn.outline:hover{ background: rgba(246,196,69,.08); }

.hero{
  padding: 54px 0 28px 0;
  background: radial-gradient(1000px 500px at 10% -10%, rgba(246,196,69,.18), transparent 55%),
              radial-gradient(900px 450px at 90% 0%, rgba(255,255,255,.06), transparent 55%);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.hero h1{ margin:0 0 10px 0; font-size:44px; line-height:1.05; }
.hero p{ margin:0 0 14px 0; color: var(--muted); line-height:1.6; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

.hero-card{
  background: var(--panel);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.hero-card h3{ margin:0 0 10px 0; }
.hero-card ul{ margin:0 0 10px 18px; color: var(--muted); }

.section{
  padding: 40px 0;
  border-top:1px solid rgba(255,255,255,.07);
}
.section.alt{ background: rgba(255,255,255,.02); }

h2{ margin:0 0 10px 0; font-size:28px; }
p{ margin:0; color: var(--muted); line-height:1.6; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.card{
  background: var(--panel2);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px;
}
.card h3{ margin:0 0 6px 0; }
.card p{ margin:0; }

.donate{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer{
  border-top:1px solid rgba(255,255,255,.07);
  padding: 26px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.muted{ color: var(--muted); }
.small{ font-size: 12px; }

@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 36px; }
  .grid{ grid-template-columns: 1fr; }
}

/* Timeline */
.timeline{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-item{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  align-items: start;
}

.t-year{
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .4px;
  padding-top: 10px;
}

.t-card{
  background: var(--panel2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px;
}

.t-card h3{
  margin: 0 0 8px 0;
}

.t-card ul{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

@media (max-width: 900px){
  .t-item{
    grid-template-columns: 1fr;
  }
  .t-year{
    padding-top: 0;
  }
}

/* --- Photos Carousel --- */
.carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.carousel__track {
  display: flex;
  transform: translateX(0);
  transition: transform 420ms ease;
  will-change: transform;
}

.carousel__slide {
  width: 100%;
  flex: 0 0 100%;
  height: 60vh;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.carousel__btn {
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  background: rgba(0,0,0,.65);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 120ms ease, background 120ms ease;
}

.carousel__btn:hover { transform: scale(1.05); background: rgba(0,0,0,.78); }
.carousel__btn:active { transform: scale(0.98); }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,.25);
}

.carousel__dot.is-active {
  background: rgba(0,0,0,.75);
}


