@import url(/css/fonts.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Satoshi", sans-serif;
  transition: 2s cubic-bezier(0.22, 0.78, 0.45, 1.02);
}

::selection {
  background: #ff3f1e;
  color: black;
}

.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
}

.gebuk {
  font-family: "Gebuk", sans-serif;
}

a {
  transition: 0.8s cubic-bezier(0.22, 0.78, 0.45, 1.02);
  text-decoration: none;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

img {
  width: 100%;
  height: auto;
  pointer-events: none;
  object-fit: cover;
  transition: 1s cubic-bezier(0.22, 0.78, 0.45, 1.02);
}

span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.8s cubic-bezier(0.22, 0.78, 0.45, 1.02);
}

input,
select,
textarea,
button {
  transition: 0.8s cubic-bezier(0.22, 0.78, 0.45, 1.02);
  background: transparent;
  font-size: 1rem;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

li,
ul {
  list-style: none;
}

input:focus,
input:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
button:focus,
button:active {
  outline: none;
  border: none;
  background: transparent;
}

/* REUSABLE CSS */
/* Base skeleton box */
.skeleton-box {
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.05) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0.4rem;
}

/* Skeleton animation */
@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Image placeholder */
.image-placeholder {
  width: 100%;
  height: 352.5px;
  border-radius: 2rem;
}

/* Avatar and name */
.avatar-placeholder {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 1rem;
}

.name-placeholder {
  width: 6rem;
  height: 1.2rem;
  border-radius: 0.5rem;
}

/* Metric icons */
.small-icon-placeholder {
  width: 1.4rem;
  height: 1rem;
  border-radius: 0.3rem;
}

/* Text lines */
.text-line {
  height: 1rem;
  width: 100%;
}

.text-line.short {
  width: 60%;
}

/* Tags */
.tag-placeholder {
  height: 1rem;
  width: 3rem;
  border-radius: 0.3rem;
}

.tag-placeholder.small {
  width: 2rem;
}

.project-card.skeleton * {
  pointer-events: none;
  user-select: none;
}

/* PAGINATION */
.pagination {
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  padding: 10px 20px;
  border-radius: 20px;
  width: fit-content;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #555;
    transition: background-color 0.3s ease;

    &:hover {
      background: #888;
      cursor: pointer;
    }
  }

  .dot.active {
    background-color: #fff;
  }
}




.circle {
  width: 1.4rem;
  height: 1.4rem;
  position: relative;

  .fancy-box {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 2px 0px var(--accent-color);
    border-radius: 15px;
    background: conic-gradient(
      from 0deg at 50% 50%,
      rgba(251, 250, 252, 0) 288deg,
      var(--accent-color) 352.8deg
    );
    animation: spin 3s linear infinite;
    will-change: transform;
    opacity: 1;
    box-sizing: border-box;
    overflow: hidden;
  }

  .fancy-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border: inherit;
    border-radius: inherit;
    pointer-events: none;
  }
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}