/* ---------------------------------------------------------
   BASE / RESET
--------------------------------------------------------- */

:root {
  --bg: #ffffff;
  --text: #000000;       /* <- pure black */
  --muted: #3a3a3a;      /* <- darker grey to keep minor text still readable */
  --border: #e4e4e4;
  --accent: #000000;
  --max-width: 1120px;
  --radius: 10px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.06);
  --font-sans: 'Barlow', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  color: #000000;  /* overrides any inherited grey */
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

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

h1, h2, h3 {
  font-family: 'Barlow', var(--font-sans);
  font-weight: 900;              /* <- the heavy black weight */
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;                   /* <- explicit */
}

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  height: 40px;
}

.main-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.main-nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover {
  border-bottom-color: var(--accent);
}

/* ---------------------------------------------------------
   SECTION 1: BIG LOGO HERO
--------------------------------------------------------- */

.logo-hero {
  padding: 40px 0 16px;
  text-align: center;
}

.logo-hero-img {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.scroll-hint {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------
   SECTION 2: MAIN PLAYER
--------------------------------------------------------- */

.series-hero {
  padding: 30px 0 10px;
}

.series-header h1 {
  margin: 0 0 6px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.series-header p {
  margin: 0 0 16px;
  color: var(--muted);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------------------
   SECTION 3: COPY UNDER PLAYER
--------------------------------------------------------- */

.about-copy {
  padding: 30px 0 40px;
}

.about-copy .lead {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.about-copy p {
  color: var(--muted);
  margin-top: 0.7rem;
}

/* ---------------------------------------------------------
   SECTION 4: FORM
--------------------------------------------------------- */

.register-section {
  padding: 40px 0;
}

.register-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.register-text h2 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.register-text p {
  color: var(--muted);
}

.register-form {
  display: grid;
  gap: 14px;
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.register-form label {
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
}

.register-form input,
.register-form textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
}

.register-form input:focus,
.register-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.register-form button {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}

.register-form button:hover {
  filter: brightness(0.9);
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ABOUT PAGE SIDE-BY-SIDE LAYOUT */

.about-section {
  padding: 40px 0 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.about-text p {
  color: var(--muted);
  margin-top: 0.7rem;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-top: 20px;
  }
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 880px) {
  .register-grid {
    grid-template-columns: 1fr;
  }

  .logo-hero-img {
    width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .series-header h1 {
    font-size: 1.4rem;
  }
}
