:root {
  --color-bg: #ffffff;
  --color-text: #0f1235;
  --color-accent: #0f1235;
  --color-muted: #666666;
  --color-border: #e6e6e6;
}
#navbar__logo img {
  display: block;
}

.navbar.logo {
  display: flex;
  align-items: center;
  height: 40px;
  width:40px;
  align-items: center;
  align-self: center;
  align-content: center;
}

     /* behåller proportioner *
/* Grund */
body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--color-border);
}

.site-header img {
  height: 120px;
}

.site-header nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

/* Innehåll */
main {
  max-width: 720px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

h1 {
  font-family: 'Playfair Display', serif;
}

/* Footer */
footer {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ===== Kontaktformulär ===== */

.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  text-align: left; /* bryter arv från main */
}

/* Wrapper för varje fält */
.form-field {
  display: flex;
  flex-direction: column; /* stapla label + input */
  margin-bottom: 1.2rem;
}

/* Labels */
.form-field label {
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-align: left;
}

/* Inputs & textarea */
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
/* ===== Primär knapp ===== */

.btn {
  display: inline-block;
  background-color: #030040;
  color: #ffffff;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Hover */
.btn:hover {
  background-color: #050070;
  transform: translateY(-1px);
}

/* Active */
.btn:active {
  transform: translateY(0);
}

/* Focus (tillgänglighet) */
.btn:focus-visible {
  outline: 3px solid rgba(3, 0, 64, 0.35);
  outline-offset: 2px;
}
