@import url('https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&family=Geist:wght@100..900&display=swap');


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-black);
  background-color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/* Typography */
.text-regular {
  font-weight: var(--font-weight-regular);
}

.text-medium {
  font-weight: var(--font-weight-medium);
}

.text-bold {
  font-weight: var(--font-weight-bold);
}

.text-sm {
  font-size: var(--font-size-base);
}

.text-md {
  font-size: var(--font-size-medium);
}

.text-lg {
  font-size: var(--font-size-large);
}

.text-italic {
  font-style: italic;
}

/* Main Container - Curtain Effect */
.page-wrapper {
  position: relative;
  min-height: 100vh;
}

.page-wrapper::after {
  content: '';
  display: block;
  height: 400px;
}

nav.navigation {
  background-color: var(--color-white);
  z-index: 10;
}

main {
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
}
