/* ---------- Slider / Cards ---------- */
.lakes-slider-wrap {
	max-width: 1300px;
	margin: 40px auto;
	padding: 0 20px;
}

.lakes-slider-title {
	font-size: 28px;
	margin-bottom: 20px;
	text-align: center;
}

.lakes-swiper {
	padding-bottom: 45px;
}

.lake-card {
	display: block;
	position: relative;
	height: 380px;
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* This makes the featured image fill the whole card, cropped nicely, never squished */
.lake-card-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform .4s ease;
}

.lake-card:hover .lake-card-image {
	transform: scale(1.08);
}

.lake-card-overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 20px 18px;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
	color: #fff;
}

.lake-card-title {
	margin: 0 0 4px;
	font-size: 20px;
	color: #fff;
}

.lake-card-heading {
	margin: 0;
	font-size: 14px;
	opacity: .9;
}

.swiper-button-next, .swiper-button-prev {
	color: #fff;
	background: rgba(0,0,0,0.35);
	width: 40px; height: 40px;
	border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 16px;
}

.swiper-pagination-bullet-active {
	background: #2271b1;
}

/* ---------- Single Lake Page ---------- */
.lake-hero {
	position: relative;
	width: 100%;
	height: 60vh;
	min-height: 420px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
}

.lake-hero-overlay {
	width: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
	color: #fff;
	padding: 50px 6% 40px;
}

.lake-hero-title {
	font-size: 44px;
	margin: 0 0 8px;
	color: #fff;
}

.lake-hero-heading {
	font-size: 18px;
	margin: 0;
	opacity: .95;
}

.lake-single-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}

.lake-details {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 40px;
}

.lake-gallery-title {
	font-size: 26px;
	margin-bottom: 20px;
}

.lake-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}

.lake-gallery-photo {
	display: block;
	height: 200px;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform .3s ease;
}

.lake-gallery-photo:hover {
	transform: scale(1.03);
}

@media (max-width: 640px) {
	.lake-card { height: 300px; }
	.lake-hero-title { font-size: 30px; }
}
