html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  overflow-x: hidden;
}

/* Prevent overflow on small screens */
img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.collage-shape-1 {
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.collage-shape-2 {
  clip-path: ellipse(50% 40% at 50% 50%);
}

.scribble-border {
  border-style: solid;
  border-width: 4px;
  border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
}

.floating-item {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* Hero heading: consistent line spacing and green highlight */
.hero-highlight {
  padding: 0.01em 0.15em;
  border-bottom: 4px solid black;
  display: inline-block;
  line-height: 1.25;
  vertical-align: baseline;
}

@media (min-width: 640px) {
  .hero-highlight {
    padding: 0.01em 0.2em;
    border-bottom-width: 8px;
  }
}

/* Animated Neo Icon (hero) */
.neo-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.neo-icon-eyes {
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
