: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: 1.60rem;
  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: 1rem;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

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

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

.toggle-icon {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10+ */
    user-select: none; /* estándar */
}

.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;
}

.special-link {
  color: #000; /* Color inicial del enlace */
  transition: color 0.3s ease; /* Transición para suavizar el cambio de color */
}

.special-link:hover {
  color: #555; /* Cambia el color del texto a un gris oscuro cuando el cursor pasa por encima */
  text-decoration: none; /* Elimina cualquier subrayado cuando el cursor pasa por encima */
}


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


