/* LateShipment.com — minimal stylesheet
   accent     #BDF522   lime
   background #FDF9F5   warm off-white */

:root {
	--accent: #BDF522;
	--accent-deep: #7A9E0F;   /* darkened accent, for text on light bg */
	--bg: #FDF9F5;
	--ink: #1C1F16;
	--ink-soft: #5C6154;
	--rule: #E8E2DA;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
	      Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; border: 0; }
a { color: var(--accent-deep); }

.clearfix::after { content: ""; display: table; clear: both; }

.fullwidth { width: 100%; }

.bodycontainer {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ---------- hero ---------- */

#topcontainer {
	padding-top: 80px;
	padding-bottom: 72px;
	text-align: center;
}

#topcontainer img { width: 210px; }

h1 {
	margin: 32px 0 40px;
	font-size: 34px;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: -0.02em;
}

/* the lime reads as a highlight behind the headline rather than as text */
h1 span {
	background: linear-gradient(transparent 62%, var(--accent) 62%);
	padding: 0 4px;
}

/* ---------- buttons ---------- */

.two {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

.Btn {
	display: inline-block;
	padding: 13px 30px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid var(--accent);
	transition: background .18s ease, color .18s ease;
}

/* dark ink on lime — contrast holds at ~13:1 */
.webBtn {
	background: var(--accent);
	color: var(--ink);
}
.webBtn:hover { background: #A8DC17; border-color: #A8DC17; }

.blogBtn {
	background: transparent;
	color: var(--ink);
}
.blogBtn:hover { background: var(--accent); }

/* ---------- separator ---------- */

.arrow-separator {
	height: 1px;
	background: var(--rule);
	max-width: 880px;
	margin: 0 auto;
}

.colour3 { padding: 8px 0; }

/* ---------- footer ---------- */

#footercont {
	padding: 48px 24px 60px;
	text-align: center;
}

#socialmedia ul {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	display: flex;
	gap: 12px;
	justify-content: center;
}

#socialmedia a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #F2EEE8;
	color: var(--ink);
	text-decoration: none;
	transition: background .18s ease;
}

#socialmedia a:hover { background: var(--accent); }

#footercont p {
	margin: 0;
	font-size: 13px;
	color: var(--ink-soft);
}

#footercont p a { color: var(--ink-soft); }

/* ---------- small screens ---------- */

@media (max-width: 600px) {
	#topcontainer { padding-top: 52px; padding-bottom: 48px; }
	h1 { font-size: 25px; }
	.Btn { padding: 12px 24px; }
}
