/* Mpumalanga page styles */
/* Shared/base styles remain in style.css */

body.mpumalanga {
	background:
		radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.22), transparent 42%),
		linear-gradient(165deg, #fff7ef 0%, #ffeedc 48%, #f6dfc2 100%);
	color: #3b2717;
}

body.mpumalanga .hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #c74a00 0%, #e76817 52%, #ff8f45 100%);
	color: #fff;
	padding: 48px 14px 36px;
	border-bottom: 3px solid #ffd39a;
	box-shadow: 0 8px 20px rgba(111, 47, 10, 0.28);
	text-align: center;
}

body.mpumalanga .hero::after {
	content: "";
	position: absolute;
	right: -40px;
	top: -28px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 228, 193, 0.34), rgba(255, 228, 193, 0));
	pointer-events: none;
}

body.mpumalanga .hero h1 {
	margin: 0 0 12px;
	font-size: clamp(1.55rem, 4vw, 2.25rem);
	text-transform: uppercase;
	letter-spacing: 0.45px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

body.mpumalanga .hero .navbar {
	background: transparent;
	box-shadow: none;
}

body.mpumalanga .navbar ul {
	flex-wrap: wrap;
	gap: 8px;
}

body.mpumalanga .navbar a {
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.11);
	font-size: 0.9rem;
	font-weight: 600;
	transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

body.mpumalanga .navbar a:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.66);
	transform: translateY(-1px);
}

/* Mpumalanga travel banner styling */
body.mpumalanga .travel-banner-mpumalanga {
  background: linear-gradient(135deg, #c74a00 0%, #e76817 100%);
  margin: 24px 16px;
  border: 3px solid #ffd39a;
}

body.mpumalanga .travel-banner-mpumalanga .banner-content h2 {
  color: #fff7ef;
  text-shadow: 2px 2px 8px rgba(199, 74, 0, 0.8);
}

body.mpumalanga .travel-banner-mpumalanga .banner-content p {
  color: #ffeedc;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

body.mpumalanga .travel-banner-mpumalanga .cta-button {
  background: #ffd39a;
  color: #3b2717;
  font-weight: 700;
  border: 2px solid #fff7ef;
}

body.mpumalanga .travel-banner-mpumalanga .cta-button:hover {
  background: #fff7ef;
  color: #c74a00;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

body.mpumalanga main {
	width: min(980px, calc(100% - 24px));
	margin: 22px auto;
}

body.mpumalanga .province-content {
	margin: 0;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid #f0d1b1;
	border-radius: 14px;
	box-shadow: 0 10px 28px rgba(111, 47, 10, 0.14);
	padding: 18px 16px;
}

body.mpumalanga .province-content h2 {
	margin: 0 0 12px;
	color: #a94b00;
	font-size: clamp(1.15rem, 3vw, 1.55rem);
}

body.mpumalanga .districts,
body.mpumalanga .news-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

body.mpumalanga .news-list {
	margin-bottom: 0;
}

body.mpumalanga .districts li,
body.mpumalanga .news-list li {
	background: linear-gradient(145deg, #fffdf8 0%, #fff5e8 100%);
	border: 1px solid #f4dcc2;
	border-radius: 10px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.mpumalanga .districts li:hover,
body.mpumalanga .news-list li:hover {
	transform: translateY(-2px);
	border-color: #e4a061;
	box-shadow: 0 8px 16px rgba(121, 58, 20, 0.14);
}

body.mpumalanga .districts a,
body.mpumalanga .news-list a {
	display: block;
	padding: 11px 12px;
	color: #8a3f02;
	text-decoration: none;
	font-weight: 600;
}

body.mpumalanga .districts a:hover,
body.mpumalanga .news-list a:hover {
	color: #6e3000;
}

body.mpumalanga footer {
	background: #4a1f00;
	color: #f4e2d0;
}

body.mpumalanga footer a,
body.mpumalanga .footer-links a {
	color: #ffd3a0;
}

body.mpumalanga footer a:hover,
body.mpumalanga .footer-links a:hover {
	color: #fff;
}

@media (min-width: 700px) {
	body.mpumalanga .province-content {
		padding: 24px 22px;
	}

	body.mpumalanga .districts,
	body.mpumalanga .news-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1020px) {
	body.mpumalanga .districts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

