/* ==== Base / Reset ==== */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Impact', 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
  background: url('/img/poster-bg.png') center / cover no-repeat fixed;
}

/* ==== Header / Nav ==== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px) saturate(140%);
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
  background: transparent;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}

.nav-logo .brand {
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.nav-spacer { flex: 1; }

/* Desktop menu */
.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  letter-spacing: .5px;
  font-weight: 600;
  opacity: .95;
}
.nav-links a:hover { text-decoration: underline; }

/* Hamburger */
.nav-toggle {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-toggle:focus-visible {
  outline: 3px solid rgba(255,255,255,.4);
  outline-offset: 2px;
}

/* Mobile drawer */
.drawer {
  display: none;
  position: fixed;
  inset: 60px 0 auto 0; /* under header */
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.drawer.open { display: block; }
.drawer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px 18px;
  display: grid;
}
.drawer a {
  color: #fff;
  text-decoration: none;
  padding: 12px 6px;
  border-bottom: 1px dashed rgba(255,255,255,.15);
  font-weight: 700;
  letter-spacing: .6px;
}
.drawer a:last-child { border-bottom: 0; }

/* Desktop breakpoint */
@media (min-width: 880px) {
  .nav-links { display: inline-flex; }
  .nav-toggle { display: none; }
  .drawer { display: none !important; }
}

/* ==== Page Shell (shared) ==== */
.page {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* Main block uses your glass “manifesto” panel */
.main {
  display: grid;
  place-items: center;
  padding: 36px 16px 64px;
}
.manifesto {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 42px;
  width: min(1000px, 92vw);
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* Typography */
h1 {
  font-size: clamp(28px, 6vw, 56px);
  color: #ff3b3b;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
h2 {
  font-size: clamp(20px, 4vw, 32px);
  margin: 32px 0 10px;
  color: #f1c40f;
  text-transform: uppercase;
}
p {
  font-size: clamp(16px, 2.2vw, 21px);
  margin: 18px 0;
  line-height: 1.8;
  font-weight: 300;
}
ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
ul li {
  font-size: clamp(16px, 2vw, 21px);
  margin: 12px 0;
  font-weight: 700;
  color: #fffa;
}

.highlight { color: #00e676; font-weight: 800; }
.tagline { font-size: 1.3rem; font-style: italic; margin: 26px 0 6px; color: #00e676; }

/* CTA */
.cta {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #ff3b3b, #e63232);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cta:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); }

/* Footer */
.site-footer {
  padding: 12px 16px 22px;
  text-align: center;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
}

/* ==== Profile Photo (Home only, but harmless elsewhere) ==== */
.profile-wrap {
  margin: 8px 18px;
  display: grid;
  place-items: center;
}
.profile-photo {
  width: 240px;
  height: 360px;
  border-radius: 16px;
  border: 3px solid rgba(255,255,255,.5);
  object-fit: cover;
  box-shadow: 0 6px 22px rgba(0,0,0,.6);
}

/* ==== Content scaffolds for inner pages ==== */
.section {
  text-align: left;
  margin: 10px auto 0;
  max-width: 900px;
}
.section p, .section li { font-size: 1.1rem; }
.section ul { list-style: disc; padding-left: 22px; }
