/* Tshwane district page styles */
/* Shared/base styles stay in style.css */

body.gauteng {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(160deg, #eef2f6 0%, #e1e8ef 52%, #d4dde6 100%);
  color: #1f2933;
}

body.gauteng .hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f2b46 0%, #17486f 52%, #1f5d89 100%);
  color: #fff;
  padding: 28px 14px 20px;
  border-bottom: 3px solid #56a3d9;
  box-shadow: 0 8px 20px rgba(14, 37, 56, 0.28);
}

body.gauteng .hero::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -30px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 207, 255, 0.35), rgba(137, 207, 255, 0));
  pointer-events: none;
}

body.gauteng .hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4.2vw, 2.3rem);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.26);
}

body.gauteng .navbar {
  background: linear-gradient(90deg, #12324f 0%, #184b74 100%);
  box-shadow: 0 4px 12px rgba(10, 30, 47, 0.18);
}

body.gauteng .navbar ul {
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.gauteng .navbar a {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

body.gauteng .navbar a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

body.gauteng main {
  width: min(1060px, calc(100% - 24px));
  margin: 22px auto;
  display: grid;
  gap: 18px;
}

body.gauteng .province-content {
  margin: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #c8d6e2;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(21, 43, 60, 0.12);
  padding: 18px 16px;
}

body.gauteng .province-meta h2 {
  margin: 0 0 14px;
  color: #18486d;
  font-size: clamp(1.15rem, 3vw, 1.55rem);
}

body.gauteng .main-places,
body.gauteng .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.gauteng .main-places {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

body.gauteng .main-places li,
body.gauteng .news-list li {
  background: linear-gradient(145deg, #fdfefe 0%, #f2f7fb 100%);
  border: 1px solid #d7e3ed;
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.gauteng .main-places a,
body.gauteng .news-list a {
  display: block;
  padding: 11px 12px;
  color: #14456b;
  text-decoration: none;
  font-weight: 600;
}

body.gauteng .main-places li:hover,
body.gauteng .news-list li:hover {
  transform: translateY(-2px);
  border-color: #7db5db;
  box-shadow: 0 8px 16px rgba(30, 70, 98, 0.14);
}

body.gauteng .main-places a:hover,
body.gauteng .news-list a:hover {
  color: #0f2b46;
}

body.gauteng .news-list {
  display: grid;
  gap: 10px;
}

body.gauteng footer {
  background: #112c43;
  color: #d8e7f2;
}

body.gauteng footer a,
body.gauteng .footer-links a {
  color: #9fd3f7;
}

body.gauteng footer a:hover,
body.gauteng .footer-links a:hover {
  color: #fff;
}

@media (min-width: 700px) {
  body.gauteng .province-content {
    padding: 22px 20px;
  }

  body.gauteng .main-places {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  body.gauteng .hero {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  body.gauteng .main-places {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
