/*
Theme Name: Looma Theme
Theme URI: https://go-looma.com/ 
Author: Looma
Author URI: https://go-looma.com/
Description: Custom theme for Looma landing + pages.
Version: 1.0.0
Text Domain: looma
*/

/**** Looma Brand Logo Font ********/
@font-face {
	font-family: "Monainn";
	src: url(./assets/Monainn2.otf);
}

/* CSS Variables for colours and spacing */
:root {
	--colour-navy: #0b0e32; /* dark navy background */
	--colour-dark: #1a1d56; /* slightly lighter panel background */
	--colour-turquoise: #00e3c3; /* turquoise highlight old:  */
	--colour-white: #ffffff; /* main copy colour */
	--colour-grey: #c9cce5; /* secondary text */
	--colour-pink: #e9319a; /* Looma Hot Pink */
	--colour-baby-blue: #60dcfb; /* Looma baby blue */
	--colour-arancio: #fb6445; /* Looma arancio/terracotta */
	--colour-box-shadow: rgba(0, 0, 0, 0.35);
	--max-width: 1200px;
	--safe-area-top: 0px;
}

/* iOS Safari translucent toolbar samples the root background colour */
html {
	background: rgba(22, 26, 70, 1);
}

/* Global: allow body to grow with Safari’s dynamic viewport */
html,
body {
	min-height: 100%;
	height: auto;
	background-attachment: scroll;
}

/**** Safari Safe-Area and Reduced Motion Handling **********/

@supports (padding-top: env(safe-area-inset-top)) {
	:root {
		--safe-area-top: env(safe-area-inset-top);
	}
}

@supports (padding-top: constant(safe-area-inset-top)) {
	:root {
		--safe-area-top: constant(safe-area-inset-top);
	}
}

@supports (-webkit-touch-callout: none) or (-webkit-overflow-scrolling: touch) {
	html,
	body {
		background-attachment: scroll !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition-duration: 0s !important;
		animation-duration: 0s !important;
	}
}

/*** "Beautiful Cookie Banner" Plugin CSS Overrides *****/

.cc-floating.cc-theme-classic {
	border-radius: 1rem !important;
	padding: 0.8rem;
}

.cc-message {
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
	text-align: center;
	margin-bottom: 0.5rem !important;
}

.cc-btn {
	border-radius: 2rem !important;
	font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 414px) and (orientation: portrait),
	screen and (max-width: 736px) and (orientation: landscape) {
	.cc-window.cc-floating {
		max-width: 95%;
		width: max-content;
		left: 50%;
		right: auto !important;
		transform: translateX(-50%);
		bottom: 0.5rem !important;
	}
}

/*** Forces consistent scrollbar & prevents 1-2px horizontal “jiggle” on viewport resize *****/
html {
	overflow-y: scroll;
}
/* allow the viewport to grow/shrink with the URL bar */
@supports (-webkit-touch-callout: none) {
	html {
		overflow-y: auto;
	}
}

/* Gradient canvas sits behind header + hero */
#gradient-canvas {
	position: fixed;
	backface-visibility: hidden;
	transform: translateZ(0); /* nudge GPU compositing to prevent hairline gaps */
	inset: -1px; /* overscan 1px to avoid sub‑pixel seams on iOS */
	width: 100vw;
	height: calc(100dvh + 2px); /* match the 1px overscan top+bottom */
	z-index: 0;
	pointer-events: none;
	will-change: transform; /* advises browser to leverage GPU compositing */
	--gradient-color-1: #4c2a85; /* Deep Violet */
	--gradient-color-2: #7037c0; /* Royal Purple */
	--gradient-color-3: #3f8efc; /* Electric Blue */
	/*--gradient-color-4: #2cc4b3; /* Teal / Aqua */
	--gradient-color-5: #00e1ff; /* Bright Cyan */
	/*--gradient-color-6: #f72585;  /* Magenta Pink */
	/*--gradient-color-7: #ff6b6b;  /* Coral */
	/*--gradient-color-8: #fbb13c; /* Warm Amber */
	--gradient-color-9: #4c2a85; /* Deep Violet */
	--gradient-color-10: #7037c0; /* Royal Purple */
}

body.home main {
	position: relative;
	z-index: 1;
}

body.home .site-header,
body.home .hero {
	position: relative;
	z-index: 1;
	background-color: transparent;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Poppins", sans-serif;
	/* background-color: transparent; */
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: var(--colour-white);
	line-height: 1.6;
	overflow-x: hidden;
	padding-top: env(safe-area-inset-top);
}

body:not(.home) {
	padding-top: var(--safe-area-top-fixed, var(--safe-area-top));
}

body.home {
	padding-top: 0;
}

body.home main > *:not(.hero) {
	background: linear-gradient(
		rgba(11, 14, 50, 0.95),
		rgba(22, 26, 70, 0.85),
		rgba(33, 38, 90, 0.75),
		rgba(44, 50, 110, 0.65),
		rgba(33, 38, 90, 0.75),
		rgba(22, 26, 70, 0.85),
		rgba(11, 14, 50, 0.95)
	);
	position: relative;
	z-index: 1;
}

footer {
	background: linear-gradient(
		rgba(11, 14, 50, 0.95),
		rgba(22, 26, 70, 0.85),
		rgba(22, 26, 70, 1)
	);
	position: relative;
	z-index: 1;
	padding-bottom: env(safe-area-inset-bottom);
}

a {
	color: var(--colour-turquoise);
	text-decoration: none;
}

h1,
h2,
h3 {
	margin-top: 0;
	font-weight: 600;
	line-height: 1.2;
}

.grecaptcha-badge {
	visibility: hidden;
}

/***** HTML Sections ******/

.container {
	width: 90%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 2rem 0;
}

@media (max-width: 600px) {
	.container {
		padding: 0.5rem 0;
	}
}

/******* Hero section *******/
.hero {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	padding-top: calc(
		var(--safe-area-top-fixed, var(--safe-area-top)) + clamp(0.2rem, 4vw, 2rem)
	);
	gap: clamp(1.25rem, 5vw, 2rem);
	padding-bottom: calc(1rem + env(safe-area-inset-bottom));
	position: relative;
	overflow: clip;
	min-height: 100svh; /* or 100dvh on iOS 16+ for dynamic viewport handling */
}

/* iOS Safari: dvh/svh avoids the URL-bar resize jump versus legacy 100vh */
@supports (min-height: 100dvh) {
	.hero {
		min-height: 100dvh;
	}
}

.hero .container {
	position: relative;
	z-index: 4;
}

/* Wraps the image and copy in the hero section */
.hero-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

@media (min-width: 768px) {
	.hero {
		flex-direction: row;
	}

	.hero-wrapper {
		flex-direction: row;
		align-items: flex-start;
	}
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.hero img {
	height: 70vh;
	max-height: 800px;
	width: auto;
	border-radius: 1rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero img:hover {
	transform: translateY(-4px);
}

.hero-text {
	flex: 1;
	max-width: 600px;
}

.hero-text h1 {
	font-size: clamp(1.75rem, 5vw, 2.3rem);
	font-weight: 400;
	color: color-mix(in srgb, var(--colour-dark) 95%, white 5%);
	margin: 1rem auto 0.5rem auto;
}

.hero-h1-span {
	font-family: "Monainn";
	color: #00e3c3;
	font-size: 3rem;
}

.hero-text p {
	font-size: clamp(1rem, 4vw, 1.25rem);
	color: var(--colour-white);
	margin-bottom: 0rem;
	margin-top: 0;
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.hero-span {
	font-family: "Monainn";
	font-size: 1.5rem;
}

.hero-text p:nth-of-type(2) {
	padding-top: 0;
}

@media (max-width: 600px) {
	.hero {
		padding-top: 2.5rem;
		padding-bottom: 0.75rem;
		gap: 1.25rem;
	}

	.hero img {
		height: 50vh;
	}

	.hero-text {
		text-align: center;
	}
	.hero-text h1 {
		color: var(--colour-pink);
	}
	.hero-h1-span {
		font-size: 2rem;
	}
	.hero-text p:first-child {
		padding-top: 2rem;
	}
	.hero-span {
		font-size: 1.2rem;
	}
}

/***** Hero Wave svg ******/

.hero-wave {
	position: absolute;
	bottom: -16px;
	left: 50%;
	width: 100vw;
	overflow: auto;
	line-height: 0;
	transform: translateX(-50%) rotate(180deg);
	z-index: -1;
}

.hero-wave svg {
	position: relative;
	display: block;
	width: calc(182%);
	aspect-ratio: 1200 / 120;
	min-height: 205px;
	transform: rotateY(180deg);
}

@media (max-width: 600px) {
	.hero-wave svg {
		width: 100%;
	}
}

/*** Defs are in the SVG HTML *****/
.hero-wave svg path {
	fill: url(#heroWaveGradient);
}

/*** Join Now dialogue button ***/
.dialogue-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.dialogue-button {
	background-color: var(--colour-pink);
	color: var(--colour-white);
	font-weight: 450;
	font-size: 1.2rem;
	letter-spacing: 0.7px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 2rem;
	border: none;
	height: 50px;
	padding: 0 2rem;
	margin-top: 1rem;
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75),
		inset 0 0 5px rgba(255, 255, 255, 0.75) !important;
	backdrop-filter: blur(4px) !important;
}

.dialogue-button:hover {
	background-color: var(--colour-baby-blue) !important;
	color: var(--colour-dark) !important;
}

/******************** Dialogue Modal ****************/
dialog {
	background: none;
	padding: 0;
	border: none;
	overflow: visible;
}

.test {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	min-width: 600px;
}

.glass-container {
	position: relative;
	display: flex;
	align-items: center;
	background: transparent;
	border-radius: 2rem;
	overflow: hidden;
	flex: 1 1 auto;
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.glass-container--rounded {
	border-radius: 3rem;
}

.glass-container--large {
	flex: 1 1 auto;
}

.glass-filter,
.glass-overlay,
.glass-specular {
	position: absolute;
	inset: 0;
	border-radius: inherit;
}

.glass-filter {
	z-index: 0;
	backdrop-filter: blur(4px);
	background-color: rgba(255, 255, 255, 0.001);
	filter: url(#lensFilter) saturate(120%) brightness(1.15);
}

.glass-overlay {
	z-index: 1;
	background: rgba(255, 255, 255, 0.25);
}

.glass-specular {
	z-index: 2;
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75),
		inset 0 0 5px rgba(255, 255, 255, 0.75);
}

.glass-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex: 1 1;
	align-items: stretch;
	justify-content: center;
	width: 85%;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 5px;
}

.glass-content > .wpforms-container {
	flex: 1 1 auto;
	width: 100%;
	max-width: 550px;
}

@media (max-width: 600px) {
	dialog {
		max-width: min(95vw, 600px); /* keep it inside the viewport */
	}

	.test {
		min-width: 0;
		margin: 0 auto;
	}
}

#close-button {
	background: transparent;
	position: absolute;
	right: 8px;
	font: "Poppins";
	border-radius: 0.85rem;
	border-color: var(--colour-dark);
	margin: 0 20px 0 0;
	font-size: 1.2rem;
	color: var(--colour-dark);
	cursor: pointer;
	size: 0cap;
}

#close-button:hover {
	color: var(--colour-pink);
	border-color: var(--colour-pink);
	font-weight: 500;
}

/****** WPForms *******/
.wpforms-form {
	display: flex;
	flex-wrap: nowrap; /* keep on one row */
	align-items: flex-end; /* keep button level with the input when errors show */
	gap: 0.25rem; /* tighter space between input + button */
	--wpforms-label-error-color: var(--colour-dark);
}

.wpforms-form {
	flex-wrap: wrap;
}
@media (min-width: 500px) {
	.wpforms-form {
		flex-wrap: nowrap;
	}
}

/* keep the input + button aligned until an error shows up */
.wpforms-form:has(.wpforms-error) {
	align-items: center;
}

/* nudge the button back down so it lines up with the input */
.wpforms-form:has(.wpforms-error) .wpforms-submit-container {
	margin-top: 0.5rem;
}

.wpforms-form .wpforms-field-container {
	flex: 1;
}

/* Make the email field row behave like a single line and stretch */
.wpforms-form .wpforms-field-container {
	display: flex;
	align-items: center;
}

.wpforms-form .wpforms-field-container .wpforms-field {
	flex: 1 1 auto;
	width: 100% !important; /* ensure the input fills the row */
	padding: 0 !important;
	margin: 0 !important;
}

.wpforms-form .wpforms-field-container .wpforms-field-label {
	text-align: center !important;
	color: var(--colour-dark) !important;
	font-size: 1.2rem;
	font-weight: 500;
	font-family: "Poppins";
}

.wpforms-field-label .wpforms-label-looma {
	font-family: "Monainn";
	font-size: 1.4rem;
	color: var(--colour-dark);
}

.wpforms-form .wpforms-field-container .wpforms-required-label {
	display: none;
}

/* Ensure the inner field box has no extra width/padding that pushes the button away */
.wpforms-form .wpforms-field-container > .wpforms-field {
	width: auto !important;
}

/* Remove default inner padding that creates a big gap between input and button */
.wpforms-form .wpforms-field,
.wpforms-form .wpforms-submit-container {
	padding: 0 !important;
	margin: 0 !important;
}

/* Stronger overrides for WPForms defaults */
.wpforms-container .wpforms-form .wpforms-field,
.wpforms-container-full .wpforms-form .wpforms-field {
	padding: 0 !important;
	margin: 0 !important;
}

.wpforms-container .wpforms-form .wpforms-submit-container,
.wpforms-container-full .wpforms-form .wpforms-submit-container {
	padding: 0 !important;
	margin: 0 !important;
}

.wpforms-form .wpforms-submit-container {
	flex: 0 0 auto; /* keep button its natural width */
	display: flex;
	align-items: center;
}

.wpforms-form .wpforms-field-email input[type="email"] {
	background-color: var(--colour-dark);
	box-sizing: border-box;
	border-radius: 2rem;
	color: var(--colour-white) !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: block;
	font-size: 16px;
	padding: 6px 10px;
	height: 38px;
	width: 100%;
	line-height: 1.3;
}

.wpforms-form .wpforms-field-email input[type="email"]::placeholder {
	color: var(--colour-white) !important;
	font-size: 1rem !important;
}

.wpforms-container .wpforms-form .wpforms-submit {
	background-color: var(--colour-pink) !important;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 2rem;
}

.wpforms-form .wpforms-submit {
	height: 38px;
	padding: 0 16px;
	line-height: 38px;
}

.wpforms-container .wpforms-form .wpforms-submit:hover {
	background-color: var(--colour-baby-blue) !important;
	color: var(--colour-dark) !important;
}

.wpforms-form p {
	margin: 0 !important;
}

.wpforms-form input[type="email"] {
	max-width: none !important;
}

/* WPForms confirmation box */
.wpforms-container-full .wpforms-confirmation-container-full,
.wpforms-container .wpforms-confirmation-container-full {
	background: transparent !important;
	/* border: 2px solid var(--colour-turquoise) !important; */
	border-radius: 12px !important;
	padding: 10px 16px !important;
	/* box-shadow: 0 8px 24px var(--colour-box-shadow) !important; */
	margin: 10px 0 !important;
}

.wpforms-container.wpforms-container-full.wpforms-render-modern:has(
		> .wpforms-confirmation-container-full:not(:empty)
	) {
	margin: 0 !important;
}

/* Inner container + text */
.wpforms-container-full
	.wpforms-confirmation-container-full
	.wpforms-confirmation-container,
.wpforms-container
	.wpforms-confirmation-container-full
	.wpforms-confirmation-container {
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}

.wpforms-container-full
	.wpforms-confirmation-container-full
	.wpforms-confirmation-message,
.wpforms-container
	.wpforms-confirmation-container-full
	.wpforms-confirmation-message {
	color: var(--colour-navy) !important;
	margin: 0 !important;
	line-height: 1.5;
}

.wpforms-container-full .wpforms-confirmation-container-full,
.wpforms-container .wpforms-confirmation-container-full {
	position: relative;
}

/* WPForms Force confirmation text colour */
.wpforms-container-full .wpforms-confirmation-container-full,
.wpforms-container .wpforms-confirmation-container-full {
	color: var(--colour-navy) !important;
	text-align: center;
	font-size: 1.2rem;
}

@media (max-width: 600px) {
	.wpforms-container-full .wpforms-confirmation-container-full p {
		color: var(--colour-pink) !important;
		font-weight: 500;
	}
}

/* remove little border around confirmation in dialogue */
div.wpforms-container-full .wpforms-confirmation-container-full,
div[submit-success]
	> .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
	border: none !important;
}

/* WPForms error message text */
.wpforms-form em.wpforms-error {
	color: var(--colour-dark) !important;
}

/* WPForms error message box */
.wpforms-form input.wpforms-error {
	border: 2px solid var(--colour-pink) !important;
}

/* WPForms override for focused/error outline */
.wpforms-form .wpforms-field input.wpforms-error:focus,
.wpforms-form .wpforms-field textarea.wpforms-error:focus,
.wpforms-form .wpforms-field select.wpforms-error:focus {
	box-shadow: none !important;
}

/******** Features section *******/
.features {
	padding: 0rem 0 6rem; /* top right&left bottom */
	width: 100%;
	height: 100%;
}

.features h3 {
	margin-top: 0;
	font-weight: 600;
	line-height: 1.2;
	font-size: 2rem;
	color: var(--colour-white);
	margin-bottom: 3rem;
	text-align: center;
}

.features h2 {
	font-size: 2rem;
	color: var(--colour-arancio);
	margin-bottom: 2rem;
	text-align: center;
}

.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (max-width: 600px) {
	.features {
		padding-bottom: 1.2rem;
	}
}

@media (min-width: 700px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	/* Switched to flex on desktop so the final row centres naturally */
	.feature-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center; /* centres the short last row */
		gap: 2rem; /* keep existing spacing */
	}
	.feature-grid > .feature {
		flex: 0 1 330px; /* target card width */
		max-width: 100%;
	}
}

.feature {
	border: 2px solid var(--colour-turquoise);
	border-radius: 1rem;
	/* box-shadow: 0 8px 24px var(--colour-box-shadow); */
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.75),
		inset 0 0 5px rgba(255, 255, 255, 0.75) !important;
	backdrop-filter: blur(4px) !important;
}

.feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px var(--colour-box-shadow);
}

@media (hover: hover) {
	.feature:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 28px var(--colour-box-shadow);
	}
}

.feature img {
	width: auto;
	max-width: calc(100% - 1.5rem);
	height: 210px;
	display: block;
	object-fit: contain;
	object-position: center;
	padding: 0.75rem;
	margin: 0 auto;
}

.feature-content {
	padding: 1rem;
}

.feature-content h3 {
	font-size: 1.1rem;
	color: var(--colour-white);
	margin-bottom: 0.1rem;
}

.feature-content p {
	font-size: 0.95rem;
	color: var(--colour-grey);
}

@media (max-width: 600px) {
	.feature-content p {
		text-align: center;
	}
}

/****8*************** Stacked sections ********************/
/* .stacked > section.dashboard-overview {
	position: sticky;
	top: 0;
} */

/******* Dashboard overview section *******/
.glass-specular.dashboard-overview {
	border-radius: 1rem;
}

.first {
	max-width: 98%;
	margin: 0 auto;
	padding-bottom: 1rem;
}

.second {
	max-width: 98%;
	margin: 0 auto;
	padding-top: 1rem;
	padding-bottom: 2rem;
}

.dashboard-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
}

.dashboard-image {
	padding: 1rem 0 0.5rem;
	flex: 1;
	min-width: 260px;
	text-align: center;
	z-index: 1;
}

.dashboard-image img {
	height: 70vh;
	max-height: 800px;
	width: auto;
}

.dashboard-copy {
	flex: 1;
	min-width: 260px;
	margin-top: 1.5rem;
	z-index: 1;
}

@media (max-width: 600px) {
	.dashboard-wrapper {
		justify-content: center;
		gap: 0;
	}
	.dashboard-image {
		padding: 1rem 0 0;
	}

	.dashboard-image img {
		height: 50vh;
	}
	.dashboard-copy {
		flex-basis: 100%;
		max-width: 24rem;
		margin: 1rem 0.5rem 0; /* centres the block itself */
		text-align: center;
	}
	.first {
		max-width: 93%;
		padding-bottom: 0.5rem;
	}
	.second {
		max-width: 93%;
		padding-top: 0.5rem;
	}
}

/********* Footer ********/
.site-footer {
	text-align: left;
	padding: 2rem 0;
	font-size: 0.9rem;
	color: var(--colour-grey);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 0;
}

.site-footer .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.site-footer p {
	margin: 0;
}

.footer-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
}

.footer-meta a:hover {
	transition: color 0.2s ease;
	color: #e9319a;
}

.social-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: var(--colour-white);
	transition: background-color 0.2s ease, color 0.2s ease,
		border-color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus {
	background-color: var(--colour-turquoise);
	color: var(--colour-navy);
	border-color: var(--colour-turquoise);
}

.social-links svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: currentColor;
}

/* Utility classes */
.accent {
	color: var(--colour-white);
	font-size: 2.3rem;
	font-weight: 400; /**350 looks best but browsers round up**/
}

@media (max-width: 600px) {
	.accent {
		font-size: 1.8rem;
		font-weight: 300;
	}
}
/******* Generic page layout *******/
.page-title h1 {
	margin-bottom: 2rem;
	font-size: 2.4rem;
	color: var(--colour-turquoise);
	text-align: center;
}

.page-body {
	max-width: 900px; /* make it wider, consistent column */
	margin: 0 auto 2rem; /* centre it */
	color: var(--colour-grey);
	font-size: 1.05rem;
	padding: 2rem 1rem; /* breathing room on small screens */
	background: linear-gradient(
		rgba(11, 14, 50, 0.95),
		rgba(22, 26, 70, 0.85),
		rgba(33, 38, 90, 0.75),
		rgba(44, 50, 110, 0.65),
		rgba(33, 38, 90, 0.75),
		rgba(22, 26, 70, 0.85),
		rgba(11, 14, 50, 0.95)
	);
	border: 1px solid var(--colour-turquoise);
	border-radius: 16px;
	backdrop-filter: blur(6px);
}

@media (max-width: 600px) {
	.page-body {
		max-width: 85svw;
	}
}

.page-body p {
	margin-bottom: 1rem;
}

.page-body a {
	color: var(--colour-turquoise);
	text-decoration: underline;
}

@media screen and (max-width: 430px) and (min-height: 780px) and (orientation: portrait) {
	.container {
		padding-top: 0;
	}
	.hero-wrapper {
		gap: 0;
	}
	.hero {
		padding-top: 0;
	}
	.hero-image {
		margin-bottom: 0.5rem;
	}
}
