/* Manifesto — red / white / gold theme, Orbitron + Exo */
:root{
  --dark: #1a0a0a;
  --deep: #330000;
  --red: #940810;
  --gold: #c79406;
  --white: #fff;
  --muted: #eaeaea;
  --card-bg: #fff;
}



*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Exo",sans-serif;
  background: linear-gradient(180deg,var(--card-bg) 0%, #f9f6f6 100%);
  color:#111;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Reading progress bar */
#reading-progress{
  position:fixed; left:0; top:0; height:4px; width:0;
  background: linear-gradient(90deg,var(--gold),#ffd966);
  z-index:9999; transition:width 120ms linear;
}

/* Nav */
nav.sticky{background:var(--red); color:var(--white); position:sticky; top:0; z-index:50}
.nav-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:12px 20px}
.brand{font-family:'Orbitron',sans-serif;color:var(--white);font-weight:700}
.nav-actions{display:flex;gap:12px;align-items:center}
.nav-btn{color:var(--white);background:none;border:none;padding:8px 12px;font-family:'Orbitron',sans-serif;cursor:pointer}
.cta{background:var(--gold);border:none;color:var(--dark);padding:8px 14px;border-radius:6px;cursor:pointer;font-weight:700}

/* Hero */
.hero{display:flex;max-width:1200px;margin:30px auto;border-radius:12px;overflow:hidden}
.hero-inner{flex:1;padding:48px; background: linear-gradient(90deg,var(--red) 0%, rgba(199,148,6,0.08) 100%); color:var(--white)}
.hero h1{font-family:'Orbitron',sans-serif;font-size:36px;margin:0 0 10px}
.hero p{margin:0 0 20px;font-size:18px}
.hero-actions{display:flex;gap:12px}
.btn-gold{background:var(--gold);border:none;padding:10px 16px;border-radius:8px;font-weight:700}
.btn-outline{background:transparent;border:2px solid var(--white);color:var(--white); padding:8px 12px;border-radius:8px}
.hero-visual{width:360px;background:rgba(0,0,0,0.06);display:flex;align-items:center;justify-content:center}
.hero-visual img{width:100%;height:100%;object-fit:cover;opacity:0.95}

/* main content */
main{max-width:1200px;margin:28px auto;padding:0 20px}

/* card */
.card{background:var(--card-bg);border-radius:12px;padding:22px;margin-bottom:22px;box-shadow:0 10px 30px rgba(0,0,0,0.06);overflow:hidden}
.card h2{font-family:'Orbitron',sans-serif;color:var(--red);margin:0 0 8px}

/* quick stats */
.quick-stats{display:flex;gap:18px;margin-top:16px}
.stat{flex:1;background:linear-gradient(180deg,#fff,#fff);border-radius:8px;padding:12px;text-align:center;border:1px solid #eee}
.stat-value{font-family:'Orbitron',sans-serif;font-size:22px;color:var(--red)}
.stat-label{font-size:13px;color:#666;margin-top:6px}

/* collapsible */
.collapsible .section-header{display:flex;justify-content:space-between;align-items:center}
.collapsible .toggle{background:var(--gold);border:none;color:var(--dark);padding:8px 12px;border-radius:8px;cursor:pointer}
.section-body{margin-top:16px;transition:max-height 420ms ease,opacity 350ms ease;overflow:hidden}
.section-body.closed{max-height:0;opacity:0;padding:0}
.section-body.open{max-height:1200px;opacity:1;padding-top:8px}

/* timeline */
.timeline{margin-top:12px;border-left:3px solid rgba(148,8,16,0.08);padding-left:16px}
.timeline-item{display:flex;gap:12px;padding:10px 0}
.timeline-dot{width:12px;height:12px;border-radius:50%;background:var(--red);margin-top:8px}
.timeline-dot.gold{background:var(--gold)}
.timeline-body h4{margin:0;font-family:'Orbitron',sans-serif;font-size:16px}
.timeline-body p{margin:6px 0 0;color:#444}

/* manifesto text */
.manifesto-text p{line-height:1.6;color:#222;margin-bottom:12px}

/* share row */
.share-row{margin-top:12px;display:flex;gap:12px;align-items:center}
.btn-outline{background:transparent;border:2px solid var(--red);color:var(--red);padding:8px 12px;border-radius:8px;cursor:pointer}
.btn-outline:hover{background:var(--red);color:white}

/* interest form */
.form{margin-top:12px}
.form-row{display:flex;gap:12px;margin-bottom:12px}
.form-row input,.form-row select,.form-row textarea{flex:1;padding:10px;border-radius:8px;border:1px solid #ddd}
.form-row.actions{display:flex;gap:12px;justify-content:flex-start;align-items:center}
#interest-feedback{color:var(--red);margin-top:10px}

/* footer */
.site-footer{background:var(--deep);padding:18px 12px;margin-top:18px;color:white}
.footer-inner{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;gap:12px}

#navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  background-color: #940810;
  padding: 10px 0;
  z-index: 10;
}

#navbar button {
  background: none;
  border: none;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

#navbar button:hover,
#navbar button.active {
  background: #c79406;
  color: white;
}



.footer-icons {
  margin-bottom: 10px;
}

.footer-icons a {
  color:#c79406 ;
  margin: 0 10px;
}

.footer-icons a:hover {
    opacity: 0.7;
}



footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #940810;  /* Dark red */
    color: white;
    padding: 20px;
    text-align: center;
}

#slogan {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Orbitron";
}

#privacy-policy {
    color: #FFD700; /* Gold for better contrast */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Exo', sans-serif;
}

#privacy-policy:hover {
    font-family: 'Exo', sans-serif;
    color: #ffffff; /* White on hover */
}

#CopyRight {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Exo", sans-serif;
}


/* responsive */
@media (max-width:900px){
  .hero{flex-direction:column}
  .hero-visual{width:100%;height:200px}
  .quick-stats{flex-direction:column}
  .form-row{flex-direction:column}
}
