.container-header {
  text-align: center;
  margin-bottom: 24px;
  background-image: url("./assets/images/locations.webp");
  background-size: contain;
  flex: 1;
  padding: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
}
.dark-mode .header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.header {
  padding: 20px 0;
  border-bottom: 1px solid black;
  text-align: center;
}
h1 {
  font-size: 2.5rem;
  margin: 8px 0;
  color: #111;
  text-align: center;
}
.dark-mode h1 {
  font-size: 2.5rem;
  margin: 8px 0;
  color: #fff;
  text-align: center;
}
.dark-mode h2 {
  font-size: 1.25rem;
  margin: 18px 0 8px;
  color: black;
}
h2 {
  font-size: 1.25rem;
  margin: 18px 0 8px;
  color: #111;
}
.dark-mode p.lead {
  color: var(--muted);
  margin: 0 0 14px;
  text-align: center;
}
p.lead {
  color: black;
  margin: 0 0 14px;
  text-align: center;
}
.regions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.region {
  border: 1px solid black;
  padding: 14px;
  border-radius: 8px;
  background: #fafafa;
}
.dark-mode .region {
  border: 1px solid #f0f0f0;
  padding: 14px;
  border-radius: 8px;
  background: white;
}

.region p {
  padding: 14px;
  border-radius: 8px;
  color: black;
}
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.city-link {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #eee;
  text-decoration: none;
  color: #111;
  font-size: 0.95rem;
}
.city-link:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: var(--accent);
  color: #a52c19;
}
/* City page specific styles */
.city-header {
  text-align: center;
  margin-bottom: 18px;
}
.city-header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.city-description {
  color: #111; /* ensure black description */
  max-width: 900px;
  margin: 0 auto 10px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.city-description-more {
  color: #111;
  max-width: 900px;
  margin: 8px auto 0;
  line-height: 1.7;
  font-size: 1rem;
  opacity: 0.95;
}
.city-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 18px 0;
}
.btn {
  background: var(--accent, #a52c19);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(165, 44, 25, 0.12);
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(165, 44, 25, 0.18);
}
.btn-outline {
  background: transparent;
  color: var(--accent, #a52c19);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--accent, #a52c19);
  font-weight: 700;
}

/* Dark mode tweaks */
.dark-mode .city-description,
.dark-mode .city-description-more {
  color: #e6e6e6;
}
.dark-mode .btn {
  box-shadow: none;
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.5rem;
  }
  .wrap {
    padding: 16px;
  }
}
