/* Voices of Uptown site styles */
:root {
  --primary-color: #1c3b59;
  --accent-color: #e8a807;
  --light-color: #f8f8f8;
  --text-color: #333;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--light-color);
}

/* Hero section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: 3rem;
  margin: 0.2rem 0;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero h2 {
  font-size: 1.5rem;
  margin: 0;
  font-style: italic;
  color: var(--accent-color);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
  max-width: 700px;
  margin: 1rem auto 2rem;
  font-size: 1rem;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.hero .btn {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.hero .btn.secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: #fff;
}

/* Generic sections */
.section {
  padding: 4rem 1rem;
  text-align: center;
}

.section-dark {
  background-color: var(--primary-color);
  color: #fff;
}

/* Neighborhood card grid */
.neighborhoods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  width: 280px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: 0.8rem 0.8rem 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.card p {
  margin: 0.5rem 0.8rem 1.2rem;
  font-size: 0.9rem;
  flex-grow: 1;
}

.card a {
  display: block;
  text-align: center;
  padding: 0.8rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

/* Forms */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group input[type="file"] {
  padding: 0.5rem;
  border: none;
  font-size: 1rem;
}

.form-group button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.form-group button:hover {
  opacity: 0.9;
}