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

:root {
  --color-bg: #fff;
  --color-text: #0a0a0a;

  /* fonts */
  --font-accent: "Cosi Times";
  --font-sans-serif: "PP Neue Montreal";
  --font-serif: "PP Eiko";
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--color-bg);
  font-family: var(--font-sans-serif);
}

.container {
  width: 100%;
  height: 100%;
  /* min-height: 90vh; */
  padding: 2rem;
}

h1 {
  color: var(--color-text);
}

p,
span,
a {
  font-size: 1rem;
  line-height: 120%;
  color: var(--color-text);
}

span {
  font-family: var(--font-serif);
}

a {
  text-decoration: none;
  color: var(--color-text);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer p,
footer a {
  font-size: 1.25rem;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

footer#light p,
footer#light a {
  color: var(--color-bg);
}

p#address {
  font-family: var(--font-sans-serif);
}

footer a {
  font-family: var(--font-sans-serif);
}

@media (max-width: 900px) {
  footer {
    flex-direction: column;
  }
}

.menu-toggle {
  position: fixed;
  top: 0;
  right: 0;
  padding: 0 2rem;
  z-index: 10000;
  cursor: pointer;
}

.menu-toggle .toggle-icon span {
  color: #000;
  font-size: 6rem;
  font-family: var(--font-accent);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.menu-link {
  position: relative;
  width: 100%;
  text-align: center;
  left: 2rem;
  transition: all 0.3s;
  margin: 0;
}

.menu-link:hover {
  left: -1rem;
  transition: all 0.3s;
}

.menu-link a {
  font-family: var(--font-accent);
  font-size: 5rem;
  text-align: center;
  color: var(--color-bg);
  line-height: 0;
}

.menu-link span {
  font-family: var(--font-accent);
  font-size: 5rem;
  text-align: center;
  color: var(--color-bg);
  padding: 0 0.5rem;
  opacity: 0;
  transition: all 0.3s;
}

.menu-link:hover span {
  opacity: 1;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .menu-link a {
    font-size: 3.5rem;
  }
}
