/* Gauteng page styles */
/* Shared/base styles remain in style.css */

body.gauteng {
	background:
		radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.22), transparent 42%),
		linear-gradient(165deg, #eff3ff 0%, #e4eafe 50%, #d8def4 100%);
	color: #1d2740;
}

body.gauteng .hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #273a73 0%, #334b94 52%, #4462bd 100%);
	color: #fff;
	padding: 48px 14px 40px;
	border-bottom: 3px solid #a8bae8;
	box-shadow: 0 8px 20px rgba(21, 34, 67, 0.28);
}

body.gauteng .hero::after {
	content: "";
	position: absolute;
	right: -42px;
	top: -48px;
	width: 165px;
	height: 165px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(198, 210, 250, 0.34), rgba(198, 210, 250, 0));
	pointer-events: none;
}

body.gauteng .hero h1 {
	margin: 0;
	font-size: clamp(1.5rem, 4.1vw, 2.3rem);
	letter-spacing: 0.45px;
	text-transform: uppercase;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

body.gauteng .navbar {
	background: linear-gradient(90deg, #25376c 0%, #32498e 100%);
	box-shadow: 0 4px 12px rgba(21, 34, 67, 0.2);
}

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.35);
	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.22);
	border-color: rgba(255, 255, 255, 0.66);
	transform: translateY(-1px);
}

body.gauteng main {
	width: min(1000px, calc(100% - 24px));
	margin: 22px auto;
	display: grid;
	gap: 16px;
}

body.gauteng .province-content {
	margin: 0;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid #cfd8f0;
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(34, 56, 109, 0.12);
	padding: 18px 16px;
}

body.gauteng .province-content h3 {
	margin: 0 0 14px;
	color: #2c4384;
	font-size: clamp(1.15rem, 3vw, 1.55rem);
}

body.gauteng .districts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

body.gauteng .districts li {
	background: linear-gradient(145deg, #fdfeff 0%, #eef2fc 100%);
	border: 1px solid #d9e1f3;
	border-radius: 10px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.gauteng .districts li:hover {
	transform: translateY(-2px);
	border-color: #9cb0e2;
	box-shadow: 0 8px 16px rgba(50, 77, 144, 0.14);
}

body.gauteng .districts a {
	display: block;
	padding: 12px 14px;
	color: #24417e;
	text-decoration: none;
	font-weight: 600;
}

body.gauteng .districts a:hover {
	color: #182b53;
}

/* Resilient styling for the current standalone "News" heading/list structure */
body.gauteng main > h2 {
	margin: 0;
	color: #2c4384;
	font-size: clamp(1.1rem, 2.8vw, 1.45rem);
}

body.gauteng main > h2 + ul {
	list-style: none;
	margin: 0;
	padding: 16px;
	min-height: 44px;
	border: 1px dashed #b8c6eb;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.76);
}

body.gauteng footer {
	background: #1c2c59;
	color: #dde6fb;
}

body.gauteng footer a,
body.gauteng .footer-links a {
	color: #b6c9f5;
}

body.gauteng footer a:hover,
body.gauteng .footer-links a:hover {
	color: #fff;
}

/* Gauteng travel banner styling */
body.gauteng .travel-banner-gauteng {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  margin: 24px 16px;
  border: 3px solid #fbbf24;
}

body.gauteng .travel-banner-gauteng .banner-content h2 {
  color: #fef3c7;
  text-shadow: 2px 2px 8px rgba(30, 58, 138, 0.8);
}

body.gauteng .travel-banner-gauteng .banner-content p {
  color: #f9fafb;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

body.gauteng .travel-banner-gauteng .cta-button {
  background: #fbbf24;
  color: #1e3a8a;
  font-weight: 700;
  border: 2px solid #fef3c7;
}

body.gauteng .travel-banner-gauteng .cta-button:hover {
  background: #fef3c7;
  color: #1e3a8a;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

@media (min-width: 720px) {
	body.gauteng .province-content {
		padding: 24px 22px;
	}

	body.gauteng .districts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1020px) {
	body.gauteng .districts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}


