/* ADUCheatSheet.com - Global Styles */
:root {
  --primary: #1a5f3a;
  --primary-light: #e8f5e9;
  --accent: #d4a017;
  --accent-light: #fff8e1;
  --text: #1a1a2e;
  --text-light: #555;
  --bg: #fafafa;
  --card-bg: #ffffff;
  --border: #e0e0e0;
  --radius: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  background: linear-gradient(135deg, var(--primary) 0%, #2d7a4e 100%);
  color: white;
  padding: 40px 0 30px;
  text-align: center;
}
header h1 { font-size: 1.8rem; margin-bottom: 8px; }
header p { opacity: 0.9; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* City Grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  padding: 30px 0;
}
.city-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--text);
  display: block;
}
.city-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.city-card h3 { font-size: 1.1rem; margin-bottom: 4px; color: var(--primary); }
.city-card .state-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.city-card p { font-size: 0.9rem; color: var(--text-light); }

/* State Sections */
.state-section { margin: 40px 0 20px; }
.state-section h2 {
  font-size: 1.4rem;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* City Page Specific */
.city-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2d7a4e 100%);
  color: white;
  padding: 40px 0;
  text-align: center;
}
.city-hero h1 { font-size: 2rem; margin-bottom: 10px; }
.city-hero p { opacity: 0.9; max-width: 650px; margin: 0 auto; }

.data-table { width: 100%; border-collapse: collapse; margin: 30px 0; }
.data-table th {
  background: var(--primary);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.data-table tr:nth-child(even) { background: var(--primary-light); }
.data-table tr:last-child td { border-bottom: none; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--accent-light) 0%, #fff3cd 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px;
  margin: 30px 0;
  text-align: center;
}
.cta-section h3 { color: var(--text); font-size: 1.2rem; margin-bottom: 12px; }
.cta-section p { color: var(--text-light); margin-bottom: 20px; font-size: 0.95rem; }
.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}
.cta-button:hover { background: #0f4a2e; transform: translateY(-1px); }

/* Breadcrumbs */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* Footer */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}
footer a { color: var(--accent); text-decoration: none; }

/* Disclaimer */
.disclaimer {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 20px 0;
  font-size: 0.85rem;
  color: #856404;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 { font-size: 1.4rem; }
  .city-hero h1 { font-size: 1.5rem; }
  .city-grid { grid-template-columns: 1fr; }
}
