:root {
	--color-primary: #ff9db6; /* Pink */
	--color-secondary: #241eb9; /* Blue */
	--color-secondary2: #18186f; /* Darker blue */
	--ticker-speed: 5s;
}

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

html, body {
	margin: 0;
}

html {
	background-color: var(--color-primary);
	color: var(--color-secondary2);
	font-family: "din-condensed", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

.strong-text {
	font-weight: normal;
	font-size: 1.2rem;
}

a:has(.site-logo) {
	display: inline-block;
	width: 60%;
	max-width: 12rem;
}

.site-logo {
	width: 100%;
	margin-bottom: 1rem;
}

.site-header {
	text-align: center;
	min-height: 80vh;
	padding: 2rem;
	background: var(--color-primary) url("images/bg-stripe.png") center center no-repeat;
	background-size: cover;
}

.slogan {
	text-transform: uppercase;
	font-size: 1.3rem;
}

.small-logos {
	display: flex;
	margin-bottom: 1rem;
	margin-top: 1.5rem;
	gap: 1rem;
	justify-content: center;
}

.small-logos img {
	width: 4rem;
}


.wrapper {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 1rem;
}

.site-section {
	padding: 4rem 0;
	margin: 4rem 0;
}

.image-text {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5vw;
	align-items: center;
}

.image-text-image img {
	width: 100%;
	height: auto;
}

.image-text-text {
	padding:;
}

/*
	Ticker
*/

.ticker-wrapper {
	margin-left: -2rem;
	margin-right: -2rem;
	padding: 0.5rem 0;
	overflow: hidden; /* Hides the content that's outside the wrapper */
	white-space: nowrap; /* Prevents text from wrapping to the next line */
	box-sizing: border-box; /* Includes padding and border in the element's total width */
	height: 3em;
	margin-bottom: 5rem;
	font-family: "prohibition", sans-serif;
}

.ticker-content {
  display: inline-block; /* Allows the content to stretch horizontally */
  animation: marquee 40s linear infinite;
  text-transform: uppercase;
  color: white;
  font-size: 1.6rem;
  line-height: 1;
}

.ticker-content span {
	display: inline-block;
  padding: 0 0.5rem;
	color: var(--color-secondary);
}

.item-collection {
	display: inline-block;
}

.item-collection-1 {
  position: relative;
  left: 0%;
  animation: swap 40s linear infinite;
}



/* Transition */
@keyframes marquee {
  0% {
    transform: translateX(0)
  }
  100% {
    transform: translateX(-100%)
  }
}

@keyframes swap {
  0%, 50% {
    left: 0%;
  }
  50.01%,
  100% {
    left: 100%;
  }
}


h1, h2, h3, h4 {
	font-family: "prohibition", sans-serif;
	font-weight: 400;
	font-style: normal;
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: var(--color-secondary);
}

h1 {
	font-size: 5rem;
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 2rem;
}

h2 {
	font-size: 2rem;
}

.sup-heading {
	display: block;
	color: white;
	font-size: 3rem;
	line-height: 1;
}

.coop-section {
	text-align: center;
}

.coop-section h2 {
	margin-bottom: 4rem;
	color: white;
}

.coop-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1rem 5%; 
}

.coop-logos a {
	
}

.coop-logos img {
	max-width: 130px;
	max-height: 70px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.bg-right, .bg-left {
	position: relative;
	overflow: hidden;
}

.image-text-image {
	position: relative;
}


.bg-right .image-text-image::after, .bg-left .image-text-image::after  {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -4rem;
	top: -4rem;
	z-index: -1;
	width: 20rem;
	transform: skew(-10deg) translateX(-100%);
	background-color: #ff73ad;
}

.bg-right .image-text-image::after {
	right: 50%;
	transform: skew(-10deg) translateX(0%);
}

/*.bg-left .image-text-image::after  {
	content: url("images/bg-single-stripe.png");
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: -1;
	height: 100%;
	transform: translateX(-50%);
	width: auto;
}*/

.btn {
	display: inline-block;
	background-color: var(--color-secondary);
	color: white;
	padding: 0.7rem 1rem;
	text-transform: uppercase;
	text-decoration: none;
}

@media (max-width: 900px) {
	h1 {
		font-size: 3rem;
	}
	.ticker-wrapper {
		margin-bottom: 2rem;
	}
	.sup-heading {
		font-size: 2rem;
	}
	.site-section {
		padding: 1rem 0;
		margin: 1rem 0;
	}
	.image-text {
		grid-template-columns: 1fr;
	}
	.text-first .image-text-image {
		order: 1;
	}
	.text-first .image-text-text {
		order: 2;
	}
	.coop-logos {
		gap: 1rem;
	}
	/*.coop-logos img {
		min-width: 100px;
		max-height: auto;
		height: auto;
	}*/
}

@media (max-width: 500px) {
	.site-header {
		padding-top: 1rem;
	}
	.ticker-wrapper {
		margin-bottom: 1rem;
	}
	.ticker-content {
		font-size: 1.3rem;
	}
	.site-logo {
		max-width: 7rem;
	}
	h1 {
		font-size: 2.4rem;
	}
	.sup-heading {
		font-size: 1.3rem;
	}
	.slogan {
		font-size: 1rem;
	}
	.small-logos img {
		max-width: 3rem;
	}
	.coop-section h2 {
		margin-bottom: 2rem;
	}
	/*.coop-logos {
		margin-top: 0;
		gap: 1.5rem;
	}*/
}