@import url("https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=Ubuntu&display=swap");

:root {
  --primary-color: #5352ed;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Ubuntu", sans-serif;
  overflow-x: hidden;
}

.navbar {
  position: sticky;
  display: flex;
  justify-content: space-between;
  /* height: 60px; */
  padding: 10px 25px;
  background-color: #fffc !important;
  border-bottom: 1px solid rgb(229 231 235);
}

.navbar .navLinks {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.navbar .nav-item a {
  font-family: "Rubik Mono One";
  color: #353b48;
  font-size: 12px;
  font-weight: 200;
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s all;
}

.navbar .nav-item a.active {
  color: var(--primary-color);
}

.navbar .nav-item a:hover:not(.active) {
  color: var(--primary-color);
  opacity: 0.7;
}

.navbar .nav-item a.customNavLink {
  background-color: #5352ed26;
  color: var(--primary-color);
  padding: 7px 15px;
  border-radius: 5px;
}

.navbar .navbar-right-section {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.navbar .navbar-right-section #dowmloadAppButton .customNavLink {
  background-color: #5352ed;
  color: #fff;
}

.heroSection {
  width: 100%;
  height: calc(100vh - 10vh);
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: 0.5s all ease-in-out;
}

.heroSectionChild {
  display: flex;
  flex: 1;
}

.heroSection .leftSection {
  justify-content: center;
  align-items: center;
  zoom: 120%;
}

.heroSection .heroParagraph b {
  font-family: "Rubik Mono One";
  font-size: 32px;
  color: var(--primary-color);
}

.heroSection .leftSection .heroSectionCards {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  margin: 30px auto;
  font-family: "Ubuntu";
}

.heroSection .leftSection .heroCard {
  display: flex;
  flex: 1;
  align-content: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 10px;
  width: max-content;
  padding: 15px 25px;
  padding-top: 18px;
  background-color: #5352ed0d;
  border: 1px solid transparent;
  font-family: "Ubuntu";
  border-radius: 10px;
  pointer-events: none;
  transition: 0.4s all;
}

.heroSection .leftSection .heroCard.hovered {
  background-color: white;
  border: 1px solid #0f0f3b23;
  box-shadow: -10px 10px 0px 0px rgba(0, 0, 0, 0.05);
}

.heroSection .heroCard .heroCardText h3 {
  font-weight: 900;
  font-size: 32px;
  color: #717171;
}

.heroSection .heroCard .heroCardText p {
  font-weight: 600;
  color: #898989;
}

.downloadButtonsContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5352ed0d;
  background: linear-gradient(
    90deg,
    rgba(83, 82, 237, 0.04945728291316531) 0%,
    rgba(9, 9, 121, 0) 50%,
    rgba(83, 82, 237, 0.05) 100%
  );
  border-radius: 5px;
  transition: 0.5s all ease-in-out;
}

#downloadMiddleIcon {
  transition: 0.3s all ease-in-out;
}

.heroSection .heroParagraph .downloadOsButton {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  margin: 10px;
  font-weight: 600;
  color: #898989;
  border: 1px solid transparent;
  /* padding-bottom: 3px; */
  /* border-bottom: 1px dotted; */
  float: inline-end;
  cursor: pointer;
  transition: 0.5s all;
  overflow: hidden;
}

.heroSection .heroParagraph .downloadOsButton .backdrop {
  width: 100%;
  height: 100%;
  background-color: #5c5cb31f;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: 0.5s all;
}

.heroSection .heroParagraph .downloadOsButton#downloadPi .backdrop {
  transform: translateX(100%);
}

.heroSection .heroParagraph .downloadOsButton#downloadComputer .backdrop {
  transform: translateX(-100%);
}

.heroSection .heroParagraph .downloadOsButton#downloadPi:hover .backdrop,
.heroSection .heroParagraph .downloadOsButton#downloadComputer:hover .backdrop {
  transform: translateX(0%);
}

.downloadOsButton:hover {
  /* background: #fff; */
  color: #7c7ce9 !important;
  box-shadow: 0px 0px 66px -5px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  border: 1px solid #7c7ce9 !important;
}

/* .heroSection .heroParagraph .downloadOsButton:hover:after {
  content: "  ⇥";
} */

.heroSection .glassTexture {
  position: absolute;
  bottom: 0;
  left: 30%;
  filter: blur(100px);
  animation: animateGlassTexture 15s infinite alternate;
}

@keyframes animateGlassTexture {
  from {
    left: 100%;
    filter: blur(100px) hue-rotate(0deg);
  }
  to {
    left: -20%;
    filter: blur(100px) hue-rotate(360deg);
  }
}

.heroSection .rightSection {
  align-self: stretch;
  align-items: center;
  justify-content: center;
}

.heroSection .rightSection .rightSectionImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Tuto Section */

.tutoSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  padding: 100px 0;
  background: var(--primary-color);
}

.tutoSection .tutoSectionTitle {
  font-family: "Rubik Mono One", sans-serif;
  font-size: 40px;
  color: #fff;
  text-align: center;
}

.tutoSection .videoPlayer {
  width: 60%;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  border: 5px solid white;
}

/* WhatsApp Button */

.whatsAppIcon {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 180px;
  transition: .5s all;
}

.whatsAppIcon:hover {
  opacity: 0.8;
  transform: scale(1.1);
  cursor: pointer;
}

/* Footer */

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  background-color: #4342bd;
  color: white;
  font-weight: bold;
}

/* Bootstrap Edits */

.navbar .nav-item {
  list-style-type: none;
}

.navbar-collapse {
  flex-grow: 0;
}

/* Responsive */

@media only screen and (max-width: 600px) {
  .navbar > .container-fluid {
    gap: 10px;
  }

.navbar .navbar-right-section {
  flex-direction: column;
  width: 100%;
}

  #preRegistrationButton, #dowmloadAppButton {
    width: 100%;
    text-align: center;
  }

  .heroSectionChild.leftSection {
    margin-top: 90px;
    padding: 20px;
    zoom: 100%;
  }

  .heroSection .heroCard .heroCardText {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: flex-end;
  }


.tutoSection {
  display: flex;
  align-items: center;
  height: 70vh;
}

.tutoSection .videoPlayer {
  width: 90%;
}

}
