/* ============================================================
   BEACH CARD  –  plakias-guide.gr
   Matches the "Souda beach (2 km)" target design
   Font: Verdana (site default), title uses site .subtitle style
   Accent: teal #2a6070 (beaches section color)
   ============================================================ */

/* ── Utility: visually hidden (SEO + a11y) ── */
.visually-hidden {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* ── Card wrapper ── 
	font-family: Verdana, Geneva, sans-serif;
	border-bottom: 1px solid #d0ccc6;
	padding-bottom: 8px;
	box-shadow: 1px 1px 5px #00000052;
	box-shadow: 2px 3px 5px #c0c0c052;
	*/
.beach-card {
	max-width: 860px;
	margin: 0 0 40px 0;
	padding: 16px 16px 26px; 
	border-radius: 9px;
	background-color: #ffffff80;
	border: 1px solid #e0d8cc70;
}
 
/*
.beach-card-title {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 17px;
	font-weight: bold;
	color: #2a6070;
	margin: 0;
	padding: 8px 0 4px;
	letter-spacing: 0.3px;
}
*/ 
.beach-card-distance {
	font-weight: normal;
	font-size: 15px;
	color: #2a6070;
}

/* ── Card body ── */
.beach-card-body {
	padding: 0 4px;
} 

/* ── Shore type tags ── */
.beach-shore-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}
.beach-shore-tag {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #3a4a38;
	background: #e4d3b5;
	border: 1px solid #c8c0b0;
	border-radius: 3px;
	padding: 3px 9px;
}

/* ── Description ── 
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
*/
.beach-description {
	line-height: 1.85;
	color: #2c3e45;
	margin-bottom: 18px;
}

/* ── Middle row: features + photos side by side ── */
.beach-card-middle {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	margin-bottom: 18px;
}

.job-card-middle {
	display: grid;
	gap: 24px;
	margin-bottom: 18px;
}

/* ── Amenity feature tiles ── */
.beach-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	flex: 0 0 auto;
	width: 280px;
}
.beach-feat {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 12px;
	background: #fff;
	border: 1px solid #c6dfe6;
	border-radius: 5px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11.5px;
	color: #2a6070;
	transition: background 0.2s, border-color 0.2s;
}
.beach-feat:hover {
	background: #eef6f9;
	border-color: #4a8fa0;
}
.beach-feat img {
	flex-shrink: 0;
}

/* ── Photos ── */
.beach-photos {
	display: flex;
	gap: 8px;
	flex: 1;
}
.beach-photo-wrap {
	margin: 0;
	padding: 0; 
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid #d0ccc6;
	flex: 1;
}
.beach-photo-wrap img {
	display: block;
	width: 100%;
	height: 150px;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.35s ease, filter 0.35s ease;
	filter: saturate(0.92);
}
.beach-photo-wrap img:hover {
	transform: scale(1.04);
	filter: saturate(1.1);
}

/* ── Travel notes ── */
.beach-travel-notes {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px; 
	padding-top: 14px;
	border-top: 1px dashed #c8b89a;
	/* font-family: Verdana, Geneva, sans-serif; */
	font-size: 12px;
	color: #4a6470;
}
.beach-travel-item {
	display: flex;
	align-items: center;
	gap: 7px;
}
.travel-icon {
	font-size: 18px;
	line-height: 1;
} 

/* ── Responsive ── */
@media (max-width: 600px) {
	.beach-card-middle {
		flex-direction: column;
	}
	.beach-features {
		width: 100%;
	}
	.beach-photos {
		width: 100%;
	}
	.beach-photo-wrap img {
		height: 120px;
	}
}
/*
Section	Header 		color
Beaches	Aegean 		teal #2a6070
Restaurants/Food 	Warm terracotta #7a3e28
Bars / Nightlife 	Deep aubergine #4a2a50
Activities/Diving	Olive green #3a5a30
Services (taxi, ATM…)	Slate grey #3a4a58
Events				Warm amber #7a5a18
*/
