/* Western Cape page styles */
/* Shared/base styles remain in style.css */

body.westerncape {
	background:
		radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.22), transparent 42%),
		linear-gradient(165deg, #f3fbff 0%, #e9f4fb 50%, #d8ecf6 100%);
	color: #142b36;
}

body.westerncape .hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #075472 0%, #0a7496 52%, #1296b9 100%);
	color: #fff;
	padding: 48px 14px 36px;
	border-bottom: 3px solid #97d6e9;
	box-shadow: 0 8px 20px rgba(6, 60, 82, 0.28);
	text-align: center;
}

body.westerncape .hero::after {
	content: "";
	position: absolute;
	right: -42px;
	top: -28px;
	width: 165px;
	height: 165px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(197, 239, 250, 0.34), rgba(197, 239, 250, 0));
	pointer-events: none;
}

body.westerncape .hero h1 {
	margin: 0 0 12px;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	letter-spacing: 0.45px;
	text-transform: uppercase;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

body.westerncape .navbar {
	background: linear-gradient(90deg, #06455d 0%, #0a6f8f 100%);
	box-shadow: 0 4px 12px rgba(6, 60, 82, 0.2);
}

body.westerncape .navbar ul {
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
}

body.westerncape .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.westerncape .navbar a:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.66);
	transform: translateY(-1px);
}

body.westerncape main {
	width: min(980px, calc(100% - 24px));
	margin: 22px auto;
}

body.westerncape .province-content {
	margin: 0;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid #c7e0ea;
	border-radius: 14px;
	box-shadow: 0 10px 26px rgba(15, 71, 92, 0.12);
	padding: 18px 16px;
}

body.westerncape .province-content h2 {
	margin: 0 0 12px;
	color: #0a5a74;
	font-size: clamp(1.15rem, 3vw, 1.55rem);
}

body.westerncape .districts,
body.westerncape .news-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

body.westerncape .news-list {
	margin-bottom: 0;
}

body.westerncape .districts li,
body.westerncape .news-list li {
	background: linear-gradient(145deg, #fdfeff 0%, #edf8fc 100%);
	border: 1px solid #d5e9f0;
	border-radius: 10px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

body.westerncape .districts li:hover,
body.westerncape .news-list li:hover {
	transform: translateY(-2px);
	border-color: #7fc7dc;
	box-shadow: 0 8px 16px rgba(18, 93, 121, 0.14);
}

body.westerncape .districts a,
body.westerncape .news-list a {
	display: block;
	padding: 11px 12px;
	color: #0d5a74;
	text-decoration: none;
	font-weight: 600;
}

body.westerncape .districts a:hover,
body.westerncape .news-list a:hover {
	color: #083e52;
}

body.westerncape footer {
	background: #0d3d50;
	color: #d9edf5;
}

body.westerncape footer a,
body.westerncape .footer-links a {
	color: #aee2f2;
}

body.westerncape footer a:hover,
body.westerncape .footer-links a:hover {
	color: #fff;
}

@media (min-width: 700px) {
	body.westerncape .province-content {
		padding: 24px 22px;
	}

	body.westerncape .districts,
	body.westerncape .news-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1020px) {
	body.westerncape .districts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Western Cape travel banner styling */
body.westerncape .travel-banner-westerncape {
  background: linear-gradient(135deg, #075472 0%, #12a4c8 100%);
  margin: 24px 16px;
  border-radius: 14px;
  padding: 26px 20px;
  color: #f0f8ff;
  text-align: center;
}

body.westerncape .travel-banner-westerncape .banner-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.35);
}

body.westerncape .travel-banner-westerncape .banner-content p {
  margin: 0 0 18px;
  font-size: 1.1rem;
  color: rgba(240, 248, 255, 0.92);
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
}

body.westerncape .travel-banner-westerncape .cta-button {
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #f0f8ff;
  padding: 12px 26px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease;
}

body.westerncape .travel-banner-westerncape .cta-button:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

