@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --text: #ffffff;

  --text-strong: #ffffff;

  --line: rgba(255,255,255,.85);
  --line-soft: rgba(255,255,255,.35);
  --muted: rgba(255,255,255,.60);

  /* Proyect2 */
  --clinicaColorBlue: #16639b;


  /* layout */
  --left-right-margin: 240px;
  --left-right-internal-margin: 24px;
  --top-margin: 240px;
  --top-margin-mobile: 40vh;
  --top-internal-margin: 24px;
  --border-radius: 48px;
  --border: 2px;
  --border-radius-content: 0;
}


:root{
    --left-right-margin: 240px;
    --left-right-internal-margin: 24px;
    --top-margin: 240px;
    --top-margin-mobile: 40vh;
    --top-internal-margin: 24px;
    --border-radius: 48px;
    --border: 2px;
    --border-radius-content: 0;
}

/* LIGHT */
body.light-mode{
  --bg: #acaaaa;
  --text: #111111;
  --text-strong: #111111;

  --line: rgba(0,0,0,.85);
  --line-soft: rgba(0,0,0,.30);
  --muted: rgba(0,0,0,.60)
}

/* helpers */



/* global */
html, body{
  background-color: var(--bg);
  color: var(--text);
  transition: background-color .35s ease, color .35s ease;
}

body {
  background: #0e0e0e;
  color: #acaaaa;
  transition: background 0.35s ease, color 0.35s ease;
}

body.light-mode {
  background: #acaaaa;
  color: #111;
}

/* “detalles” globales */
.link, .about-key, .contact-key{
  color: var(--muted);
}
.link-line{
  background-color: var(--line);
}
.work-line line{
  stroke: var(--line-soft);
}
.icon-btn, .hamburger-btn, .lang-toggle, .logo a{
  color: var(--text-strong);
}
