/* ── NAVIGATION ── */
.ds-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px;
  background: rgba(10,10,15,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}
.ds-nav.scrolled { border-bottom-color: rgba(168,85,247,0.18); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; gap: 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0; text-decoration: none;
}
.nav-logo img { height: 34px; width: auto; }
.nav-logo-text {
  font-size: 19px; font-weight: 700;
  color: #fff; letter-spacing: -0.4px;
  font-family: var(--font);
}
.nav-logo-text span { color: var(--accent); }

/* Fallback text-only logo */
.nav-logo-fallback {
  font-size: 19px; font-weight: 700;
  color: var(--accent); letter-spacing: -.5px;
  font-family: var(--font);
}
.nav-logo-fallback em { color: #fff; font-style: normal; }

.nav-links { display:flex;gap:4px;align-items:center; }
.nav-links a {
  font-family: var(--font); font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: color .15s, background .15s;
  text-decoration: none; padding: 6px 12px;
  border-radius: var(--radius-sm); position: relative;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,.04); }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -4px; left: 12px; right: 12px;
  height: 2px; background: var(--accent);
  border-radius: 2px;
}

/* Film Submission — premium teaser for non-members */
.nav-links a.nav-premium-hint {
  color: rgba(168,85,247,0.5);
}
.nav-links a.nav-premium-hint:hover { color: var(--accent); }

.nav-right { display:flex;align-items:center;gap:10px;flex-shrink:0; }

.nav-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); /* sharp */
  padding: 7px 13px; transition: border-color .15s; width: 200px;
}
.nav-search:focus-within { border-color: var(--accent); }
.nav-search svg { flex-shrink: 0; opacity: 0.4; }
.nav-search input {
  background: transparent; border: none; outline: none;
  color: var(--text-primary); font-size: 13px; width: 100%;
  font-family: var(--font);
}
.nav-search input::placeholder { color: var(--text-hint); }

/* Mobile hamburger */
.nav-toggle {
  display: none; background: transparent; border: none;
  flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-muted); border-radius: 2px;
  transition: all .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile full-screen drawer */
.nav-drawer {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  z-index: 999; padding: 20px 24px;
  flex-direction: column; gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; animation: drawerIn .22s ease; }
@keyframes drawerIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.nav-drawer a {
  font-family: var(--font); font-size: 16px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  padding: 14px 16px; border-radius: var(--radius-md);
  border: 1px solid transparent; transition: all .15s;
}
.nav-drawer a:hover, .nav-drawer a.active {
  color: var(--text-primary); background: var(--bg-card); border-color: var(--border);
}
.drawer-divider { height: 1px; background: var(--border); margin: 8px 0; }
.drawer-cta { margin-top: auto; padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-search { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .nav-logo img { height: 28px; }
}

/* ── FOOTER ── */
.ds-footer {
  background: #07070f;
  border-top: 1px solid var(--border);
  padding: 52px 0 0; margin-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; margin-bottom: 14px;
}
.footer-brand-logo img { height: 30px; width: auto; }
.footer-brand-logo span { font-family: var(--font); font-size: 17px; font-weight: 700; color: #fff; }
.footer-brand-logo span em { color: var(--accent); font-style: normal; }
.footer-brand p { font-size: 13px; color: var(--text-hint); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-social { display:flex;gap:8px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-sm); /* sharp */
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all .15s;
  font-size: 13px; font-weight: 700; text-decoration: none; font-family: var(--font);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.footer-col h4 { font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .8px; }
.footer-col ul { display:flex;flex-direction:column;gap:10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-hint); transition: color .15s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid #141420; padding: 18px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: #3a3a5a; }
.footer-bottom-links { display:flex;gap:18px; }
.footer-bottom-links a { font-size: 12px; color: #3a3a5a; transition: color .15s; }
.footer-bottom-links a:hover { color: var(--accent); }

@media(max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr;gap:28px;} }
@media(max-width:540px){ .footer-grid{grid-template-columns:1fr;} }
