/* Umgungundlovu page styles */
/* Shared/base styles remain in style.css */

body.easterncape {
	background:
		radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.22), transparent 42%),
		linear-gradient(165deg, #eef8f4 0%, #e4f1ea 50%, #d7e8df 100%);
	color: #1f2f29;
}

body.easterncape .hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #1d5a44 0%, #26735a 52%, #329075 100%);
	color: #fff;
	padding: 28px 14px 20px;
	border-bottom: 3px solid #9fd8bf;
	box-shadow: 0 8px 20px rgba(15, 53, 40, 0.28);
}

body.easterncape .hero::after {
	content: "";
	position: absolute;
	right: -42px;
	top: -30px;
	width: 166px;
	height: 166px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(193, 236, 220, 0.34), rgba(193, 236, 220, 0));
	pointer-events: none;
}

body.easterncape .hero h1 {
	margin: 0 0 12px;
	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.easterncape .hero .navbar {
	background: transparent;
	box-shadow: none;
}

body.easterncape .navbar ul {
	flex-wrap: wrap;
	gap: 8px;
}

body.easterncape .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.easterncape .navbar a:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.66);
	transform: translateY(-1px);
}

body.easterncape main {
	width: min(960px, calc(100% - 24px));
	margin: 22px auto;
}

body.easterncape .province-content {
	margin: 0;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid #c9e0d3;
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(22, 68, 52, 0.12);
	padding: 18px 16px;
}

body.easterncape .province-content h2 {
	margin: 0 0 14px;
	color: #226247;
	font-size: clamp(1.15rem, 3vw, 1.55rem);
}

body.easterncape .districts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

body.easterncape .districts li {
	background: linear-gradient(145deg, #fcfffd 0%, #edf7f1 100%);
	border: 1px solid #d3e8dc;
	border-radius: 10px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.easterncape .districts li:hover {
	transform: translateY(-2px);
	border-color: #8fc5ab;
	box-shadow: 0 8px 16px rgba(28, 83, 62, 0.14);
}

body.easterncape .districts a {
	display: block;
	padding: 12px 14px;
	color: #1f5a41;
	text-decoration: none;
	font-weight: 600;
}

body.easterncape .districts a:hover {
	color: #153f2d;
}

body.easterncape footer {
	background: #163f30;
	color: #dcefe6;
}

body.easterncape footer a,
body.easterncape .footer-links a {
	color: #aee4cc;
}

body.easterncape footer a:hover,
body.easterncape .footer-links a:hover {
	color: #fff;
}

@media (min-width: 720px) {
	body.easterncape .province-content {
		padding: 24px 22px;
	}

	body.easterncape .districts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1020px) {
	body.easterncape .hero {
		padding-top: 34px;
		padding-bottom: 24px;
	}

	body.easterncape .districts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
