@import url('https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css');
@import url('https://static.clemclem.world/fonts/?family=HelveticaNeue&weights=400,500,700');
@import url('https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&display=swap');

* {
	box-sizing: border-box
}

:root {
	--color-1: #DC2126;
	--color-2: #FFF6ED;
	--swiper-navigation-color: --color-2;
	--color-3: #2DC0FE;
	--color-4: #01A33C;
	--color-5: #FECE01;
	--color-6: #000000;
	--color-7: #287fc1;
	--padding: 2rem;
	--swiper-navigation-sides-offset: var(--padding);
	--font-size-0: 1rem;
	--font-size-00: calc(var(--font-size-0) * 1.25);
	--font-size-000: calc(var(--font-size-0) * 1.5);
	--font-size-1: 7rem;
	--font-size-11: calc(var(--font-size-1) * 0.375);
	--font-size-2: 3rem;
	--font-size-22: calc(var(--font-size-2) * 0.825);
	--font-size-222: calc(var(--font-size-2) * 0.625);
	--radius: 2rem;
}

body {
	color: var(--color-6);
	font-size: var(--font-size-0);
	font-family: "Helvetica Neue";
	font-weight: 400;
	line-height: 1;
}

a {
	color: inherit;
	text-decoration: none
}

#header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2
}

#header nav {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	padding: var(--padding);
	text-align: center
}

#logo img {
	height: calc(var(--font-size-0) * 5);
	display: block
}

#langs {
	display: flex;
	align-items: center;
	justify-content: center
}

.lang-switcher {
	width: max-content;
	border: calc(var(--font-size-00) / 8) solid var(--color-2);
	display: flex;
	align-items: center;
	border-radius: var(--radius);
}

/*.lang-switcher:hover {
	flex-direction: row-reverse
} */

.lang-switcher span {
	padding: 0 calc(var(--padding) / 2);
	font-family: "Love Ya Like A Sister", cursive;
	color: var(--color-2);
	font-weight: bold;
	font-size: var(--font-size-222)
}

.lang-switcher:hover span {
	color: var(--color-2);
}

.lang-switcher img {
	display: block;
	width: calc(var(--font-size-0) * 2.5);
	border: calc(var(--font-size-00) / 8) solid var(--color-2);
	border-radius: 50%
}

.lang-switcher.dx img {
	margin-right: calc((var(--font-size-00) / 8) * -1)
}

.lang-switcher.sx img {
	margin-left: calc((var(--font-size-00) / 8) * -1)
}

/*.lang-switcher.dx:hover img {
	margin-left: calc((var(--font-size-00) / 8) * -1);
	margin-right: 0;
}

.lang-switcher.sx:hover img {
	margin-right: calc((var(--font-size-00) / 8) * -1);
	margin-left: 0;
} */

#ig {
	display: flex;
	align-items: center;
	justify-content: flex-end
}

#ig img {
	height: calc(var(--font-size-0) * 3);
	display: block
}

#home .placeholder {
	width: calc(var(--font-size-0) * 5);
	display: block;
	position: absolute;
	left: 50%;
	bottom: var(--padding);
	transform: translateX(-50%)
}

section {
	width: 100%;
}

section .section-inner {
	width: 100%;
	height: 100%;
	padding: var(--padding) 0 calc(var(--padding) * 1.5);
}

#merch,
#supporters {
	padding-bottom: calc(var(--padding) * 1.5);
}

h1 {
	font-family: "Love Ya Like A Sister", cursive;
	font-size: var(--font-size-1);
	margin: 0 calc(var(--padding) * 2);
	text-transform: uppercase
}

.button {
	width: max-content;
	display: block;
	font-size: var(--font-size-00);
	padding: calc(var(--padding) / 6) calc(var(--padding) / 3);
	text-transform: uppercase;
	border-radius: var(--radius);
	border: calc(var(--font-size-00) / 8) solid;
}

.button:hover {
	color: var(--color-6)
}

#home {
	height: 100vh;
	background-image: url('/assets/home.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#about,
#activities {
	background: var(--color-5);
}

#about .section-inner,
#activities .section-inner {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	text-align: center
}

#about .section-inner > img {
	width: 30%;
	display: block
}

#about .section-inner > p,
#activities  .section-inner > p {
	max-width: 75%;
	font-size: var(--font-size-22);
	font-weight: bold;
	margin: 0;
	margin-top: var(--padding)
}

#about article {
	width: 33.33%;
	height: auto;
	padding: var(--padding);
	padding-right: calc(var(--padding) * 2);
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	align-items: flex-start
}

#about article h2 {
	font-size: var(--font-size-2);
	font-weight: 700;
	margin: 0;
}

#about article h3 {
	font-weight: 400;
	font-family: "Love Ya Like A Sister", cursive;
	font-size: var(--font-size-11);
	margin: 0
}

#about article p {
	margin: 0;
	font-weight: bold;
	font-size: var(--font-size-222);
}

#about article img {
	width: 50%;
	display: block
}

.swipe-hand {
    width: calc(--font-size-0 * 5);
    animation: bounce-right 1s infinite;
    position: absolute;
    top: 3vmin;
    right: 0;
    z-index: 4;
}

@keyframes bounce-right {
    0%, to {
        transform: translateX(-25%);
        animation-timing-function: cubic-bezier(.8, 0, 1, 1)
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, .2, 1)
    }
}

#activities .placeholder {
	width: calc(var(--font-size-0) * 5);
	display: block;
	margin: 0 auto;
	margin-top: var(--padding);
}

.activity {
	color: var(--color-2);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: flex-start;
}

.activity:not(.open):hover {
	color: var(--color-6)
}

.activity:not(.open) {
	align-items: center;
	cursor: pointer
}

.activity-more {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 100%
}

.activity .activity-inner,
.activity-more {
	padding: var(--padding);
}

.activity.open .activity-more {
	display: none
}

.activity:not(.open) .activity-inner > *:not(h2) {
	display: none
}

.activity:not(.open) .activity-slider {
	display: none !important
}

.activity:nth-of-type(4n+1) {
	background: var(--color-4);
}

.activity:nth-of-type(4n+2) {
	background: var(--color-1);
}

.activity:nth-of-type(4n+3) {
	background: var(--color-3);
}

.activity:nth-of-type(4n+4) {
	background: var(--color-5);
}

.activity h2 {
	font-size: var(--font-size-2);
	font-family: "Love Ya Like A Sister", cursive;
	margin: 0;
}

.activity h3,
#merch article h2,
#merch article h3  {
	font-weight: 400;
	font-size: var(--font-size-000);
	margin: 0;
}

.activity h3 {
	margin: var(--font-size-0) 0 var(--font-size-000);
}

.activity h4 {
	font-weight: 400;
	font-size: var(--font-size-00);
	margin: 0
}

.activity p {
	margin: 0;
	margin: var(--font-size-0) 0 calc(var(--font-size-0) * 2);
}

.activity .swiper {
	width: 100%;
	height: 100%;
	min-height: 50vh
}

.activity-slider .swiper-slide {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#merch {
	background: var(--color-3)
}

#merch h1 {
	color: var(--color-1);
}

#merch article {
	width: calc(28% - var(--padding));
	margin: 0 calc(var(--padding) / 2);
	color: var(--color-1);
}

#merch article img {
	width: 100%;
	display: block;
	background: var(--color-2);
	border-radius: var(--radius);
}

#merch article > div {
	background: var(--color-2);
	padding: calc(var(--padding) / 2) var(--padding);
	margin-top: calc(var(--padding) / 2);
	border-radius: var(--radius);
}

#merch article p {
	margin: 0;
	font-size: var(--font-size-00)
}

#merch article h2,
#merch article h3,
#merch article p,
#merch article .button {
	font-weight: 500;
}

.merch-bottom-b {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: calc(var(--font-size-00)* -.5)
}

#merch .button:hover {
	color: var(--color-2);
	background: var(--color-1)
}

#supporters {
	background: var(--color-2);
}

#supporters .swiper-wrapper {
	justify-content: center
}

#supporters article {
	width: calc(33.33% - calc(var(--padding) * 4));
	height: auto;
	margin: 0 calc(var(--padding) * 2);
	display: flex;
	align-items: center;
	justify-content: center
}

#supporters article img {
	max-width: 100%;
	height: 70%;
	display: block
}

#footer {
	background: var(--color-5);
	padding: var(--padding);
	color: var(--color-1);
	font-family: "Love Ya Like A Sister", cursive;
	font-size: var(--font-size-000);
	font-weight: bold;
}

#email {
	width: 100%;
	display: block;
	margin-bottom: var(--font-size-0);
}

#email img {
	width: 100%;
	display: block
}

#email:hover {
	color: var(--color-2)
}

#footer nav a {
	color: var(--color-7);
	margin-right: var(--font-size-0)
}

#footer nav a:hover {
	color: var(--color-6)
}

#footer-cols {
	margin-top: var(--font-size-0);
	display: flex;
	align-items: flex-start;
	justify-content: space-between
}

#footer-cols > div {
	text-align: right
}


#footer-cols a:hover {
	color: var(--color-2)
}

@media screen and (min-width: 2000px) {
	:root {
		--font-size-0: 1.5rem;
		--font-size-1: 8rem;
		--font-size-2: 4rem;
		--radius: 2.5rem;
		--padding: 2.5rem;
	}
}

@media screen and (max-width: 1280px) {
	:root {
		--font-size-0: .9rem;
		--font-size-1: 5rem;
		--font-size-2: 2.25rem;
		--padding: 1.5rem;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--font-size-0: .9rem;
		--font-size-1: 4rem;
		--font-size-2: 1.5rem;
	}
	
	#about article {
		width: 66.66%
	}
	
	.activity.open {
		grid-template-columns: 1fr
	}
	
	#merch article {
		width: calc(80% - var(--padding))
	}
	
	#supporters article {
		width: calc(66% - calc(var(--padding) * 4))
	}
	
	#supporters .swiper-wrapper {
		justify-content: unset;
	}
	
	#footer-cols {
		display: block
	}
	
	#footer-cols > div {
		text-align: left
	}
}

@media screen and (max-width: 640px) {
	
}