@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&display=swap');

: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;
}

* {
  font-family: 'Asap', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 25px;
}

.darkMode {
  --clr-light: rgb(145, 145, 145);
  --clr-dark: black;
  --clr-hover: rgb(207, 207, 207);
  --clr-gradient:rgba(148, 148, 148, 0.7);
  --clr-background: black;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}

body {
  height: 100vh;
  width: 100vw;
  background-color: black;
  
  transition: all 0.4s ease-in-out;
  overflow:hidden;
}

#border {
  height: 100%;
  width: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  flex-direction: row;
  height: 80px;
  margin: 0 90px;
  padding: 30px 0;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#icon-bar {
  display: flex;
  flex-direction: row;
  flex: 1 1 0px;
  padding: 30px 0;
  align-items: center;
  justify-content: flex-end;
}

#nav-bar {
  display: flex;
  list-style: none;
  gap: 60px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1 1 0px;
}

#lang-bar {
  flex: 1 1 0px;
  z-index: 300;
}

#lang-bar p {
  color: rgb(129, 129, 129);
  font-size: 0.9rem;
  font-weight: 200;
  transition: all 0.3s;
}

#lang-bar span {
  font-size: 0.7rem;
  display: inline-block;
  transition: all 0.3s;
}

#lang-bar p span:hover {
  font-weight: 600;
  cursor: pointer;
}

#lang-bar-side {
  flex: 1 1 0px;
  z-index: 300;
}

#lang-bar-side p {
  color: rgb(129, 129, 129);
  font-size: 0.9rem;
  font-weight: 200;
  transition: all 0.3s;
}

#lang-bar-side span {
  font-size: 0.7rem;
  display: inline-block;
  transition: all 0.3s;
}

#lang-bar-side p span:hover {
  font-weight: 600;
  cursor: pointer;
}




#menu-icon {
  display: none;
  flex: 1 1 0px;
}

#menu-icon span {
  top: 2px;
  position: relative;
}

.nav-icon {
  color: rgb(129, 129, 129);
  font-size: 0.9rem;
  padding: 0 7px;
  user-select: none;
}

#download-icon {
  font-size: 0.89rem;
  font-variation-settings:
  'FILL' 1,
  'wght' 800,
  'GRAD' 200,
  'opsz' 48
}

#dot-icon {
  color: transparent;
  font-size: 0.9rem;
  padding: 0 7px;
  transition: all 0.2s ease-in-out;
}

#pmode {
  position: relative;
  width: 20px;
  height: 25px;
  margin: 0 9px;
  box-sizing: content-box;
}

#pmode span {
    font-size: 1.01rem;
    transition: all 0.3s;
    opacity: 1;
    position: absolute;
    padding: 0;
    top: 0;
    left: 0; 
}
#dmode {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 7px;
  box-sizing: content-box;
  z-index: 300;
}

.modeIcon {
  transition: all 0.5s;
  position: absolute;
  z-index: 100;
}

#dmode span {
  font-size: 0.8rem;
  transition: all 0.3s;
  opacity: 1;
  position: absolute;
  padding: 0;
  top: 0;
  left: 0; 
}
.nav-icon:hover {
  cursor: pointer;
  color: rgb(183, 183, 183);
}

li, a {
  text-decoration: none;
  white-space: nowrap
}

#nav-bar span{
  color: rgb(129, 129, 129);
  font-size: 0.9rem;
  font-weight: 200;
  transition: all 0.3s;
}

.transition--hover a {
  transition: all 0.3s;
}

#nav-bar span:hover {
  cursor: pointer;
  color: rgb(183, 183, 183);
}

#main {
  background-color: white;
  flex-grow: 1;
  position: relative;
  margin: 0 80px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  transition: all 0.3s;
  justify-content: center;
  overflow: hidden;
}

#carousel {
  width: calc(100% * 3);
  /*border: 1px solid blue;*/
  display: flex;
  height: 100%;
  flex-direction: row;
  justify-content: center;
 
  transform: translate(-33.333%);
}

#slider {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: flex-end;
  transition: all 0.5s ease-in-out;
}

.card {
  height: 100%;
  display: flex;
  flex-grow: 100;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  /*border: 1px solid green;*/
}


#subtitle {
  flex-direction: row;
  padding: 30px 0;
  
  display: flex;
  align-items: center;
  transition: all 0.5s ease-in-out;
  justify-content: center;
}

#subtitle p, #subtitle span {
  color: rgb(163, 163, 163);
  font-size: 0.75rem;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.controls .arrow {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  cursor: pointer;
  height: 100%;
  width: 400px;
  transition: opacity 0.4s ease-in-out ;
  border: 4px solid transparent;
  opacity: 0;
}


.arrow.left {
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding-left: 0;
  align-items: center; 
  padding-left: 20px;
}

.arrow.right {
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: end;
  padding-left: 0;
  align-items: center; 
  padding-right: 20px;
}

.arrow.left:hover {
  border-image: linear-gradient(90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 90%) 30;
  border-width: 4px;
  border-style: solid;
  border-radius: 10px;
  letter-spacing: 4px;
  opacity: 1; 
}

.arrow.right:hover {
  border-image: linear-gradient(-90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 90%) 30;
  border-width: 4px;
  border-style: solid;
  border-radius: 10px;
  letter-spacing: 4px;
  opacity: 1; 
}

.arrow:hover p {
  opacity: 1;
}

.arrow p {
  letter-spacing: 2px;
  font-size: 25px;
  color: var(--clr-gradient);
  font-weight: 200;
  
  transition: all 0.4s ;
}

.arrow.right {
  right: 0;
}

.invisible {
  visibility: hidden;
}

.img-wrapper {
  width: 450px;
  position: relative;
}

.img-wrapper:hover{
  cursor: pointer;
}

.img-wrapper img {
  width: inherit;
  display: block;
}

#imgm1 {
  width: 0 !important;
}

.shadow--inset {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  
  width: 100%;
  box-shadow: 0px 0px 11px -5px rgba(0,0,0,0.55) inset;
-webkit-box-shadow: 0px 0px 11px -5px rgba(0,0,0,0.55) inset;
-moz-box-shadow: 0px 0px 11px -5px rgba(0,0,0,0.55) inset;
}

#about-me {
  display: none;

  width: 100vw;
  padding: 50px 100px;
  height: 0px;
  background-color: var(--clr-background);
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  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;
  opacity: 0;
  transition: all 0.5s;
  padding: 0 50px;
}

#aboutmetext span {
  color: var(--clr-light);
  font-size: 0.83rem;
}

#aboutmetext h1 {
  color: var(--clr-hover);
  font-size: 0.9rem;
  padding: 40px 0 20px 0 ;
  font-size: 0.9rem;
  font-weight: 200;
}

#aboutme-left span {
  color: var(--clr-hover);
  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;
  opacity: 0;
}

#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;
}

.invert-logo-cl {
  filter: invert(100%);
}

#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;
}

.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);
}

.opacity--zero {
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

#speed-change {
  display: flex;
  flex-direction: row;

}

#speed-list {
  display: flex;
  list-style-type: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 0;
  opacity: 0;
  transition: all 0.3s;
}

#speed-list li {
  margin: 0 8px 0 2px;
  display: flex;
  align-items: center;
  position: relative;
  height: 25px;
  width: 25px;
}

#speed-list label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgb(145, 145, 145);
  cursor: pointer;
  z-index: 90;
}

#speed-list label:hover {
  cursor: pointer;
  color: rgb(114, 114, 114);
}

#speed-list label,
#speed-list input {
  display: block;
  position: absolute;
  top: 3.1px;
  left: 0;
  right: 0;
  bottom: 0;
}

#speed-list input[type="radio"] {
  opacity: 0.01;
  z-index: 70;
}

#speed-list input[type="radio"]:checked+label,
.Checked+label {
  color: rgb(85, 85, 85);
}

#text-div {
  position: relative;
}

#nothing {
  position: absolute;
  top: 0;
  color: var(--clr-light);
  font-weight: 200;
  transition: all 0.3s ease-in-out;
}

#everything {
  color: var(--clr-light);
  font-weight: 200;
  transition: all 0.3s ease-in-out;
}

.center {
  align-items: center !important;
}


#sidebar {
  z-index: 500;
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background-color: black;
  padding: 50px 0;
  overflow: hidden;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: 0.4s all;
}

#sidebar ul li {
  color: rgb(129, 129, 129);
  font-size: 0.9rem;
  font-weight: 200;
  transition: all 0.3s;
}

#sidebar a {
  text-decoration: none;
  color: rgb(129, 129, 129);
}

#sidebar ul {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

#sidebar img {
  height: 100px;
  filter: invert(100%);
}

#sidebarCl {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background-color: transparent;
  z-index: 200;
  height: 100%;
}

/* Media queries for responsive design */
@media (min-width: 50px) and (max-width: 350px) {
#aboutme-text {
  width: 200px !important;
}


}

@media (min-width: 100px) and (max-width: 980px) {
  /* most phones including iPhone, Pixel, Samsung */

   #nav-bar{
    display: none;
  }

  #lang-bar, #lang-bar * {
    display: none;
  }


  #aboutme-left {
    margin-bottom: 30px;
  }

  #aboutmetext h1 {
    font-size: 0.8rem;
  }

  #aboutmetext p {
    font-size: 0.79rem;
  }

  #lang-bar {
    justify-content: center;
    display: flex;
  }
  header {
    background-color: transparent;
    margin: 0 15px;
    padding: 0;
  }
  
  #main {
    margin: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0px;
  }

  html {
    width: 100vw;
    height: 100vh;

  }

  #subtitle {
    height: 50px;
    padding: 10px 10px;
  }

  .controls .arrow {
    width: 130px;
  }

  .arrow.left:hover {
    border-image: linear-gradient(90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 70%) 30;
  }
  
  .arrow.right:hover {
    border-image: linear-gradient(-90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 70%) 30;
  }

  .img-wrapper {
    width: 90vw;
  }

  #icon-bar {
    position: relative;
    padding: 10px;
  }

  #menu-icon {
    display: block;
  }

  #about-me {
    padding: 50px 30px 0 30px;
    overflow-y: scroll;
    justify-content: flex-start;
  }

  #aboutmetext {

    padding: 0 10px;
  }

  #about-me > div{
    flex-direction: column;
  }

  #logodiv {
    height: 160px;
  }

  #back-button {
    margin: 80px 0 40px 0;
  }

  
}

@media (min-width: 480px) and (max-width: 768px) {
   /*Phablets and Tablets*/
   .img-wrapper {
    width: 480px;
   }

   .controls .arrow {
    width: 130px;
  }

  .arrow.left:hover {
    border-image: linear-gradient(90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 70%) 30;
  }
  
  .arrow.right:hover {
    border-image: linear-gradient(-90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 70%) 30;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  /* small desktop and large tablets*/
  .img-wrapper {
    width: 600px;
   }

   .controls .arrow {
    width: 130px;
  }

  .arrow.left:hover {
    border-image: linear-gradient(90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 70%) 30;
  }
  
  .arrow.right:hover {
    border-image: linear-gradient(-90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 70%) 30;
  }
}

@media (min-width: 980px) and (max-width: 1600px) {
  /* medium screen desktops (up to 24") and latops (13")*/
  #nav-bar {
    gap: 30px;
  }

  .img-wrapper {
    width: 350px;
   }

   .controls .arrow {
    width: 130px;
  }

  .arrow.left:hover {
    border-image: linear-gradient(90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 70%) 30;
  }
  
  .arrow.right:hover {
    border-image: linear-gradient(-90deg, var(--clr-gradient) 0%, rgba(173,173,173,0) 70%) 30;
  }
  
  #about-me {
    padding: 0 0 0 0;
  }

  #logodiv{
    height: 250px;
    padding: 0 50px;
  }

  #logo {
    margin-top: 25px;
    height: 100%;
    transition: 0.4s all;
    opacity: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  /* Large screen desktop (27") and laptops (15+")*/
  .img-wrapper {
    width: 500px;
   }
}

@media (min-width: 1600px) {
  /* very large screen, 4k and tv*/
  .img-wrapper {
    width: 520px;
   }
}
