/* jolidays.co.uk - style1 */
:root{
	--water: #203B67; /* sea */
	--land: #21C75A;  /* land */
	--land2: #00CFA5; /* teal */
	--sand: #FFC700;  /* warm highlight */
	--sky: #4FA2FF;

	--ink: rgba(20,24,28,0.92);
	--muted: rgba(20,24,28,0.70);

	--panel-bg: rgba(255,255,255,0.92);
	--panel-stroke: rgba(255,255,255,0.18);
	--panel-shadow: 0 18px 46px rgba(0,0,0,0.32);
	--panel-radius: 18px;

	/* marker highlight palette */
	--m-red: #FF2B3C;
	--m-orange: #FF7A1F;
	--m-yellow: #FFC700;
	--m-lime: #A9F300;
	--m-green: #21C75A;
	--m-teal: #00CFA5;
	--m-cyan: #00D6FF;
	--m-sky: #4FA2FF;
	--m-blue: #3D55FF;
	--m-violet: #8D3DFF;
	--m-magenta: #D936FF;
	--m-pink: #FF3DAE;

	--focus: rgba(79,162,255,0.35);
	--maxw: 1080px;
}

*{ box-sizing: border-box; }
html, body{
	margin: 0;
	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
	color: var(--ink);
	background-color: var(--water);
	background-image:
		/* lively “coastline” energy on top of the sea */
		radial-gradient(920px 560px at 18% 0%, rgba(79,162,255,0.35), rgba(0,0,0,0) 62%),
		radial-gradient(820px 560px at 92% 10%, rgba(0,214,255,0.26), rgba(0,0,0,0) 60%),
		radial-gradient(980px 620px at 14% 88%, rgba(33,199,90,0.22), rgba(0,0,0,0) 64%),
		radial-gradient(980px 620px at 96% 92%, rgba(0,207,165,0.20), rgba(0,0,0,0) 64%),
		linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.14));
}


a{ color: inherit; }

.container{
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 22px 14px 34px;
}

/* Frosted panel style aligned to the app UI */
.top-panel{
	position: relative;
	border-radius: var(--panel-radius);
	background: var(--panel-bg);
	border: 1px solid var(--panel-stroke);
	box-shadow: var(--panel-shadow);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	overflow: hidden;
}

.top-panel::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 8px;
	background: linear-gradient(90deg, var(--m-cyan), var(--m-lime), var(--m-yellow), var(--m-orange), var(--m-pink));
	opacity: 0.95;
}

.top-panel-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 12px 14px 10px;
	background: rgba(255, 255, 255, 0.30);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand{
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	letter-spacing: 0.1px;
}

.brand img{
	width: 28px;
	height: 28px;
	display: block;
}

.nav{
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.jol-links a{
	/* neutralise browser defaults */
	color: inherit;
	text-decoration: none;

	display: inline-block;
	padding: 2px 7px;
	margin: 0 1px;
	border-radius: 999px;

	font-weight: 900;
	letter-spacing: 0.1px;

	/* “soft highlight” look */
	background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.68));
	border: 1px solid rgba(0,0,0,0.10);
	box-shadow: 0 6px 14px rgba(0,0,0,0.06);

	/* keep text readable */
	color: rgba(20,24,28,0.90);

	cursor: pointer;
	touch-action: manipulation;
	user-select: none;
	white-space: nowrap;
}

.jol-links a:active{ transform: scale(0.98); }

.jol-links a:focus-visible{
	outline: 3px solid var(--focus);
	outline-offset: 2px;
}

.jol-links a:not([href^="/"],[href^="#"],[href^="jolidays:"])::after{
	content: " \ecaf";
	font-family: "remixicon";
	opacity: 0.72;
	margin-left: 0.22em;
}

.hero{
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 16px;
	padding: 16px;
}

@media (max-width: 860px){
	.hero{ grid-template-columns: 1fr; }
	.nav{ justify-content: flex-start; }
}

.h1{
	font-size: clamp(26px, 4vw, 38px);
	margin: 4px 0 10px;
	line-height: 1.1;
}

.lede{
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.5;
}

.kicker{
	display: inline-flex;
	gap: 8px;
	align-items: center;
	font-weight: 900;
	letter-spacing: 0.12px;
	color: rgba(20,24,28,0.85);
	background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.48));
	border: 1px solid rgba(79,162,255,0.20);
	border-radius: 999px;
	padding: 6px 10px;
}

.cta-row{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

.btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,0.10);
	background: rgba(255,255,255,0.88);
	box-shadow: 0 10px 22px rgba(0,0,0,0.10);
	cursor: pointer;
	text-decoration: none;
	font-weight: 900;
	color: rgba(20,24,28,0.92);
	transition: transform 120ms ease;
	user-select: none;
}

.btn:active{ transform: scale(0.98); }
.btn:focus-visible{ outline: 3px solid var(--focus); outline-offset: 2px; }

.btn-primary{
	background: linear-gradient(135deg, var(--m-sky), var(--m-teal));
	border-color: rgba(79,162,255,0.22);
}

.card{
	padding: 14px;
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.20);
	background: rgba(255,255,255,0.72);
	box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.grid-3{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
@media (max-width: 860px){
	.grid-3{ grid-template-columns: 1fr; }
}

.section{
	padding: 16px;
	border-top: 1px solid rgba(0,0,0,0.06);
}

.section h2{ margin: 0 0 10px; font-size: 18px; }
.section p{ margin: 0; color: var(--muted); line-height: 1.55; }

.phone-mock{
	border-radius: 30px;
	border: 1px solid rgba(0,0,0,0.14);
	background: rgba(255,255,255,0.65);
	box-shadow: 0 18px 40px rgba(0,0,0,0.16);
	padding: 10px;
	position: relative;
	max-width: 360px;
	margin-left: auto;
}

.phone-notch{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 10px;
	width: 38%;
	height: 18px;
	border-radius: 0 0 14px 14px;
	background: rgba(0,0,0,0.08);
}

.phone-screen{
	border-radius: 22px;
	overflow: hidden;
	background:
		radial-gradient(600px 280px at 18% 0%, rgba(32,59,103,0.18), rgba(255,255,255,0) 55%),
		radial-gradient(700px 320px at 80% 90%, rgba(33,199,90,0.16), rgba(255,255,255,0) 62%),
		linear-gradient(180deg, rgba(250,252,255,1), rgba(244,247,250,1));
	border: 1px solid rgba(0,0,0,0.08);
	min-height: 560px;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 18px;
	position: relative;
}

.phone-screen .shot{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.map-frame .map-shot{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(1.05) contrast(1.02);
}

.map-frame .map-overlay{
	backdrop-filter: blur(10px);
	background: rgba(255,255,255,0.28);
}

.shot-grid{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 12px;
}

.shot-card{
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(255,255,255,0.72);
	box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.shot-card img{
	width: 100%;
	height: auto;
	display: block;
}

.shot-card figcaption{
	padding: 10px 12px;
	font-size: 13px;
	color: rgba(20,24,28,0.76);
	line-height: 1.35;
}

.shot-portrait{
	grid-column: span 3;
}

.shot-landscape{
	grid-column: span 6;
}

 (max-width: 980px){
	.shot-portrait{ grid-column: span 6; }
	.shot-landscape{ grid-column: span 12; }
}

 (max-width: 560px){
	.shot-portrait{ grid-column: span 12; }
}

.placeholder-badge{
	position: absolute;
	bottom: 14px;
	left: 14px;
	right: 14px;
	display: flex;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: wrap;
}

.badge{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 900;
	border-radius: 999px;
	padding: 6px 10px;
	background: rgba(255,255,255,0.78);
	border: 1px solid rgba(0,0,0,0.10);
	box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.map-frame{
	height: 420px;
	border-radius: 16px;
	border: 1px solid rgba(0,0,0,0.10);
	background:
		/* hint of coastline */
		radial-gradient(900px 520px at 18% 28%, rgba(32,59,103,0.28), rgba(255,255,255,0) 58%),
		radial-gradient(900px 520px at 76% 72%, rgba(33,199,90,0.20), rgba(255,255,255,0) 60%),
		linear-gradient(135deg, rgba(255,255,255,0.50), rgba(0,0,0,0.02));
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
	overflow: hidden;
	position: relative;
}

.map-overlay{
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 18px;
	text-align: center;
}

.small{
	font-size: 13px;
	color: rgba(20,24,28,0.70);
}

.footer{
	padding: 14px 16px;
	border-top: 1px solid rgba(0,0,0,0.06);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	color: rgba(20,24,28,0.72);
	font-size: 13px;
}

.footer a{ text-decoration: none; }
.footer a:focus-visible{ outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 6px; }

.prose{
	max-width: 70ch;
	line-height: 1.65;
	color: rgba(20,24,28,0.86);
}

.prose h1{ font-size: 28px; margin: 0 0 8px; }
.prose h2{ font-size: 18px; margin: 18px 0 8px; }
.prose p{ margin: 0 0 12px; }
.prose ul{ margin: 0 0 12px 18px; }
.prose li{ margin: 4px 0; }

.callout{
	border-left: 4px solid rgba(32,59,103,0.35);
	background: rgba(255,255,255,0.60);
	border-radius: 14px;
	padding: 10px 12px;
	border: 1px solid rgba(0,0,0,0.08);
}


/* small reusable accents */
.accent-bar{
	height: 10px;
	border-radius: 999px;
	margin: 10px 0 14px;
	background: linear-gradient(90deg, var(--m-cyan), var(--m-sky), var(--m-teal), var(--m-lime), var(--m-yellow));
	box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}


.chip{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,0.10);
	background: rgba(255,255,255,0.70);
	box-shadow: 0 6px 14px rgba(0,0,0,0.06);
	font-weight: 900;
}
.chip i{ opacity: 0.82; }

.hr{
	height: 1px;
	background: rgba(0,0,0,0.08);
	margin: 16px 0;
}

