/* loak.css — custom styles only (Tailwind still via CDN) */
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@600&display=swap');

body {
  font-family: 'Doto', sans-serif;
}
.logo-blend {
  mix-blend-mode: difference;
}
#pageTransition {
  transition: all 0.7s ease;
}


.nav-link {
  color: grey; /* Base color, blend mode will handle inversion */
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-link:hover {
  color: red;
}
.video-container {
    width: 100%;
    max-width: 100vw;
    position: relative;
    overflow: hidden;

}

.body-text {
  font-family: 'Tahoma', sans-serif;
}