/* Grundinställningar */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Header och navigation */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 10px 20px;
  border-bottom: 2px solid #eaeaea;
}

header .logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav ul li a:hover,
nav ul li a.active {
  color: #0077cc;
}

/* Hero på startsidan */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero-text p {
  font-size: 1.2rem;
}

/* Huvudinnehåll */
main {
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 20px;
}

main h1, main h2 {
  color: #0077cc;
}

.inline-img {
  display: block;
  margin: 20px auto;
  max-width: 80%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: #ffffff;
  border-top: 2px solid #eaeaea;
  margin-top: 40px;
}

footer a {
  color: #0077cc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
