@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100;0,200;0,300;0,400;0,600;0,800;1,100;1,400&family=Roboto+Mono:wght@200;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100;0,200;0,300;0,400;0,600;0,800;1,100;1,400&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Mono:wght@200;400;600;700&display=swap');


* {
  font-family: 'Lato';
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: light dark; /* both supported */
  --clr-light: rgb(70, 70, 70);
  --clr-dark: black;
  --clr-hover: rgb(36, 36, 36);
  --clr-gradient: rgba(26, 26, 26, 0.7);
  --clr-background: white;
  --clr-faint: rgb(189, 189, 189);
  --clr-fainter: rgb(236, 236, 236);
  --clr-faint-dark: rgb(88, 88, 88);
}

.darkMode {
  --clr-light: rgb(145, 145, 145);
  --clr-dark: rgb(219, 219, 219);
  --clr-hover: rgb(207, 207, 207);
  --clr-gradient:rgba(148, 148, 148, 0.7);
  --clr-background: black;
  --clr-faint: rgb(73, 73, 73);
  --clr-fainter: rgb(189, 189, 189);
}

h1 {
  font-size: 8em;
  font-weight: 300;
}

h2 {
  font-size: 4em;
  font-weight: 300;
  color: aquamarine;
}

.bold {
  font-weight: 800;
}

#main {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
 
  flex-grow: 1;
}

#bars {
  z-index: 600;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#main-back {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
  width: 100%;
  margin-bottom: 100px;
  background-color: var(--clr-background);
  transition: all 0.4s ease-in-out;
}

#back-div  p {
  color: var(--clr-light);
}

#back-div {
  display: flex;
  height: 400px;
  width: 500px;
  border: 1px solid var(--clr-dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}

#heading h1 span {
  background-image: url(img/IMAG58071.jpg);
  background-size: cover;
  background-position: 0% 25%;
  -webkit-background-clip: text;
	/* let's assume that one day it's supported */
	-moz-background-clip: text;
	background-clip: text;
  color: transparent;
}

#heading {
  width: 0;
}

#subtitle h1 span{
  background-image: url(img/IMAG58071.jpg);
  background-size: cover;
  background-position: 0% 25%;
  -webkit-background-clip: text;
	/* let's assume that one day it's supported */
	-moz-background-clip: text;
	background-clip: text;
  color: transparent;
  transition: all 1s ease-in-out;
}

/*#subtitle h1:hover {
  background-position: 20% 55%;
}*/

#subtitle {
  gap: 10px;
}


#bars > div {
  flex-grow: 1;
  flex-basis: 0px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.invisible {
  opacity: 0;
}

#bars > div:nth-child(odd) {
  background-color: var(--clr-background);
}


#bars > div:nth-child(1) {
  transition: all 0.4s ease-in-out, transform 1s ease-in-out 0.5s; 
}

#bars > div:nth-child(2) {
  background-image: url(img/eis.jpg);
  background-size: cover;
  background-position: 20% 55%;
  transition: all 0.4s ease-in-out, transform 1s ease-in-out; 
}


#bars > div:nth-child(3) {
  transition: all 0.4s ease-in-out, transform 1s ease-in-out 0.2s; 
}

#bars > div:nth-child(4) {
  background-image: url(img/koepfe.jpg); 
  background-size: cover;
  background-position: 20% 44%; 
  transition: all 0.4s ease-in-out, transform 1s ease-in-out 0.2s;
}


#bars > div:nth-child(5) {
  transition: all 0.4s ease-in-out, transform 1s ease-in-out; 
}

#bars > div:nth-child(6) {
  background-image: url(img/blueten.jpg);
  background-size: cover;
  background-position: 20% 42%; 
  transition: all 0.4s ease-in-out, transform 1s ease-in-out 0.5s;
}

.mirror-l {
  background: rgb(53,98,190);
  background: linear-gradient(90deg, rgba(53,98,190,1) 0%, rgba(255,255,255,0) 80%); 
  background-clip: text;
  color: transparent;
  filter: saturate(0.3);
  -moz-transform: scale(1, -1);
            -webkit-transform: scale(-1, 1);
            -o-transform: scale(-1, 1);
            -ms-transform: scale(-1, 1);
            transform: scale(-1, 1);
}

.mirror-r {
  background: rgb(53,98,190);
  background: linear-gradient(-90deg, rgba(53,98,190,1) 0%, rgba(255,255,255,0) 80%); 
  background-clip: text;
  color: transparent;
  filter: saturate(0.3);
  -moz-transform: scale(1, -1);
            -webkit-transform: scale(-1, 1);
            -o-transform: scale(-1, 1);
            -ms-transform: scale(-1, 1);
            transform: scale(-1, 1);
}

.clicked {
  transform: translate(-100%);
}

.bg-img {
  filter: invert(1) saturate(0);
}

body {
  width: 100vw;
  height: 100vh;
  overflow:hidden;
  background-color: var(--clr-background);
  transition: all 0.4s ease-in-out;
}

#wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

#bottom-nav ul {
  display: flex;
  flex-direction: row;
  gap: 35px;
  list-style-type: none;
}

#bottom-div {
  transition: all 0.4s ease-in-out;
  padding: 30px 0;
  width: 100%;
  display: flex;
  position: relative;
  z-index: 600;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#bottom-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center ;
  width: 100%;
  margin: 0 30px;
}

#bottom-nav > div {
  flex-grow: 1;
  flex-basis: 0px;
}

#bottom-nav ul a {
  color: var(--clr-light);
  font-size: 1.3em;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  padding: 10px 0;
}

#sub-text {
  color: var(--clr-faint);
  font-size: 1.2em;
}
#bottom-nav a:hover {
  cursor: pointer;
  text-decoration: underline;
}

#head {
  color: var(--clr-light);
  font-size: 1.4em;
}

#icon-btm {

  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 20px;
  transition: all 0.4s ease-in-out;
}

.nav-btnC {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}

#arrow-div {
  padding: 10px 10px;
}

.nav-svg {
  height: 60px;
  width: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 18px;
  border: 3px solid var(--clr-dark);
  cursor: pointer;
  background-color: var(--clr-background);
  transition: 0.4s all ease-in-out;
}

#hidden-text p {
  font-size: 1.5em;
  color: var(--clr-light);
}

.nav-svg img {
  transition: 0.4s all ease-in-out;
}

#up-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

#nav-items {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#btn-txt {
  transition: opacity 0.4s ease-in-out;
}


/* about me */

#about-me {

  width: 100vw;
  padding: 50px 100px;
  height: 100%;
  background-color: transparent;
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
}

#about-me > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 40px 30px;
  width: 100%;
  flex-grow: 1;
}

#aboutme-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  
}

#aboutme-left {
  display: flex;
  flex-direction: column;
  flex-basis: 0px;
  align-items: center;
  justify-content: center;
}

#aboutmetext {
  flex-grow: 3;
  flex-basis: 0px;
  transition: all 0.5s;
  padding: 0 50px;
}

#aboutmetext span {
  color: var(--clr-light);
  font-size: 0.83rem;
}

#aboutmetext h1 {
  color: var(--clr-light);
  font-size: 0.9rem;
  padding: 40px 0 20px 0 ;
  font-size: 0.9rem;
  font-weight: 200;
}

#aboutme-left span {
  color: grey;
  font-size: 0.9rem;
  padding: 25px 0 20px 0 ;
  font-size: 0.9rem;
  font-weight: 200;
}

#logo {
  margin-top: 25px;
  height: inherit;
  transition: 0.4s all;
}

#pp-btn img {
  height: 30px;
}

#pp-btn {
  background-color: rgb(152, 183, 248);
}

#bmc-btn {
  background-color: #FFDD00;
}

#support-bar {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.button {
  box-sizing: border-box;
  background-color: transparent;
  color: var(--clr-light);
  padding: 10px 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  font-size: 0.86rem;
}

.button:hover {
  cursor: pointer;
  border: 2px solid var(--clr-gradient);
}

.invert-logo-cl {
  filter: invert(1);
}

#logodiv {
  height: 400px;
  padding: 0 50px;
}

#back-button {
  margin-bottom: 80px;
}



.support-btn {

  border-radius: 12px;
  
  padding: 5px 13px 5px 10px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  transition: 0.4s all;
  box-sizing: border-box;
  border: 2px solid transparent;
}

.buyme-btn:hover {
  filter: brightness(86%);
  cursor: pointer;
  border: 2px solid rgb(36, 36, 36);
}

.support-btn img {
  height: 30px;
}

.support-btn span {
  color: rgb(36, 36, 36) !important;
  font-weight: 400;
  font-size: 23px;
}

#aboutmebar {
  display: flex;
  flex-direction: row;
  gap: 10px;
  
}

#aboutmebar p {
  color: var(--clr-light);
  font-size: 0.83rem;
}

.invert {
  filter: invert(1);
  background-color: #FFDD00;
}