/* ============================================
   SOLID CHROME — styles.css
   Dark & Cinematic
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #080808;
  --deep: #0e0e0e;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --chrome: #c8c8c8;
  --chrome-bright: #e8e8e8;
  --chrome-dim: #888888;
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --white: #f5f5f0;
  --red-accent: #8b1a1a;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-mono: 'DM Mono', monospace;

  --section-pad: 120px 80px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--chrome);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0) 100%);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(200, 200, 200, 0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--chrome-bright);
  cursor: default;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome-dim);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-light);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(184, 150, 46, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 26, 26, 0.08) 0%, transparent 50%),
    var(--black);
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: heroFadeIn 1.4s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(96px, 16vw, 200px);
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--chrome-bright);
  text-shadow: 0 0 80px rgba(200, 200, 200, 0.08);
  margin-bottom: 32px;
}

.hero-title-chrome {
  background: linear-gradient(135deg, #d0d0d0 0%, #ffffff 30%, #909090 60%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--chrome-dim);
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 14px 40px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--chrome-dim);
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   SECTIONS — BASE
   ============================================ */
.section {
  padding: 120px 80px;
  position: relative;
}

.section-dark {
  background: var(--deep);
  border-top: 1px solid rgba(200,200,200,0.05);
  border-bottom: 1px solid rgba(200,200,200,0.05);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.08em;
  color: var(--chrome-bright);
  margin-bottom: 72px;
  line-height: 1;
}

/* ============================================
   FILMS GRID
   ============================================ */
.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px;
}

.film-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.film-card-visual {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}

.film-card-visual.sallie {
  background: url('assets/SalllieSmiled-Web-Poster.png') center/cover no-repeat;
}

.film-card-visual.folklore {
  background: url('assets/Folklore.png') center/cover no-repeat;
}

.film-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
  transition: opacity 0.4s ease;
}

.film-card:hover .film-card-overlay {
  opacity: 0.5;
}

.film-card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.7;
}

.film-card-body {
  padding: 32px 36px 40px;
  background: var(--surface);
  border-top: 1px solid rgba(184,150,46,0.2);
}

.film-title {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.06em;
  color: var(--chrome-bright);
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.film-title:hover {
  color: var(--gold-light);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  pointer-events: none;
}

.film-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.film-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--chrome-dim);
  line-height: 1.7;
  font-style: italic;
}

.film-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 24px;
  opacity: 0.5;
}

/* ============================================
   IN PRODUCTION
   ============================================ */
.production-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
}

.production-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--red-accent);
  padding: 5px 14px;
  margin-bottom: 24px;
  animation: pulseBadge 2.5s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.production-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  letter-spacing: 0.05em;
  color: var(--chrome-bright);
  line-height: 0.95;
  margin-bottom: 12px;
}

.production-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.production-desc {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--chrome-dim);
  line-height: 1.8;
  margin-bottom: 40px;
}

.production-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid rgba(184,150,46,0.3);
  padding-left: 28px;
}

.detail-item {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.detail-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 90px;
}

.detail-value {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--chrome);
}

/* Production Visual Frame */
.production-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.production-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 460px;
  background: 
    linear-gradient(135deg, rgba(139,26,26,0.25) 0%, rgba(8,8,8,0.8) 60%, rgba(184,150,46,0.1) 100%),
    var(--surface);
  border: 1px solid rgba(184,150,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.production-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184,150,46,0.1);
  pointer-events: none;
}

.production-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.15) 3px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  opacity: 0.4;
}

.production-frame-inner {
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.production-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--chrome-bright);
  line-height: 1.5;
  margin-bottom: 20px;
}

.production-quote-attr {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ============================================
   ABOUT
   ============================================ */
.about-content {
  max-width: 700px;
}

.about-body {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.75;
  color: var(--chrome-dim);
  font-weight: 300;
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
  background: var(--deep);
  border-top: 1px solid rgba(200,200,200,0.05);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-body {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--chrome-dim);
  font-style: italic;
}

.contact-email {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-email:hover {
  color: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 80px;
  border-top: 1px solid rgba(200,200,200,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--chrome-dim);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(136, 136, 136, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .section {
    padding: 80px 32px;
  }

  .nav {
    padding: 0 28px;
  }

  .nav-links {
    gap: 24px;
  }

  .films-grid {
    grid-template-columns: 1fr;
  }

  .production-feature {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .production-visual {
    display: none;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 72px;
  }
}
