* {
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	background: linear-gradient(to bottom right, #849ecd, #cc69a0);
	background-image: url('../images/Groovy-BG.jpg');
	background-size: cover;
	background-position: top left;
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
	color: #fbfade;
	font-family: "futura-pt-condensed", sans-serif;
	font-weight: 800;
	font-style: normal;
	overflow-x: clip;
}

img {
	display: block;
}

h1 {
	margin: 0;
}

.topline {
	margin: 0 auto;
	width: 75vw;
	max-width: 850px;
}

.topline img {
	width: 100%;
	height: auto;
}

.placeholder-content {
	display: flex;
	width: 100svw;
	height: 100svh;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.placeholder-content p a {
	color: inherit;
	text-decoration: underline;
	font-weight: 500;
}

.hero {
	width: 95vw;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.hero .queenz {
	position: relative;
	border-bottom: 4px solid #35d7ff;
}

.hero .queenz img {
	width: 100%;
	height: auto;
}

.lockup {
	position: relative;
	width: 85%;
	max-width: 800px;
	margin: -30vw auto 0; /* negative top pulls it up over the hero */
	z-index: 10;
	text-align: center;
}

@media(min-width: 1400px) {
	.lockup {
		margin: -15vw auto 0;
	}
}

.lockup img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

.lockup::before {
	content: '';
	position: absolute;
	inset: 0;
	left: 50%;
	bottom: 50%;
	transform: translateX(-50%) translateY(25%);
	margin: auto;
	width: 112%;
	height: 100%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	filter: blur(50px);
	z-index: -1;
	pointer-events: none;
}

.content {
	width: 100%;
	padding: 0 20px;
	padding-top: clamp(10px, 3vw, 30px);
	padding-bottom: clamp(30px, 5vw, 80px);
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

h2, h3 {
	margin-block: clamp(18px, 2vw, 30px);
	text-box: trim-both cap alphabetic;
}

h2 {
	font-size: clamp(24px, 4vw, 50px);
}

h3 {
	color: #edb7c4;
	font-size: clamp(20px, 3vw, 36px);
}

.content p {
	color: #caf4ff;
	font-size: clamp(18px, 2vw, 24px);
}

.btn {
	padding: 10px 20px;
	text-transform: uppercase;
	border-radius: 12px;
	text-decoration: none;
	color: white;
	background: black;
	display: inline-block;
}

.btn.btn-primary {
	background: #fbf9da;
	color: #753292;
}

.btn.btn-primary:hover {
	background: #753292;
	color: #fbf9da;
}

.btn:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.logos {
	margin: 30px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.logos img {
	width: 60px;
	height: auto;
	max-height: 50px;
	object-fit: contain;
}

@media(min-width: 782px) {
	.logos img {
		width: 90px;
		height: auto;
		max-height: 80px;
	}	
}