/* Font: Havelock Titling */
@font-face {
  font-family: "Havelock Titling";
  src: url("../assets/fonts/havelock-titling/FontRegular.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Havelock Titling";
  src: url("../assets/fonts/havelock-titling/FontBold.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Havelock Titling";
  src: url("../assets/fonts/havelock-titling/FontBold.woff")
    format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Havelock Titling";
  src: url("../assets/fonts/havelock-titling/FontLight.woff")
    format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Havelock Titling";
  src: url("../assets/fonts/havelock-titling/FontRegular.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
}

/* Font: Space Grotesk */
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk/SpaceGrotesk-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk/SpaceGrotesk-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk/SpaceGrotesk-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk/SpaceGrotesk-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk/SpaceGrotesk-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Font: Kode Mono */
@font-face {
  font-family: "Kode Mono";
  src: url("../assets/fonts/kode-mono/KodeMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Kode Mono";
  src: url("../assets/fonts/kode-mono/KodeMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Kode Mono";
  src: url("../assets/fonts/kode-mono/KodeMono-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Kode Mono";
  src: url("../assets/fonts/kode-mono/KodeMono-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #000;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: "Havelock Titling", sans-serif;
}

a {
  text-decoration: none;
}

main {
  min-height: 100vh;
}

/* Global responsive helpers */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    line-height: 1.2;
  }

  h2 {
    line-height: 1.3;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 13px;
  }
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 10000;
  display: inline-flex;
  padding: 1.5rem;
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.3);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  color: white;
}
.scroll-indicator:hover {
  opacity: 1;
}
.scroll-indicator img {
  animation: scroll-bounce 1.2s infinite;
}
@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(6px) rotate(90deg);
  }
}

@media screen and (max-width: 768px) {
  .scroll-indicator img {
    animation-duration: 1.2s !important;
  }
}
