/* KAMAT - strona w budowie */

:root {
  /* Dokladnie kolor tla wtopionego w logo, zeby prostokat logo nie odcinal sie od strony */
  --bg: #1a1918;
  --text: #f2f2f0;
  --muted: #9d9e9e;
  --accent: #d26f1f;
}

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

html, body { height: 100%; }

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem 1.5rem;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.logo {
  width: min(420px, 82vw);
  height: auto;
  margin-bottom: 2.5rem;
}

.headline {
  margin: 0;
  font-size: clamp(1.05rem, 3.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Akcent w kolorze trójkąta z logo */
.headline::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 1.25rem auto 0;
  background: var(--accent);
}

.lead {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.contact {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.contact li {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
}

.contact li + li { margin-top: 0.55rem; }

/* Imie ciszej niz numer. Stala szerokosc kolumny ustawia numery w jednej osi. */
.contact .name {
  color: var(--muted);
  min-width: 5.5em;
  text-align: right;
}

.contact a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer {
  margin-top: 3rem;
  color: #6d6c6b;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.footer p { margin: 0; }
