/* ================================
   ROOT + RESET
================================ */

:root {
  --bg: #0b0b0b;
  --bg-soft: #111;
  --text-main: #f5f5f5;
  --text-muted: #b3b3b3;
  --text-subtle: #7a7a7a;
  --border: #1e1e1e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue",
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.55;
}

/* ================================
   TYPOGRAPHY
================================ */

h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

p {
  color: var(--text-muted);
  max-width: 720px;
}

a {
  color: var(--text-main);
  text-decoration: none;
}

a:hover {
  color: var(--text-main);
}

/* ================================
   LAYOUT
================================ */

.container {
  padding: 120px 0;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================
   NAVBAR
================================ */

.navbar-logo {
  width: 50px;
  height: auto;
  margin-right: 1300px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 11, 0.9),
    rgba(11, 11, 11, 0.6),
    rgba(11, 11, 11, 0)
  );
  backdrop-filter: blur(8px);
}

.nav-inner {
  width: 100%;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.nav-subtitle {
  font-size: 0.75rem;
  color: var(--text-subtle);
  margin-top: 2px;
}

.nav-links a {
  margin-left: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

/* ================================
   FILMS (CORE GINGER FEEL)
================================ */

.film-stack {
  display: flex;
  flex-direction: column;
}

.film-card {
  margin-bottom: 140px;
}

.hidden {
  display: none;
}

.film-video {
  width: 100%;
  margin-bottom: 20px;
}

.film-item {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* FILM HERO */
.film-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* HERO TEXT */
.film-hero-text {
  margin-top: 32px;
}

.film-hero-text h1 {
  font-size: 2rem;
  font-weight: 500;
}

.film-role {
  color: var(--text-muted);
  margin-top: 8px;
}

.film-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* CONTENT BELOW */
.film-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* TEXT BLOCK */
.film-text-block {
  max-width: 520px;
}

.film-text-block p {
  line-height: 1.7;
  color: var(--text-muted);
}

/* IMAGES */
.film-image img {
  width: 100%;
  display: block;
  background: #000;
}

/* FOOTER NAV */
.film-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 40px 8vw 60px;
  border-top: 1px solid var(--border);
}

.film-footer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.film-footer-nav a:hover {
  color: var(--text-main);
}

.nav-prev:hover {
  transform: translateX(-4px);
}

.nav-next:hover {
  transform: translateX(4px);
}

.nav-title {
  white-space: nowrap;
}



.film-grid-wrapper {
  max-width: 1700px;
  margin: 0 auto;
  padding: 120px 8vw;
}

/* GRID LAYOUT */
.film-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* FILM TILE */
.film-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

/* IMAGE */
.film-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.divider {
  margin-top: 300px;
}

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 160px 32px 120px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-image img {
  width: 30%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin-left: 160px;
}

/* HOVER OVERLAY */
.film-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0);
  opacity: 0;

  transition: opacity 0.4s ease, background 0.4s ease;
}

.film-info p {
  margin-right: auto;
  margin-left: auto;
}
.film-info {
  text-align: center;
}

.film-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.film-info h1 {
  margin-top: 32px;
  font-weight: 500;
}

.film-description {
  color: var(--text-muted);
  margin-top: 16px;
}

/* BOTTOM NAV */
.film-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 40px 8vw 60px;
  border-top: 1px solid var(--border);
}

.film-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.film-nav a:hover {
  color: var(--text-main);
}

.film-nav-prev:hover {
  transform: translateX(-4px);
}

.film-nav-next:hover {
  transform: translateX(4px);
}


/* TITLE */
.film-hover span {
  font-size: 1.2rem;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* HOVER EFFECTS */
.film-tile:hover img {
  filter: brightness(0.65);
  transform: scale(1.02);
}

.film-tile:hover .film-hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .film-grid {
    grid-template-columns: 1fr;
  }
}

.film-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
}

.film-overlay h3 {
  opacity: 0;
  transform: translateY(6px);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.film-item:hover img {
  filter: brightness(0.55);
  transform: scale(1.03);
}

.film-item:hover .film-overlay {
  background: rgba(0,0,0,0.25);
}

.film-item:hover h3 {
  opacity: 1;
  transform: translateY(0);
}

.film-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  background: #000;
  border-radius: 10px;
}

.film-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 16px;
}

.film-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.film-meta {
  font-size: 0.8rem;
  color: var(--text-subtle);
  max-width: 720px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ================================
   FOOTER (QUIET EXIT)
================================ */

.footer {
  padding: 80px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left:auto;
  margin-right: auto;
}

.footer p {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 28px;
  margin-top: 32px;

  font-size: 0.85rem;
  letter-spacing: 0.4px;
  font-weight: 500;

  color: var(--text-main);
  background: transparent;

  border: 1px solid var(--border);
  border-radius: 999px;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    color 0.25s ease;
}

.donate-btn:hover {
  background: rgba(255,255,255,0.04);
  border-color: #2a2a2a;
  transform: translateY(-1px);
}

.donate-btn:active {
  transform: translateY(0);
  background: rgba(255,255,255,0.08);
}

/* ================================
   FADE-IN ANIMATION
================================ */

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeIn 0.9s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .container {
    padding: 80px 0;
  }

  .nav-links a {
    margin-left: 16px;
  }

  .film-card {
    margin-bottom: 100px;
  }
}
