/* Constitution Colors & Theme */
:root {
  --primary-dark: #2A2A2A;      /* Primary grey */
  --primary: #404040;           /* Medium grey */
  --primary-light: #5A5A5A;     /* Light grey */
  --secondary: #1A1A1A;         /* Black (emphasis) */
  --neutral-bg: #F5F5F5;        /* Off-white background */
  --text-primary: #2A2A2A;
  --text-secondary: #666666;
  --border: #D9D9D9;
  --success: #27AE60;
  --error: #E74C3C;
}

/* Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
  background-color: var(--neutral-bg);
  margin: 0;
  padding: 15px;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--secondary);
  margin-top: 1em;
  margin-bottom: 0.4em;
}

h1 {
  font-size: 2.2em;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 0.3em;
  margin-top: 0;
}

h2 {
  font-size: 1.5em;
  border-left: 4px solid var(--primary);
  padding-left: 0.8em;
  margin-left: 0;
}

h3 {
  font-size: 1.1em;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Resume Section */
.resume {
  margin-bottom: 20px;
}

.resume ul {
  margin: 0.5em 0;
  padding-left: 1.8em;
}

.resume li {
  margin: 0.3em 0;
}

.resume strong {
  color: var(--secondary);
}

.resume em {
  font-style: italic;
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--primary);
  transition: all 0.2s ease;
}

a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* Export Section */
.export-section {
  text-align: center;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

/* Paragraphs */
p {
  margin: 0.6em 0;
  line-height: 1.6;
}
