/* SnapItID — SEO Landing Pages */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --accent: #f59e0b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.10);
  --max-width: 960px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.35rem; font-weight: 700; color: var(--primary);
  text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }

/* Hero */
.hero {
  max-width: var(--max-width); margin: 0 auto;
  padding: 64px 24px 48px; text-align: center;
}
.hero h1 {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -1px;
  line-height: 1.2; margin-bottom: 16px; color: var(--text);
}
.hero p {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 640px; margin: 0 auto 32px;
}

/* Content section */
.section {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 24px 48px;
}
.section h2 {
  font-size: 1.6rem; font-weight: 700; margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.section h3 { font-size: 1.15rem; font-weight: 600; margin: 24px 0 8px; }
.section p { margin-bottom: 14px; color: var(--text); }
.section ul, .section ol { margin: 0 0 20px 24px; }
.section li { margin-bottom: 8px; }

/* Requirements table */
.req-table {
  width: 100%; border-collapse: collapse; margin: 20px 0 32px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.req-table th, .req-table td {
  padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--border);
}
.req-table th { background: var(--primary); color: #fff; font-weight: 600; font-size: 0.9rem; }
.req-table td { background: var(--bg); font-size: 0.95rem; }
.req-table tr:last-child td { border-bottom: none; }

/* Photo examples */
.examples {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin: 24px 0 32px;
}
.example-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  box-shadow: var(--shadow);
}
.example-card.correct { border-top: 4px solid #22c55e; }
.example-card.incorrect { border-top: 4px solid #ef4444; }
.example-card h4 { margin-bottom: 12px; font-size: 1rem; }
.example-card.correct h4 { color: #16a34a; }
.example-card.incorrect h4 { color: #dc2626; }
.example-img {
  width: 180px; height: 220px; margin: 0 auto 12px;
  border-radius: 8px; border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); font-size: 0.8rem; color: var(--text-muted);
}
.example-card ul { text-align: left; font-size: 0.88rem; margin: 0; }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius); padding: 40px 32px;
  text-align: center; margin: 32px 0;
  box-shadow: var(--shadow-lg);
}
.cta-section h2 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; border: none; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.btn-cta {
  display: inline-block; background: var(--accent); color: #1e293b;
  font-weight: 700; font-size: 1.1rem; padding: 14px 40px;
  border-radius: 50px; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,0.5); }

/* FAQ */
.faq { margin: 32px 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  background: var(--bg-alt); padding: 16px 20px;
  font-weight: 600; font-size: 1rem; cursor: default;
}
.faq-a {
  padding: 14px 20px; font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border); padding: 32px 24px;
  text-align: center; color: var(--text-muted); font-size: 0.85rem;
}
.footer a { color: var(--primary); text-decoration: none; }

/* Breadcrumb */
.breadcrumb {
  max-width: var(--max-width); margin: 0 auto;
  padding: 12px 24px 0; font-size: 0.85rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }

/* Country page grid */
.country-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px; margin: 24px 0;
}
.country-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-decoration: none; color: var(--text);
  box-shadow: var(--shadow); transition: transform 0.15s, box-shadow 0.15s;
}
.country-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.country-card h3 { font-size: 1.1rem; margin: 0 0 8px; color: var(--primary); }
.country-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Responsive */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.8rem; }
  .examples { grid-template-columns: 1fr; }
  .nav-links { gap: 12px; }
  .country-grid { grid-template-columns: 1fr; }
}
