/* Clothia Website — Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --bg: #111118;
  --bg-card: #1a1a22;
  --fg: #f2f2f2;
  --fg-muted: #868689;
  --primary: #3474a8;
  --primary-light: #4a8ec4;
  --border: #2e2e38;
  --accent: #6b3fa0;
  --radius: 16px;
  --max-width: 800px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-light); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

img { max-width: 100%; display: block; }

/* ─── Nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17,17,24,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--fg);
}
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-size: .85rem; color: var(--fg-muted); font-weight: 500; }
.nav-links a:hover { color: var(--fg); }

/* ─── Container ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ─── Hero ─── */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
}
.hero-icon {
  width: 100px; height: 100px;
  border-radius: 22px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  margin-bottom: 12px;
}
.hero .tagline {
  font-size: 1.15rem; color: var(--primary-light);
  font-weight: 500; margin-bottom: 8px;
}
.hero .subtitle {
  font-size: .95rem; color: var(--fg-muted);
  max-width: 520px; margin: 0 auto 32px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 14px 32px; border-radius: 14px;
  font-size: .95rem; font-weight: 600;
  transition: transform .15s, box-shadow .15s;
  border: none; cursor: pointer;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(52,116,168,.4); opacity: 1; }
.cta-btn svg { width: 22px; height: 22px; }

/* ─── Features ─── */
.features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; padding: 0 24px 60px;
  max-width: var(--max-width); margin: 0 auto;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.feature-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.feature-card p { font-size: .82rem; color: var(--fg-muted); line-height: 1.5; }

/* ─── Section ─── */
.section { padding: 48px 24px; max-width: var(--max-width); margin: 0 auto; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  margin-bottom: 8px;
}

/* ─── Legal Pages ─── */
.legal { padding: 48px 24px 80px; max-width: var(--max-width); margin: 0 auto; }
.legal h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; margin-bottom: 8px;
}
.legal .updated { font-size: .82rem; color: var(--fg-muted); margin-bottom: 32px; }
.legal h2 {
  font-size: 1.1rem; font-weight: 600;
  margin: 32px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal p, .legal li { font-size: .88rem; color: var(--fg-muted); margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--fg); }

/* ─── Support Page ─── */
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px; text-align: center;
  margin-bottom: 40px;
}
.support-card .emoji { font-size: 2.5rem; margin-bottom: 16px; }
.support-card h2 { font-size: 1.2rem; margin-bottom: 8px; }
.support-card p { color: var(--fg-muted); font-size: .9rem; margin-bottom: 16px; }
.support-card a.email-btn {
  display: inline-block;
  background: var(--primary); color: #fff;
  padding: 12px 28px; border-radius: 12px;
  font-weight: 600; font-size: .9rem;
}

.faq { margin-top: 16px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq-item h3 { font-size: .9rem; font-weight: 600; margin-bottom: 6px; }
.faq-item p { font-size: .82rem; color: var(--fg-muted); }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
}
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 12px; flex-wrap: wrap; }
.footer-links a { font-size: .82rem; color: var(--fg-muted); }
.footer-copy { font-size: .75rem; color: var(--fg-muted); opacity: .6; }

/* ─── 404 ─── */
.not-found { text-align: center; padding: 120px 24px; }
.not-found h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 8px; }
.not-found p { color: var(--fg-muted); margin-bottom: 24px; }

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .tagline { font-size: 1rem; }
  .features { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .8rem; }
  .legal h1 { font-size: 1.4rem; }
}
