:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #17233d;
  --muted: #556080;
  --accent: #1f72bd;
  --border: #dfe3eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(135deg, #224a7a 0%, #1f5aa5 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
}

.dhaka-page .site-header {
  background: linear-gradient(180deg, rgba(34, 74, 122, 0.7), rgba(31, 90, 165, 0.8)), url("https://images.unsplash.com/photo-1525935944576-a9f8a0d6d30f?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.site-nav {
  display: inline-flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.2rem auto 0;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.site-header p {
  margin: 1rem auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.contact-block {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
  border-radius: 14px;
}

.contact-email {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-caption {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.intro {
  margin-top: 2rem;
  padding: 2rem 0;
}

.intro h2 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
}

.place-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 4rem;
}

.place-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(16, 32, 64, 0.08);
}

.place-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.place-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.place-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.place-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--muted);
}

.place-card li {
  margin-bottom: 0.5rem;
}

.visitor-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 2rem;
}

.visitor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(16, 32, 64, 0.08);
}

.visitor-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--accent);
}

.visitor-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.visitor-card li {
  margin-bottom: 0.75rem;
}

.site-footer {
  background: #17233d;
  color: #d7e1f3;
  text-align: center;
  padding: 1.5rem 0;
}

.footer-note,
.footer-credit {
  margin: 0.5rem 0 0;
  color: #e8eef9;
}

.footer-note {
  font-size: 1rem;
  font-weight: 600;
}

.footer-credit {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .site-header {
    padding: 3rem 1rem 2rem;
  }

  .intro {
    padding: 1rem 0;
  }
}
