* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #F4F1EE;
  color: #333;
  line-height: 1.6;
  padding-bottom: 80px;
}

/* === Typsnitt för rubriker === */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #4B6B4F;
  margin-bottom: 1rem;
}

/* === Navigationsmeny === */
header {
  background-color:  #4B6B4F;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav h1 {
  font-size: 1.5rem;
  color: white;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

nav a:hover {
  background-color: #3a563f;
}

/* === Innehållssektioner === */
.innehåll, .info {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.content-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 1rem auto;
  border-radius: 10px;
}

/* === Footer === */
footer {
  background-color:  #4B6B4F;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
  
/* === Fördelar med området === */
.fördelar {
  background-color: #E6E1DC;
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 10px;
}

.fördelar ul {
  list-style: disc inside;
  padding-left: 1rem;
}

/* === Galleri === */
.galleri {
  padding: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  text-align: center;
}

.bilder {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.bilder img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* === Citatsektion === */
.citat {
  background-color: #f9f7f5;
  border-left: 4px solid #4B6B4F;
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 700px;
  font-style: italic;
  color: #555;
}

.citat cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: bold;
  color: #4B6B4F;
}

/* === Kontakt-teaser === */
.kontakt {
  background-color: #DAD5CF;
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
  border-radius: 10px;
}

.kontakt a {
  color: #4B6B4F;
  text-decoration: underline;
}

header {
  background-color: #4B6B4F;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

footer {
  background-color: #4B6B4F;
  color: white;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#tillToppen {
  position: fixed;
  bottom: 5.5rem; /* Lite ovanför footern */
  right: 2rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  background-color: #4B6B4F;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

#tillToppen:hover {
  background-color: #3a563f;
}
