/* @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Outfit:wght@100..900&display=swap'); */


/* outfit-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-v14-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/outfit-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* outfit-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/outfit-v14-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/cormorant-garamond-v20-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cormorant-garamond-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/cormorant-garamond-v20-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




:root {
	--sl: 70%;
	--sp: 85%;
	--msize: 100%;
	--isize: calc(var(--msize)/1);

	--cprim: #e9e9e9;
	--cbg: #f3f3f3;
	--csec: #000000;

	--ctst: rgba(170, 51, 153, 0.0);
	--font: "Outfit", sans-serif;
	--lfont: "Cormorant Garamond", serif;

}

#tst {
	position: fixed;
	top: 0;
	background: #fff;
}

html {
	scroll-behavior: smooth;
	opacity: 0;
	transition: opacity 1s;
}

body::selection {
	color: red;
	background-color: yellow;
}


body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	color: var(--csec);
	background: var(--cbg);
}

.tcon {
	position: absolute;
	height: 100svh;
	width: 100vw;
	background: var(--cprim);
	display: grid;
	grid-template-rows: 50% 50%;
	grid-template-columns: 100%;
	place-items: center;
}

.l,
.r {
	height: var(--sp);
	width: auto;
	aspect-ratio: 1/1;
	display: grid;
	grid-template-rows: 100%;
	grid-template-columns: 100%;
	place-items: center;
	font-weight: bold;
	justify-self: center;

	background: var(--ctst);
}

.r {
	align-self: start;
}



/* Viewport Wide */
@media (min-aspect-ratio: 2/1) {

	.l,
	.r {
		height: 70vh !important;
		width: 70vh !important;
	}

	.r {
		justify-self: start;
	}
}

/* Viewport Landscape */
@media (min-aspect-ratio: 1/1) {
	.tcon {
		grid-template-columns: 50% 50%;
		grid-template-rows: 100%;
	}

	.l,
	.r {
		height: auto;
		width: var(--sl);
	}

	.r {
		justify-self: start;
		align-self: center;
	}
}

/* Viewport Tall */
@media (max-aspect-ratio: 1/2) {

	.l,
	.r {
		height: auto;
		width: var(--sp);
		justify-self: center;
	}

	.r {
		align-self: start;
	}

}


/* ================================
Left Top-Section 
=================================*/
.l {
	grid-template-rows: 60% 40%;
}

.hello {
	font-size: 12vmin;
	font-size: calc(2rem + 6vmin);
	align-self: end;
	font-family: var(--font);
}

.subhello {
	font-size: 2.4vmin;
	font-size: calc(0.8rem + 0.2vmin);
	font-weight: normal;
	align-self: start;
	text-align: center;
	font-family: var(--font);
}

/* ================================
Right Top-Section 
=================================*/
.ec {
	grid-row-start: 1;
	grid-column-start: 1;
	height: var(--msize);
	width: var(--msize);
	display: grid;
	grid-template-rows: 100%;
	grid-template-columns: 100%;
	place-items: center;
}


#rotary {
	transform: rotate(0deg);
	height: var(--msize);
	width: var(--msize);
	grid-row-start: 1;
	grid-column-start: 1;
	background-image: url("/assets/tst4_dark.svg");
	background-repeat: no-repeat;
	cursor: pointer;
	border-radius: 100%;
}

#hk {
	grid-row-start: 1;
	grid-column-start: 1;
	margin-top: 43%;
	margin-left: 67%;
	height: calc(0.13 * var(--msize));
	width: calc(0.29 * var(--msize));
	background-image: url("/assets/hook1.svg");
	background-repeat: no-repeat;
	transform: rotate(10deg);
}

/* Elements */
.bb {

	grid-row-start: 1;
	grid-column-start: 1;
	height: calc(0.168 * var(--msize));
	width: calc(0.168 * var(--msize));
	background: var(--ctst);
	background: var(--cprim);

	position: relative;
	top: calc(0.0 * var(--msize));
	left: calc(-0.38 * var(--msize));
	transform-origin: calc(2.765 * var(--msize));
	display: grid;
	place-items: center;
	border-radius: 100%;

	text-align: center;
	font-size: 1.3vmin;
	font-size: calc(5px + 0.7vmin);
}


.micon {
	height: 30%;
	width: 30%;
	display: grid;
	border-radius: 100%;
	place-items: center;
}

#b1 {
	transform: rotate(150deg);
}

#t1 {
	transform: rotate(-150deg);
}

#b2 {
	transform: rotate(120deg);
}

#t2 {
	transform: rotate(-120deg);
}

#b3 {
	transform: rotate(90deg);
}

#t3 {
	transform: rotate(-90deg);
}

#b4 {
	transform: rotate(60deg);
}

#t4 {
	transform: rotate(-60deg);
}

#b5 {
	transform: rotate(30deg);
}

#t5 {
	transform: rotate(-30deg);
}

#b6 {
	transform: rotate(0deg);
}

#t6 {
	transform: rotate(0deg);
}

#b7 {
	transform: rotate(330deg);
}

#t7 {
	transform: rotate(-330deg);
}

#b8 {
	transform: rotate(300deg);
}

#t8 {
	transform: rotate(-300deg);
}

#b9 {
	transform: rotate(270deg);
}

#t9 {
	transform: rotate(-270deg);
}

#b0 {
	transform: rotate(240deg);
}

#t0 {
	transform: rotate(-240deg);
}



/* ================================
Bottom Container
=================================*/
.bcon {
	position: absolute;
	top: 100svh;
	left: 0;
	min-height: 100vh;
	width: 100vw;
	display: grid;
}

.content {
	background: var(--cbg);
	top: 0;
	left: 0;
	min-height: 80vh;
}


/* Text-styles */
h1,
h2,
h3 {
	font-weight: 700;
	color: var(--txtcolor);
	margin: 0;
}

h2 {
	margin-left: 3%;
}

h3 {
	margin-left: 5%;
}

p {
	font-weight: 300;
	font-style: normal;
	font-size: 1rem;
	margin: 0;
	line-height: 1.5rem;
}

ul {
	font-family: var(--font);
	font-weight: 300;
	font-style: normal;
	color: var(--csec);
	font-size: 1rem;
}

li {
	list-style-type: square;
	line-height: 1.5rem;
}

a {
	color: var(--csec);
	font-style: normal;
	text-decoration-style: dotted;
}

a:hover {
	opacity: 0.5;
}

a:visited,
a:link:active,
a:visited:active {
	color: var(--csec);
}



.tsection {
	margin-left: 5%;
	margin-top: 80px;
	width: 85%;
	font-family: var(--font);
	font-size: 1.2rem;
}

.psection {
	margin-left: 10%;
	margin-top: 20px;
	margin-bottom: 60px;
	width: 80%;
	font-family: var(--font);
	text-align: justify;
	color: var(--csec);
}

.isection {
	margin-left: 10%;
	margin-top: 0px;
	margin-bottom: 100px;
	width: 80%;
	font-family: var(--font);
}

.lsection {
	margin-left: 10%;
	margin-top: -20px;
	margin-bottom: 60px;
	width: 80%;
	font-family: var(--font);
}

.pic {
	max-width: 100%;
	object-fit: none;
	object-fit: scale-down;
	object-fit: contain;
	max-height: 50vh;
}

.capt {
	font-style: italic;
	opacity: 0.7;
	font-size: 0.8rem;
	font-family: var(--font);
}



/* ================================
Footer-Styles
=================================*/
.footer {
	left: 0;
	min-height: 20vh;
	min-height: 110px;
	width: 100vw;
	background: var(--cprim);
	box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.5);
}

.fcontent {
	margin-left: 10%;
	width: 80%;
	height: 100%;
	display: grid;
	align-items: center;
	justify-items: start;
	font-family: var(--font);
}

#colo {
	font-family: var(--font);
	cursor: pointer;
	color: var(--csec);
	-webkit-tap-highlight-color: transparent
}


/* ================================
Colophon-Styles
=================================*/

#colospace {
	height: 35rem;
	height: 0;
	justify-items: center;
	width: 100%;
}

.cocon {
	position: fixed;
	bottom: 0;
	z-index: -1;
	width: 100%;
	max-width: 100vw;
	text-align: center;
	font-family: var(--lfont);
	display: grid;
	justify-items: center;
}

.cotitle {
	margin-top: 5vh;
	font-size: 1rem;
	text-align: center;
	width: 80%;
	color: var(--csec);
}

.cosection {
	font-size: 1rem;
	text-align: center;
	width: 80%;
	color: var(--csec);
}

.f2 {
	margin-top: 5vh;
	min-height: 50px;
	width: 100%;
}

/* ================================
NavToTop-Styles
=================================*/
#bnav {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	cursor: pointer;
	transition: all 0.5s;
	background-image: url("/assets/btt_dark.svg");
	-webkit-tap-highlight-color: transparent;
	opacity: 0;
	z-index: 2;
}


@media (hover: hover) {
	#bnav:hover {
		transform: rotate(360deg) !important;
	}
}


/* ================================
Toast-Styles
=================================*/
.toast {
	position: fixed;
	top: -130px;
	left: 0;
	height: 100px;
	width: 100vw;
	background: var(--csec);
	display: grid;

	grid-template-columns: auto 100px;
	grid-template-rows: 100px;
	transition: top .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	padding-top: 30px;
}

.ttxt {
	width: calc(100% - 100px);
	margin-left: 100px;
	align-self: center;
	text-align: center;
	font-family: var(--font);
	font-weight: 500;
	font-style: normal;
	font-size: 1rem;
	color: var(--cprim);
}

.tclose {
	height: 40px;
	width: 40px;
	display: grid;
	align-self: center;
	justify-self: center;

}

#btn_tclose {
	height: 40px;
	width: 40px;
	color: var(--cprim);
	background: var(--csec);
	cursor: pointer;
	margin: 0;
	padding: 0;
}

#btn_tclose:after {
	content: "\00d7";
	font-size: 40px;
	line-height: 40px;
	height: 40px;
	width: 40px;
}


/*Desktop Stuff*/
@media only screen and (min-width: 1000px) {
	.tsection {
		margin-left: 20%;
		width: 50%;
	}

	.psection {
		margin-left: 25%;
		width: 50%;
	}

	.isection {
		margin-left: 25%;
		width: 50%;
	}

	.lsection {
		margin-left: 25%;
		width: 50%;
	}

	.cotitle {
		width: 50%;
	}

	.cosection {
		width: 50%;
	}
}




/* ================================
Style Reset
=================================*/
button {
	display: inline-block;
	border: none;
	padding: none;
	margin: 0;
	padding: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
}

button:focus {
	background: none;
	outline: none;
}


#colo:focus-visible {
	outline: white solid 2px;
	padding: 5px;
	border-radius: 2px;
}