#hero {
	position: relative;

	display: flex;
	justify-content: center;
	gap: 40px;
	padding-top: 50px;
}

#hero-bg-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-70%, -50%);
	min-width: 220px;
	min-height: 100px;
	transform: translate(-50%, 30%) scale(12);
	z-index: 1;
	opacity: 0.15;


	& .logo-mid-left, & .logo-mid-right, & .logo-out-left, & .logo-out-right {
		fill: white !important;
	}
}

.logo-mid-left,
.logo-mid-right,
.logo-out-left,
.logo-out-right {
	fill: white !important;
}

#hero-text {
	max-width: 35%;
	align-content: center;
	margin-bottom: 30px;
	z-index: 2;

	--slogan-indent: 0.75em;
	--start-delay: 1.5s;
	--stagger: 0.6s;
	--caption-delay: calc(var(--start-delay) * 2 + var(--stagger) * 1.2);
	--cta-delay: calc(var(--caption-delay) + var(--stagger) * 0.5);
}

#hero-slogan {
	line-height: 108%;
	font-size: 80px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

#slogan-1, #slogan-2, #slogan-3 {
	animation-name: slogan-reveal;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: backwards;
}

#slogan-1 {
	animation-delay: calc(var(--start-delay) + var(--stagger) * 0);
	margin-left: calc(var(--slogan-indent) * 0);
}
#slogan-2 {
	animation-delay: calc(var(--start-delay) + var(--stagger) * 1);
	margin-left: calc(var(--slogan-indent) * 1);
}
#slogan-3 {
	animation-delay: calc(var(--start-delay) + var(--stagger) * 2);
	margin-left: calc(var(--slogan-indent) * 2);
}

@media (prefers-reduced-motion: no-preference) {
	@keyframes slogan-reveal {
		from {
			opacity: 0;
			transform: translateX(-30px);
		}
		to {
			opacity: 1;
			transform: translateX(0px);
		}
	}
}

#hero-caption {
	margin: 30px 0px 50px;
	font-size: 30px;
	font-weight: 600;
	line-height: 180%;
	animation: 1.0s ease-out var(--caption-delay) backwards hero-caption-reveal;
}

@media (prefers-reduced-motion: no-preference) {
	@keyframes hero-caption-reveal {
		from {
			opacity: 0;
			transform: translateY(-10px);
			pointer-events: none;
			user-select: none;
		}
		to {
			opacity: 1;
			transform: translateY(0px);
			pointer-events: auto;
			user-select: auto;
		}
	}
}

#hero-caption em {
	font-style: normal;
	color: var(--fuschia);
	font-weight: bold;
}



#hero-cta {
	border-radius: 50px;

	color: white;
	background-color: var(--fuschia);
	font-size: 26px;
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;

	position: relative;

	transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
	display: inline-block;
	overflow: hidden;

	animation: 1.0s ease-out var(--cta-delay) backwards hero-caption-reveal;

	display: inline-flex;
	align-content: center;

	white-space: nowrap;
}

#hero-cta:hover {
	color: var(--fuschia);
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
	transform: scale(1.01);
}

#hero-cta span {
	z-index: 1;
	position: relative;

	padding: 15px 30px;
}
#hero-cta-transition {
	background-color: white;
	position: absolute;
	width: 110%;
	height: 140px;
	bottom: 100%;
	left: -25%;
	transform: scale(0.9);
	transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
	border-radius: 100%;
}

#hero-cta:hover #hero-cta-transition {
	bottom: -60%;
	left: -5%;
	transform: scale(1);
}

#hero-cta-arrow {
	color: white;
	background-color: var(--fuschia);
	padding: 14px 20px;
	border-radius: 50%;
	z-index: 2;
	transition: 0.35s ease-in-out;
	margin-left: -30px;
	font-weight: 200;
}

#hero-cta:hover #hero-cta-arrow {
	color: white;
	margin-left: 0px;
}



#hero-img {
	height: 900px;
	margin-left: 50px;
	z-index: 2;
	animation: 0.9s ease-out 1s backwards hero-img-reveal;
	filter: drop-shadow(20px 0px 20px rgba(0, 0, 0, 0.125));
}

@media (prefers-reduced-motion: no-preference) {
	@keyframes hero-img-reveal {
		from {
			opacity: 0.0;
			transform: translateX(10px);
		}
		to {
			opacity: 1;
			transform: translateX(0px);
		}
	}
}


#flowers-1, #flowers-2 {
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	height: 100%;
	opacity: 0.07;
}

#flowers-1 {
	right: 0;
	animation: 3s ease-out 2.5s backwards flowers-1-reveal;
}

#flowers-2 {
	left: 0;
	animation: 3s ease-out 1.5s backwards flowers-2-reveal;
}

@keyframes flowers-1-reveal {
	from {
		opacity: 0;
		right: -40px;
	}
	to {
		opacity: 0.07;
		right: 0px;
	}
}

@keyframes flowers-2-reveal {
	from {
		opacity: 0;
		left: -40px;
	}
	to {
		opacity: 0.07;
		right: 0px;
	}
}

@media (max-width: 1800px){

	main {
		--p: calc(100vw/ 1800);

		--sz: calc(var(--p) * 30);
		--marg: clamp(10px, var(--sz), 30px);
		margin: 0px var(--marg);
	}

	#hero {
		--sz: calc(var(--p) * 40);
		gap: clamp(10px, var(--sz), 40px);
	}

	#hero-bg-logo {
		transform: translate(-50%, 30%) scale(9);
	}

	#hero-text {
/*		--sz: calc(1 / (100vw / 1800) * 35);*/
/*		max-width: clamp(45%, var(--sz), 35%);*/
	}

	#hero-slogan {
		--sz: calc(var(--p) * 80);
		font-size: clamp(35px, var(--sz), 80px);
	}

	#hero-caption {
		--sz: calc(var(--p) * 30);
		font-size: clamp(14px, var(--sz), 30px);

		--mg: calc(var(--p) * 50);
		margin-bottom: clamp(18px, var(--mg), 50px);
	}

	#hero-cta {
		--sz: calc(var(--p) * 26);
		font-size: clamp(14px, var(--sz), 26px);

		--pad: calc(var(--p) * 10);

		--mg: calc(var(--p) * 50);
		margin-bottom: clamp(0px, var(--mg), 50px);
	}

	#hero-img {
		--sz: calc(var(--p) * 900);
		height: clamp(300px, var(--sz), 900px);
	}

	#flowers-1, #flowers-2 {
		display: none;
	}
}

@media (max-width: 1200px) {
	#hero {
		gap: 0px;
		padding-top: 25px;
	}

	#hero-text {
		max-width: 50%;
		margin-bottom: 0;
	}

	#hero-img {
		margin-left: 10px;
	}
}

@media (max-width: 750px) {
	#hero-bg-logo {
		transform: translate(-59%, -35%) scale(6);
	}

	#hero-text {
		max-width: 80%;
		margin-bottom: 10px;
		display: grid;
	}

	#hero {
		display: grid;
		justify-items: center;
	}

	#slogan-1, #slogan-2, #slogan-3 {
		margin-left: 0;
		text-align: center;
	}

	#hero-caption {
		text-align: center;
		font-size: 20px;
	}

	#hero-cta {
		margin-left: auto;
		margin-right: auto;
	}

	#hero-img {
		margin-left: 0px;
	}
}

@media (max-width: 600px) {
	#hero-text {
		max-width: 90%;
	}

	#hero-cta span {
		padding: 10px 20px;
	}

	#hero-cta-arrow {
		padding: 10px 14px;
		margin-left: -15px;
	}

	#hero-cta:hover #hero-cta-transition {
		bottom: -80%;
	}
}