/* Inter Solutions DSO — insolutions.ba */

:root {
  --red: #d0211a;
  --ink: #1a1a1a;
  --muted: #9aa0a6;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;

  color: var(--ink);
  font: 400 clamp(1rem, 0.95rem + 0.25vw, 1.125rem)/1.6
        system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* svijetla pozadina sa blagim shadeom */
  background-color: #f6f7f9;
  background-image:
    radial-gradient(80rem 50rem at 50% -10%, #ffffff 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(45rem 30rem at 50% 115%, rgba(208, 33, 26, 0.06) 0%, rgba(208, 33, 26, 0) 70%),
    linear-gradient(180deg, #fbfbfc 0%, #eef0f3 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.card {
  width: 100%;
  max-width: 34rem;
  text-align: center;
}

/* --- Logo -------------------------------------------------------------- */

.logo {
  margin: 0 0 2.75rem;
  font-size: 0;          /* h1 nosi logo kao sliku */
  line-height: 0;
}

.logo img {
  display: block;
  width: 100%;
  max-width: 26rem;
  height: auto;
  margin: 0 auto;
}

/* --- Kontakt ----------------------------------------------------------- */

.contact { margin: 0; }

.contact__link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact__link:hover,
.contact__link:focus-visible { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 2px;
}
