/* Malnad Talkies — landing site
   Matches the Chitralekha app design language: DM Sans, slate palette. */

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-raised: #f1f5f9;
  --border: #e2e8f0;
  --accent: #18181b;
  --text: #0f172a;
  --text-muted: #475569;
  --text-faint: #64748b;
  --dark-panel: #0f172a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--text);
  text-decoration: none;
}

/* ─── Header / nav ───────────────────────────────────────────── */

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover {
  background: var(--surface-raised);
  color: var(--text);
}

.nav-link.active {
  background: var(--accent);
  color: #fff;
}

/* ─── Hero ───────────────────────────────────────────────────── */

.hero {
  background: var(--dark-panel);
  color: #fff;
  padding: 120px 28px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.hero p.lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0 auto;
  max-width: 580px;
}

/* ─── Sections ──────────────────────────────────────────────── */

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 28px;
}

.section + .section {
  margin-top: 80px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 12px;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.section p {
  color: var(--text-muted);
  margin: 0 0 16px;
  max-width: 680px;
}

.section p.lead {
  font-size: 1.1rem;
  color: var(--text);
}

/* ─── Service card ──────────────────────────────────────────── */

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
  margin-top: 32px;
  max-width: 720px;
}

.service-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.service-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-body { flex: 1; }

.service-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.service-tag {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-faint);
  margin: 0 0 12px;
}

.service-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.15s;
}

.service-link:hover { opacity: 0.85; }

/* ─── Coming-soon card ──────────────────────────────────────── */

.coming-soon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
  max-width: 720px;
}

.coming-soon-pill {
  display: inline-block;
  background: var(--surface-raised);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ─── Footer ────────────────────────────────────────────────── */

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 28px;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.9rem;
}

footer .kannada {
  font-style: italic;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── Responsive ────────────────────────────────────────────── */

@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .nav-link { padding: 6px 12px; font-size: 0.9rem; }
  .hero { padding: 80px 20px 70px; }
  main { padding: 60px 20px; }
  .service-card { flex-direction: column; padding: 24px; }
}
