/**
 * City page styles — SEO-friendly layout, preserves Tripuppy look
 */

.city-page {
  background: #0c0c0c;
  color: #fff;
  min-height: 100vh;
  font-family: var(--font, "Inter", sans-serif);
}

.city-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space, 20px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.city-header .logo {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.city-header .logo__mark img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.city-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin-left: 20px;
}

.city-nav a:hover {
  color: #fff;
}

.city-main {
  padding-top: 80px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.city-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius, 12px);
  margin-bottom: 32px;
}

.city-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-content {
  padding: 0 var(--space, 20px);
}

.city-h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.city-country {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px 0;
  font-size: 1.1rem;
}

.city-section {
  margin-bottom: 32px;
}

.city-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.city-section p {
  line-height: 1.7;
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.9);
}

.city-section a {
  color: #7dd3fc;
  text-decoration: none;
}

.city-section a:hover {
  text-decoration: underline;
}

.city-map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius, 12px);
  background: #1a1a1a;
}

.city-related a {
  font-weight: 500;
}

.city-footer {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.city-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.city-footer a:hover {
  color: #fff;
}

.photo-credit {
  margin-bottom: 8px;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.city-list a {
  color: #7dd3fc;
  text-decoration: none;
}

.city-list a:hover {
  text-decoration: underline;
}
