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

body {
	position: relative;
	font-family: "Gambetta-Variable", sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

.grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(3, 1fr);
}

.grid > div {
	aspect-ratio: 1 / 1;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: background-image 0.5s ease-in-out;
}

.content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	aspect-ratio: 2 / 1;
	width: 100%;
	padding-inline: 60px;
	padding-top: 10svh;
	padding-bottom: 7.5svh;
}

.top {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.tagline {
	text-transform: uppercase;
	font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

.tagline h1 {
	font-weight: 400;
	color: #ffffff;
	mix-blend-mode: difference;
}

.slogan {
	display: flex;
	justify-content: flex-start;
	font-weight: 500;
	padding-inline: 300px;

	text-transform: uppercase;
	font-size: clamp(0.938rem, 0.813rem + 0.625vw, 1.563rem);
}

.slogan p {
	max-width: 20ch;
	text-wrap: balance;
	color: #ffffff;
	mix-blend-mode: difference;
}

.center {
	padding-bottom: 60px;
}

.date {
	display: flex;
	justify-content: flex-end;
	font-weight: 600;
	text-transform: uppercase;
}

.date p {
	font-size: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem);
	color: #ffffff;
	mix-blend-mode: difference;
}

.bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.bottom img {
	width: 500px;
	mix-blend-mode: difference;
}

.location {
	display: flex;
	text-transform: uppercase;
	font-size: clamp(0.75rem, 0.588rem + 0.813vw, 1.563rem);
	color: #ffffff;
	mix-blend-mode: difference;
}

.location p {
	max-width: 40ch;
}

.byaddup {
	position: absolute;
	transform-origin: bottom right;
	transform: rotate(90deg);
	right: 45px;
	bottom: 0;
	font-size: clamp(14px, 3vw, 16px);
	color: #ffffff;
	mix-blend-mode: difference;
}

.byaddup a span.line {
	display: inline-block;
	margin-right: 5px;
	width: 25px;
	height: 1px;
	background-color: #ffffff;
	mix-blend-mode: difference;
}

.byaddup a span.therock {
	display: inline-block;
	margin-left: 5px;
	font-weight: 700;
	padding-right: 20px;
}

footer {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 15px 60px;
}

.sponsors {
	display: flex;
	gap: 30px;
}

.sponsor {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sponsor_title {
	font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
	text-transform: uppercase;
	font-weight: 600;
}

.sponsor_logos {
	display: flex;
	align-items: center;
	gap: 30px;
}

.sponsor_logo img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.social {
	display: flex;
	gap: 10px;
}

.social_icon {
	width: 40px;
}

.social_icon img {
	width: 100%;
	display: block;
}

@media (max-width: 1024px) {
	.grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(6, 1fr);
	}

	.content {
		padding-inline: 20px;
		aspect-ratio: 1 / 2;
	}

	.slogan {
		padding-inline: 120px;
	}

	.bottom img {
		width: 320px;
	}

	footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
		padding: 30px 40px;
	}

	.sponsors {
		flex-wrap: wrap;
		row-gap: 20px;
	}

	.social {
		align-self: start;
	}

	.social_icon {
		width: 30px;
		height: 30px;
	}

	.tagline {
		font-size: clamp(1.25rem, 0.875rem + 1.875vw, 3.125rem);
	}

	.date p {
		font-size: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
	}
}

@media (max-width: 767px) {
	.grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(6, 1fr);
	}

	.content {
		padding-inline: 20px;
	}

	.top {
		gap: 10px;
	}

	.slogan {
		padding-inline: 0;
	}

	.center {
		padding-bottom: 20px;
	}

	.date {
		justify-content: flex-start;
	}

	.bottom {
		flex-direction: column;
		align-items: start;
		gap: 30px;
	}

	.bottom img {
		width: 220px;
	}

	.location {
		gap: 15px;
	}

	.company {
		transform: rotate(90deg);
	}

	.company .line {
		width: 20px;
		height: 1px;
	}

	footer {
		padding: 25px 20px;
		gap: 30px;
	}

	.sponsors {
		gap: 25px;
		width: 100%;
	}

	.sponsor_logos {
		flex-wrap: wrap;
		gap: 15px;
	}

	.sponsor_logo img {
		width: 40px;
		height: 40px;
	}

	.social {
		align-self: start;
	}
	.social_icon {
		width: 30px;
		height: 30px;
	}
}
