@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  cursor: none;
  --bg: hsl(210, 100%, 12%);
  --color-1: hsl(197, 100%, 75%);
  --color-hover: hsl(146, 100%, 50%);
  --main-text: hsl(197, 100%, 75%);
  --nav: hsl(197, 100%, 75%);
  --nav-hover: #f3c892;
  /* --bg: #1d2927;
  --color-1: #f3c892;
  --nav: #e7e2db;
  --nav-hover: #f3c892; */
}

::selection {
  background-color: rgba(0, 0, 0, 0.8);
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

main {
  position: relative;
  background-color: var(--bg);
  width: 100%;
  min-height: 750px;
  height: 100vh;
  overflow: hidden;
  padding: 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 110px;
  grid-column-start: 2;
}

.hide {
  opacity: 1;
}

nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
}

nav ul {
  display: flex;
  justify-self: flex-end;
}

.nav-link a {
  display: inline-block;
  padding: 1rem 2rem;
  color: var(--nav);
  font-weight: 200;
  letter-spacing: 1px;
  transition: 0.3s;
}

.nav-link a i {
  transform: translateY(2px);
  margin-left: 0.2rem;
  font-size: 1.1rem;
}

.nav-link a:hover {
  color: var(--color-hover);
}

.image-wrap {
  position: absolute;
  width: 85%;
  max-width: 1000px;
  height: 0px;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  background-image: url("./img/image.webp");
  background-size: 150%;
  background-position: 50% 55%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.image-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(128, 219, 255, 0.25);
}

.big-name {
  position: relative;
  z-index: 1;
  color: var(--main-text);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 500;
  text-align: center;
  line-height: 1;
  width: fit-content;
  pointer-events: none;

  text-shadow: -6px -6px var(--bg), -5px -5px var(--bg), -4px -4px var(--bg),
    -3px -3px var(--bg), -2px -2px var(--bg), -1px -1px var(--bg),
    1px 1px var(--bg), 2px 2px var(--bg), 3px 3px var(--bg), 4px 4px var(--bg),
    5px 5px var(--bg), 6px 6px var(--bg), 7px 7px var(--bg);
  width: 100%;

  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0px -6px 0 var(--bg), 0px -6px 0 var(--bg), 0px 6px 0 var(--bg),
    0px 6px 0 var(--bg), -6px 0px 0 var(--bg), 6px 0px 0 var(--bg), -6px 0px 0 var(--bg),
    6px 0px 0 var(--bg), -6px -6px 0 var(--bg), 6px -6px 0 var(--bg),
    -6px 6px 0 var(--bg), 6px 6px 0 var(--bg), -6px 18px 0 var(--bg),
    0px 18px 0 var(--bg), 6px 18px 0 var(--bg); */
}

.big-name span {
  pointer-events: auto;
}

.bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.bottom-section p {
  color: var(--main-text);
  font-weight: 300;
  display: flex;
  align-items: center;
}

.bottom-section p i {
  font-size: 1.2rem;
  color: var(--color-1);
  margin-right: 1rem;
}

.social-media {
  display: flex;
}

.social-media a {
  margin-left: 0.8rem;
  font-size: 1.2rem;
  color: var(--color-1);
  transition: 0.3s;
}

.social-media a:hover {
  color: var(--color-hover);
}

.scroll {
  position: absolute;
  color: var(--color-1);
  font-weight: 300;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
  height: 50px;
}

.line {
  position: absolute;
  width: 1px;
  height: 100px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-image: linear-gradient(to top, var(--main-text), var(--bg));
}

.cursor-circle {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transform: translate(calc(-50%), calc(-50%));
  background-color: transparent;
  border: 0.1px solid rgba(186, 196, 191, 0.5);
  z-index: 10;
  opacity: 0;
  transition-duration: 0.2s, 0.3s, 0.3s, 0.3s, 0.08s;
  transition-property: opacity, width, height, background-color, transform;
  pointer-events: none;
}

.cursor-point {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 0px;
  left: 0px;
  transform: translate(calc(-50%), calc(-50%));
  background-color: #bac4bf;
  z-index: 10;
  opacity: 0;
  transition: 0.2s opacity;
  pointer-events: none;
}

.cursor-circle.biggerCursor {
  width: 70px;
  height: 70px;
  background-color: rgba(105, 105, 105, 0.2);
}
