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

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

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

.title-font {
  font-family: "Poppins", cursive;
}

.crayon-texture {
  position: relative;
  background: linear-gradient(135deg, #2d1b14 0%, #1a1a1a 100%);
}

.crayon-texture::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 140, 0, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 140, 0, 0.08) 1px,
      transparent 1px
    ),
    radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.15) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px, 40px 40px;
  pointer-events: none;
}

.crayon-orange {
  background: linear-gradient(135deg, #e7bd60 0%, #bb7e3d 100%);
}

.crayon-orange:hover {
  background: linear-gradient(135deg, #e7bd60 0%, #bb7e3d 100%);
}

.link-button {
  position: relative;
  overflow: hidden;
}

.link-button svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.link-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-50%);
  transition: width 0.6s ease;
}
.link-button:hover::before {
  width: 200%;
}

.link-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 16px #d4a251, inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
