@import "./fonts/stylesheet.css";

:root {
  --primary: #5194bf;
  --secondary: #3b6ba2;
  --third: #268aa6;
  --fourth: #51bbbf;
  --fifth: #144f9f;
  --white: #f8f6e9;
  --light-violette: #e0defb;
  --violette: #8589c4;
  --violette-2: #d3b0dc;
  --light-rose: #fff0f6;
  --rose: #e9779f;
  --rose-2: #ff8ab6;
  --rose-3: #f77aa6;
  --light-green: #d0eeea;
  --green: #3ba296;
  --yellow: #ff8f00;
  --yellow-2: #fe9f26;
  --orange: #fe7c45;
  --blue: #327ab5;
}

.hello-notie {
  font-family: "Hello-Notie";
  font-weight: normal;
}
.bootleg-sans {
  font-family: "Bootleg Sans";
  font-weight: normal;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-third {
  color: var(--third);
}

.text-fourth {
  color: var(--fourth);
}

.text-fifth {
  color: var(--fifth);
}

.text-white {
  color: var(--white);
}

.text-rose {
  color: var(--rose);
}

.text-blue {
  color: var(--blue);
}

.text-rose-2 {
  color: var(--rose-2);
}

.text-violette {
  color: var(--violette);
}

.text-violette-2 {
  color: var(--violette-2);
}

.text-light-violette {
  color: var(--light-violette);
}

.text-light-rose {
  color: var(--light-rose);
}

.text-light-green {
  color: var(--light-green);
}

.text-green {
  color: var(--green);
}

.text-yellow {
  color: var(--yellow);
}

.text-yellow-2 {
  color: var(--yellow-2);
}

.text-orange {
  color: var(--orange);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-white {
  background-color: var(--white);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  min-width: 100dvw;
  background-image: url("../images/bg-blue.svg");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-color: var(--primary);
  overflow-x: hidden;
}

footer p {
  margin-block: 0.25rem;
  font-size: 12px;
}

.disabled-scrollbar::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

footer {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer h1 {
  margin-block: 0;
  font-size: 96px;
}

footer .contact {
  display: flex;
  gap: 4rem;
  margin-bottom: 1rem;
}

footer .contact > img {
  width: auto;
  height: 55px;
}

.char {
  display: inline-block;
}

/* Drawer style */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: var(--white);
  color: var(--primary);
  transition: left 0.3s ease-in-out;
  z-index: 9999;
  padding-top: 4rem;
  left: -110%;
  overflow-x: hidden;
}

.drawer .hamburger-menu {
  margin-left: 3rem;
  position: absolute;
  width: 4rem;
  height: 4rem;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
}

.drawer .hamburger-menu img {
  width: auto;
  height: 1.5rem;
}

.drawer .drawer-menu {
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.drawer .drawer-content > img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.drawer .drawer-menu a {
  display: block;
  margin: 1rem 0;
  font-size: 24px;
  text-align: center;
  color: var(--third);
  text-decoration: none;
  font-family: "Bootleg Sans", sans-serif;
  -webkit-text-stroke: 2px var(--white);
  font-size: 74px;
  transition: all 0.3s;
}

.drawer .drawer-menu .learn:hover {
  color: var(--white);
  -webkit-text-stroke: 2px var(--primary);
  transition: all 0.3s;
}

.drawer .drawer-menu .explore:hover {
  color: var(--white);
  -webkit-text-stroke: 2px var(--rose);
  transition: all 0.3s;
}

.drawer .drawer-menu .action:hover {
  color: var(--white);
  -webkit-text-stroke: 2px var(--violette);
  transition: all 0.3s;
}

.drawer .drawer-menu a:hover {
  color: var(--fourth);
  transition: all 0.3s;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 4rem;
  left: 0;
  width: 100%;
  z-index: 100;
}

header .logo {
  margin-right: 3rem;
}

header .logo img {
  height: 2.5rem;
  width: auto;
}

header .hamburger-menu {
  margin-left: 3rem;
  position: relative;
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

header .hamburger-menu img {
  width: auto;
  height: 1.5rem;
}

section {
  min-height: inherit;
}

.decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-x: auto;
}

.slider-item img {
  height: 90%;
}

@media screen and (max-width: 768px) {
  footer h1 {
    font-size: 64px;
    margin-block: 0.25rem;
  }

  footer .contact {
    gap: 1.5rem;
  }

  footer .contact > img {
    height: 17px;
  }
}

@media screen and (max-width: 520px) {
  .drawer .hamburger-menu {
    margin-left: 1rem;
    width: 3rem;
    height: 3rem;
    top: 2rem;
  }
  .drawer .drawer-content > img {
    width: unset;
    height: 40rem;
  }
  header {
    top: 2rem;
  }

  header .hamburger-menu {
    margin-left: 1rem;
    width: 3rem;
    height: 3rem;
  }

  header .hamburger-menu img {
    height: 1rem;
  }

  header .logo {
    margin-right: 1rem;
  }
}
