/* Example CSS file */ 
@import url('href="https://fonts.googleapis.com/css2?family=Fira+Sans: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=Lora:ital,wght@0,400..700;1,400..700&display=swap"');

* {
  box-sizing: border-box;
}

:root {
/* Podstawa i tło */
  --bg-page: #fdfdfb;          /* Jasne tło (Twój background) */
  --color-ink: #0a1128;        /* NOWY: Bardzo ciemny granat do tekstów */
  
  /* Kolory marki */
  --brand-deep: #001f3f;       /* Główny granat (Navy) */
  --brand-vivid: #f9a03f;      /* Żywy pomarańcz (Twoja "musztarda") */
  --brand-subtle: #4682b4;     /* Stalowy błękit (Akcent) */
  
  /* Dodatki */
  --text-muted: #696969;       /* Szary (do mniej ważnych tekstów) */

}

.fontNav {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.35em;
}

.darkIcon {
  color: var(--color-ink);
  width: 100px;
  height: 100px;
}
