/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.5;
}

/* Wrap container */
.wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background-color: #2d6a4f;
  color: #fff;
  padding: 12px 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar .brand {
  font-weight: bold;
  font-size: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.nav a:hover {
  opacity: 0.8;
}

/* Hero */
.hero {
  background: #daf0e2;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #105d38;
}

.hero .lead {
  font-size: 16px;
  color: #333;
}

/* === Hero Images for Individual Province Pages === */
.city-hero {
  width: 80%;        /* reduce width from full container */
  max-height: 300px; /* limit height */
  object-fit: cover; 
  margin-top: 20px;
  border-radius: 8px;
}

/* City Cards Section */
.cities {
  padding: 40px 0;
}

.city-grid {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.city-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 32%;
  text-align: center;
  overflow: hidden;
  padding-bottom: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.city-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.city-card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
  color: #105d38;
}

.city-card p {
  font-size: 14px;
  color: #444;
  padding: 0 10px;
}

/* Other Provinces Section */
.other-provinces {
  padding: 40px 20px;
  background-color: #f0f7f4;
}

.other-provinces h2 {
  text-align: center;
  font-size: 26px;
  color: #105d38;
  margin-bottom: 30px;
}

.province-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.province-card {
  background-color: #fff;
  width: 32%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  padding-bottom: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.province-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.province-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.province-card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
  color: #105d38;
}

.province-card h3 a {
  text-decoration: none;
  color: #105d38;
}

.province-card h3 a:hover {
  color: #2d6a4f;
}

.province-card p {
  font-size: 14px;
  color: #444;
  padding: 0 10px;
  margin-bottom: 10px;
}

/* Top 5 Things Section */
.top5 {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.top5 h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
  color: #105d38;
}

.top5 ol {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
}

.top5 li {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Footer */
.footer {
  background-color: #e6e6e6;
  text-align: center;
  padding: 14px 0;
  font-size: 14px;
  color: #333;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .city-card, .province-card { width: 48%; }
}

@media (max-width: 600px) {
  .city-grid, .province-grid { flex-direction: column; align-items: center; }
  .city-card, .province-card { width: 80%; }
}


/* =========================
   Blog Layout & Formatting
   ========================= */

.blog-layout {
  display: flex;
  gap: 30px;
  padding: 40px 20px;
}

/* Sidebar */
.blog-sidebar {
  width: 260px;
}

.blog-sidebar h3 {
  color: #105d38;
  margin-bottom: 15px;
}

.blog-sidebar a {
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
  color: #105d38;
  font-weight: 500;
}

.blog-sidebar a span {
  display: block;
  font-size: 13px;
  color: #666;
}

.blog-sidebar a:hover {
  color: #2d6a4f;
}

.blog-sidebar a.active {
  font-weight: bold;
}

/* Blog content */
.blog-content {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-content h2,
.blog-content h3 {
  color: #105d38;
  margin: 28px 0 14px;
}

.blog-content p {
  margin-bottom: 16px;
  color: #333;
}

.blog-content ul,
.blog-content ol {
  margin: 16px 0 16px 20px;
}

.blog-content li {
  margin-bottom: 8px;
}

.blog-related {
  margin-top: 25px;
  font-weight: bold;
}

/* Responsive blog */
@media (max-width: 900px) {
  .blog-layout {
    flex-direction: column;
  }

  .blog-sidebar {
    width: 100%;
  }
}

