/* People of Fort Meade - Main Stylesheet */

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

body {
  font-family: 'Georgia', serif;
  color: #222;
  background: #f9f9f7;
  line-height: 1.7;
}

/* Header */
header {
  background: #1a3a2a;
  color: white;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: 70px;
}

header .logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: white;
}

header nav a {
  color: #cde8d8;
  text-decoration: none;
  margin-left: 1.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

header nav a:hover {
  color: white;
  text-decoration: underline;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1a3a2a 0%, #2d6644 100%);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #cde8d8;
  font-family: Arial, sans-serif;
}

.btn {
  display: inline-block;
  background: #e8a020;
  color: white;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn:hover {
  background: #c8881a;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  margin-left: 1rem;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

section h2 {
  font-size: 1.9rem;
  color: #1a3a2a;
  margin-bottom: 1rem;
  border-bottom: 3px solid #e8a020;
  padding-bottom: 0.4rem;
  display: inline-block;
}

section p {
  font-family: Arial, sans-serif;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Issues list */
.issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.issue-card {
  background: white;
  border-left: 4px solid #e8a020;
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.issue-card h3 {
  color: #1a3a2a;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.issue-card p {
  font-size: 0.95rem;
  margin: 0;
  color: #444;
}

/* Petition */
.petition-box {
  background: #1a3a2a;
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.petition-box h2 {
  color: white;
  border-bottom-color: #e8a020;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.petition-box p {
  color: #cde8d8;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.petition-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.petition-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
}

.petition-form button {
  background: #e8a020;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.petition-form button:hover {
  background: #c8881a;
}

.signature-count {
  margin-top: 1rem;
  font-family: Arial, sans-serif;
  color: #cde8d8;
  font-size: 0.95rem;
}

/* News preview */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.news-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.news-card-body {
  padding: 1.2rem;
}

.news-card .date {
  font-size: 0.82rem;
  color: #888;
  font-family: Arial, sans-serif;
  margin-bottom: 0.4rem;
}

.news-card h3 {
  color: #1a3a2a;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.news-card p {
  font-size: 0.92rem;
  color: #555;
  margin: 0;
}

.news-card a {
  display: inline-block;
  margin-top: 0.75rem;
  color: #2d6644;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: bold;
}

/* Footer */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 2rem;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

footer a {
  color: #cde8d8;
  text-decoration: none;
}

/* Utility */
.section-dark {
  background: #f0f5f2;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
