@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #ed6746;
  --pink: #e89588;
  --violet: #e19bc9;
  --dirty: #e4e2dd;
  --nude: #ebae85;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background-color: white;
  font-family: "Poppins", sans-serif;
  color: black;
  width: 100%;
  overflow-x: hidden;
}

.coverpage {
  position: relative;
  min-height: 85dvh;

  background-image: url(../images/hero.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
    width: 100%;

    h1 {
      font-size: 60px;
      font-family: "Montserrat", sans-serif;
      color: white;
      letter-spacing: 5px;

      animation: fadedown 1s ease;
    }

    nav ul {
      position: absolute;
      right: 30px;
      top: 25px;
      display: flex;
      gap: 70px;

      animation: fadedown 1s ease;
    }

    nav ul li {
      list-style: none;
    }

    nav ul li a {
      text-decoration: none;
      color: #ed6746;
      font-size: 17px;
      text-align: right;
      transition: all 0.3s ease;
    }

    nav ul li a:hover {
      color: var(--violet);
    }

    .line {
      position: absolute;
      left: 0;
      top: 70px;
      width: 33%;
      height: 4px;
      border-radius: 20px;
      background-color: white;

      animation: expand 2s ease;
    }
  }

  main {
    height: 70dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: white;
    text-shadow: 0 0 100px black;
  }

  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

@keyframes fadedown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);

    opacity: 1;
  }
}

@keyframes expand {
  0% {
    width: 0;
  }
  50% {
    width: 0;
  }
  100% {
    width: 33%;
  }
}

.getstarted {
  min-height: 80dvh;

  header {
    height: 15dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--orange);
  }

  .blocks {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 20px;
    gap: 200px;
  }

  .block {
    height: 300px;
    width: 300px;
    background-color: black;
    border-radius: 50px;
  }

  .instructions {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px;
    p {
      max-width: 300px;
      text-align: center;
    }

    .block {
      border: 4px solid var(--orange);
    }
  }

  .num1 {
    background-image: url(../images/laptop.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .num2 {
    background-image: url(../images/zoom.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.contents {
  position: relative;
  min-height: 70dvh;
  background-color: var(--orange);

  display: flex;
  flex-direction: column;
  gap: 2rem;

  h2 {
    font-size: 4rem;
    color: white;
    text-align: center;
    padding-top: 20px;
  }

  a {
    text-decoration: none;
    color: black;
  }

  .container {
    display: flex;
    justify-content: center;
    gap: 56px;

    .block {
      width: 15%;
      height: 300px;
      border-radius: 15px;
      background-color: white;
      border-top: 5px solid var(--dirty);

      padding: 20px;

      transition: 0.3s ease;

      h3 {
        color: var(--orange);
        font-size: 20px;
        text-align: center;
      }

      p {
        font-size: 15px;
        text-align: center;
        padding-top: 20px;
      }
    }

    .block:hover {
      transform: translateY(-20px);
      border-top-color: #eb47b1;
    }
  }
}

.intro {
  position: relative;
  min-height: 50dvh;

  display: flex;
  flex-direction: column;

  h2 {
    text-align: center;
    color: var(--orange);
    font-size: 60px;
    padding: 20px 0 40px;
  }

  p {
    font-size: 22px;
    text-align: center;
    margin: 0 auto;
    width: 90%;

    color: black;
  }
}

.divider {
  height: 5px;
  width: 90%;
  text-align: center;
  background-color: var(--violet);
  margin: 0 auto;

  border-radius: 100px;

  margin-top: 60px;
  display: none;
}

.page1 {
  min-height: 95dvh;
  background-color: #f7f8fa;

  h2 {
    text-align: center;
    font-size: 60px;
    padding: 20px 0;
    color: var(--orange);
  }

  .container {
    display: flex;
    justify-content: center;
    gap: 48px;

    .block {
      width: 20%;
      height: 68vh;
      background-color: white;
      border: 5px solid var(--violet);
      border-radius: 30px;
      padding: 20px;

      h3 {
        text-align: center;
        font-size: 1.5rem;
        color: var(--orange);
      }

      .hex {
        font-size: 1.3rem;
      }

      p {
        text-align: justify;
        padding-top: 20px;
        font-size: 0.95rem;
      }
    }
  }
}

.page2 {
  position: relative;
  min-height: 100dvh;
  background-color: var(--orange);

  h2 {
    font-size: 60px;
    text-align: center;
    color: white;
    padding: 20px 0 50px;
  }

  .container {
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 48px;

    .block {
      height: 170px;
      width: 500px;
      border: 5px solid white;
      border-radius: 20px;
      background-color: wheat;
      padding: 20px;
      display: flex;
      gap: 20px;
      align-items: center;

      .vertl {
        height: 100%;
        width: 3px;
        background-color: black;
      }

      h3 {
        text-align: center;
      }

      p {
        text-align: center;
      }
    }

    .right {
      padding-top: 320px;
      display: flex;
      flex-direction: column;
    }

    .vert {
      position: relative;
      height: 200dvh;
      width: 5px;
      background-color: var(--dirty);
      border-radius: 100px;
      /* border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; */
    }
    .left {
      display: flex;
      flex-direction: column;
      padding-top: 100px;

      .block {
        flex-direction: row-reverse;
      }
    }

    .right,
    .left {
      gap: 300px;
    }
  }
}

/* rfr */

.references {
  min-height: 100dvh;
}

.references {
  background: var(--dirty);
  padding: 3rem 2rem;
  border-top: 6px solid var(--orange);

  color: #222;
}

.references h2 {
  color: var(--orange);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.references .container {
  max-width: 900px;
  margin: 0 auto;
}

.ref-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: ref-counter;
}

.ref-list a {
  text-decoration: none;
  color: inherit;
}

.ref-list li {
  counter-increment: ref-counter;
  background: white;
  border-left: 5px solid var(--nude);
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.ref-list li::before {
  content: counter(ref-counter) ". ";
  font-weight: 600;
  color: var(--pink);
}

.ref-list a:hover li {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  border-left-color: var(--violet);
  background: #fff8f7;
}

.analysis {
  position: relative;
  min-height: 140dvh;

  background-color: var(--orange);

  display: flex;
  flex-direction: column;
  gap: 20px;

  overflow-y: visible;

  h2 {
    font-size: 3rem;
    text-align: center;
    color: var(--dirty);
    padding: 20px 0;
  }

  p {
    background-color: wheat;
    margin: 0 auto;

    text-align: center;
    padding: 20px;
    border: 4px solid white;
    border-radius: 20px;
    max-width: 70%;

    font-size: 1.2rem;

    transition: all 0.5s ease;
  }

  p:hover {
    border-color: #eb47b1;
    transform: translateY(-10px);
  }
}

footer {
  position: relative;
  background-color: #2f1b12;
  min-height: 40dvh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;

  .about,
  .contact {
    /* border: 3px solid white; */
    width: 45%;
  }
  .about {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    h2 {
      font-size: 3rem;
      padding-left: 20px;
    }
  }

  .vert {
    height: 35dvh;
    width: 3px;
    background-color: white;

    border-radius: 100px;
  }

  p {
    width: 400px;
    text-align: justify;
    font-size: 15px;
  }

  .contact {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
    gap: 30px;

    h2 {
      font-size: 3rem;
    }
    .icons {
      display: flex;
      gap: 50px;
      justify-content: center;

      img {
        height: 50px;
      }

      .gmail {
        position: relative;

        text-decoration: none;
        color: white;
        span {
          font-size: 12px;
          position: absolute;
          top: 15px;
          right: 50px;
          opacity: 0;
          transition: all 0.3s ease;
        }
      }

      a {
        transition: 0.3s ease;
      }

      .gmail:hover {
        filter: drop-shadow(0 0 20px red);
        scale: 1.2;
      }

      .fb:hover {
        filter: drop-shadow(0 0 20px blue);
        scale: 1.2;
      }

      .ig:hover {
        filter: drop-shadow(0 0 20px purple);
        scale: 1.2;
      }

      .gmail:hover span {
        opacity: 1;
        transform: translateX(-20px);
      }
    }
  }
}
