/* ============================================================
   Helena Maksyom — site styles
   One file controls the look of every page.
   Colors, fonts and spacing are set here at the top so they
   are easy to change later.
   ============================================================ */

:root {
  /* -- Palette ------------------------------------------------
     Dark, documentary-film feel. White text on near-black.
     Change these hex values to recolor the whole site at once. */
  --ink:        #ffffff;   /* pure white text              */
  --paper:      #0d0d0d;   /* near-black background        */
  --stone:      #b5b0a8;   /* muted grey for secondary text */
  --line:       #2c2c2c;   /* subtle divider on dark        */
  --blue:       #6ba3c4;   /* lighter slate blue accent for dark bg */
  --gold:       #c9a15e;   /* warm brass accent             */
  --white:      #ffffff;
  --panel:      #1c1c1c;   /* slightly lighter panels/cards */

  --maxw: 1080px;          /* content width */
}

/* -- Reset ---------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

/* -- Typographic scale --------------------------------------- */
h1, h2, h3, .nav-brand {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; margin-bottom: 0.3em; }

p { margin-bottom: 1.1em; }
a { color: var(--blue); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.nav-brand {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links a.donate-link {
  color: #121212;
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 700;
}
.nav-links a.donate-link:hover { background: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(60px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1.2em;
}
.hero h1 { margin-bottom: 0.3em; }
.hero .tagline {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(50px, 8vw, 90px) 0; }
.section + .section { border-top: 1px solid var(--line); }

.lead { font-size: 1.25rem; color: var(--ink); }

.prose { max-width: 680px; }
.prose p { color: #ffffff; }

/* Films list */
.film {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: baseline;
}
.film:last-child { border-bottom: none; }
.film .year {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
}
.film h3 { font-style: normal; }
.film .meta { color: var(--stone); font-size: 0.95rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 3px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #121212;
  transition: all 0.2s;
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--gold); }

.btn-primary { background: var(--gold); border-color: var(--gold); color: #121212; }
.btn-primary:hover { background: transparent; color: var(--gold); }

/* ============================================================
   DONATE PAGE
   ============================================================ */
.goal-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  margin: 32px 0;
}
.goal-card h2 { margin-bottom: 0.2em; }
.goal-amount {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
}
.goal-amount span { color: var(--stone); font-size: 1.1rem; font-weight: 400; }

/* Payment buttons block */
.pay-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.pay-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 22px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  text-decoration: none;
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  transition: all 0.2s;
}
.pay-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.pay-btn .pay-name { font-weight: 700; font-size: 1.15rem; }
.pay-btn .pay-sub { color: var(--stone); font-size: 0.85rem; }

/* Raffle box */
.raffle {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 32px;
  margin: 36px 0;
}
.raffle h2 { color: var(--gold); }
.raffle a { color: var(--blue); }
.raffle .steps {
  list-style: none;
  counter-reset: step;
  margin-top: 18px;
}
.raffle .steps li {
  counter-increment: step;
  padding: 10px 0 10px 44px;
  position: relative;
}
.raffle .steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 8px;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   IMAGES
   ============================================================ */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 24px 0;
  border-radius: 4px;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.img-full {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  margin: 24px 0;
}
.img-caption {
  font-size: 0.85rem;
  color: var(--stone);
  margin-top: -14px;
  margin-bottom: 24px;
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.socials { display: flex; gap: 18px; align-items: center; }
.socials a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  text-decoration: none;
}
.socials a:hover { color: var(--ink); }
.footer-note { color: var(--stone); font-size: 0.85rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  body { font-size: 17px; }
  .nav { justify-content: center; }
  .nav-links { gap: 16px; justify-content: center; }
  .film { grid-template-columns: 1fr; gap: 4px; }
  .film .year { font-size: 0.9rem; }
}

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
