/* Northern Cape home page styles */
body.northerncape {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background:
		radial-gradient(circle at 10% 4%, rgba(224, 164, 74, 0.14), transparent 34%),
		radial-gradient(circle at 88% 2%, rgba(112, 150, 184, 0.14), transparent 34%),
		linear-gradient(180deg, #fdf8f0 0%, #ffffff 56%, #f5f8fc 100%);
	color: #2c2f33;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body.northerncape .hero {
	background:
		linear-gradient(130deg, #b77b2f, #e0b464),
		repeating-linear-gradient(
			45deg,
			rgba(255, 255, 255, 0.08) 0,
			rgba(255, 255, 255, 0.08) 10px,
			rgba(0, 0, 0, 0.05) 10px,
			rgba(0, 0, 0, 0.05) 20px
		);
	color: #151515;
	padding: 30px 16px 20px;
	text-align: center;
	border-bottom: 4px solid #4d6f94;
}

body.northerncape .hero h1 {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3.2vw, 2.5rem);
	letter-spacing: 0.3px;
}

body.northerncape .navbar {
	background: rgba(33, 45, 60, 0.94);
	border-radius: 12px;
	max-width: 860px;
	margin: 0 auto;
	box-shadow: 0 8px 18px rgba(20, 28, 40, 0.22);
}

body.northerncape .navbar ul {
	margin: 0;
	padding: 10px 12px;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

body.northerncape .navbar a {
	text-decoration: none;
	color: #ecf4ff;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(173, 200, 229, 0.4);
	background: rgba(255, 255, 255, 0.08);
}

body.northerncape .navbar a:hover,
body.northerncape .navbar a:focus-visible {
	background: rgba(255, 255, 255, 0.2);
	outline: none;
}

body.northerncape main {
	width: min(1080px, calc(100% - 20px));
	margin: 18px auto 24px;
	flex: 1;
	display: grid;
	gap: 14px;
}

body.northerncape .province-content {
	background: #ffffff;
	border: 1px solid #e6d7bf;
	border-radius: 14px;
	box-shadow: 0 8px 18px rgba(64, 49, 32, 0.08);
	padding: 14px;
}

body.northerncape .province-content h2 {
	margin: 0 0 10px;
	color: #7c5623;
}

body.northerncape .province-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

body.northerncape .province-content li {
	margin: 0;
}

body.northerncape .province-content a {
	display: block;
	text-decoration: none;
	color: #21466f;
	font-weight: 600;
	background: #f9fbff;
	border: 1px solid #d6e2f1;
	border-radius: 10px;
	padding: 10px 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.northerncape .province-content a:hover,
body.northerncape .province-content a:focus-visible {
	background: #21466f;
	color: #ffffff;
	box-shadow: 0 6px 12px rgba(24, 50, 80, 0.2);
	transform: translateY(-1px);
	outline: none;
}

/* Northern Cape travel banner styling */
body.northerncape .travel-banner-northerncape {
  background: linear-gradient(135deg, #2c3e50 0%, #5b7fa0 100%);
  margin: 24px 16px;
  border: 3px solid #aab7c5;
}

body.northerncape .travel-banner-northerncape .banner-content h2 {
  color: #f2f7ff;
  text-shadow: 2px 2px 8px rgba(28, 47, 63, 0.8);
}

body.northerncape .travel-banner-northerncape .banner-content p {
  color: #e8eef6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

body.northerncape .travel-banner-northerncape .cta-button {
  background: #aab7c5;
  color: #1c2f3f;
  font-weight: 700;
  border: 2px solid #f2f7ff;
}

body.northerncape .travel-banner-northerncape .cta-button:hover {
  background: #f2f7ff;
  color: #2c3e50;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

@media (min-width: 760px) {
	body.northerncape .province-content ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	body.northerncape .province-content ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

