/* Import de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;700&family=Roboto:wght@200;300;400;500&display=swap');

/* landing.css: estilos de la página temporal */
:root {
  --bg-light: #ffffff;
  --text-light: #000000;
  --bg-dark: #000000;
  --text-dark: #ffffff;
  --accent: #FF6600;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: var(--bg-light);
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

[data-theme="dark"] body {
  background: var(--bg-dark);
  color: var(--text-dark);
}

.logo {
  max-width: 200px;
  margin-bottom: 2rem;
}

.landing-content p {
  margin: 0.5rem 0;
}

.oswald-light {
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.oswald-bold {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.contact {
  font-family: 'Roboto', sans-serif;
  font-weight: 100;
  font-size: 0.9rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 400;
}

a:hover {
  text-decoration: underline;
}

.email {
  color: var(--accent);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}

.email::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
  margin-top: 4px;
}

.email:hover {
  color: var(--accent);
}

.email:hover::after {
  width: 100%;
}

/* Enlaces minimalistas Founders & Investors */
.footer-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.minimal-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 200;
  font-size: 0.875rem;
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

[data-theme="dark"] .minimal-link {
  color: var(--text-dark);
}

.minimal-link:hover {
  opacity: 1;
  color: var(--accent);
  text-decoration: underline;
}
