/* === CINEMATOR STORE — COMING SOON === */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #888;
  --font: 'Georgia', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-sans);
  font-size: 1.2rem; font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--text); text-decoration: none;
}
.logo span { color: var(--gold); }
.logo em { color: var(--text-muted); font-style: normal; font-weight: 400; font-size: 0.85em; }
.lang-switcher { display: flex; gap: 0.3rem; }
.lang-btn {
  background: none; border: 1px solid rgba(201,168,76,0.3);
  color: var(--text-muted); padding: 0.2rem 0.5rem;
  border-radius: 3px; font-size: 0.75rem; cursor: pointer;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active { border-color: var(--gold); color: var(--gold); }

/* HERO */
.hero {
  flex: 1;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
  overflow: hidden;
}
#filmCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.12;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 6rem 2rem 3rem;
  max-width: 860px; width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted); line-height: 1.9;
  margin-bottom: 3rem;
}

/* PRODUCTS PREVIEW */
.products-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 3rem;
}
.product-card {
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px; padding: 1.5rem;
  text-align: left;
}
.product-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.product-card div { font-size: 0.95rem; color: var(--text); font-weight: 600; margin-bottom: 0.4rem; }
.product-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* NOTIFY */
.notify-section { margin-bottom: 2.5rem; }
.notify-label {
  font-size: 0.9rem; color: var(--text-muted);
  margin-bottom: 0.8rem;
}
.email-form {
  display: flex; gap: 0.5rem; max-width: 400px;
  margin: 0 auto 0.8rem;
}
.email-form input {
  flex: 1; padding: 0.75rem 1rem;
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.3);
  color: var(--text); border-radius: 4px; font-size: 0.9rem;
}
.email-form input:focus { outline: none; border-color: var(--gold); }
.email-form button {
  background: var(--gold); color: var(--dark);
  border: none; padding: 0.75rem 1.5rem;
  border-radius: 4px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
  white-space: nowrap;
}
.email-form button:hover { background: var(--gold-light); }
.privacy-note {
  font-size: 0.78rem; color: var(--text-muted);
}

/* BACK LINK */
.back-link {
  display: inline-block;
  color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; letter-spacing: 0.05em;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.back-link:hover { color: var(--gold); border-bottom-color: rgba(201,168,76,0.3); }

/* FOOTER */
.footer {
  background: #050505; padding: 1.5rem;
  text-align: center; color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer a { color: var(--gold); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .products-preview { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
}
