
/* Baggrund og tekst */
body {
  background-color: #f7fff7 !important;
  color: #1b3d1b !important;
  margin: 0;
  padding-top: 70px; /* Tilpas til topbarens højde */
}

.btn {
  display: none !important;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2e7d32;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem; /* Skaber plads til logoet */
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.topbar-left {
  display: flex; /* Sørger for at logoet er centreret vertikalt */
  align-items: center;
}

.topbar-left img {
  max-height: 55px; /* eller ønsket højde */
  width: auto;
  display: block;
}

.topbar-center {
  flex: 1;
  text-align: center;
}

.topbar-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
}

.topbar-right {
  display: flex;
  gap: 1rem;
}

.topbar-link {
  color: black;
  font-weight: 
  text-decoration: none;
}

.topbar-link:hover {
  text-decoration: underline;
}

.topbar {
  box-shadow: 0 1px 3px rgba(0,0,0,0); /* blødere skygge */
}

/* Header (under topbar) */
.page-header {
  margin: 0;          /* Fjerner evt. margin */
  left: 0;
  width: 100%;
    background: linear-gradient(to bottom,
    #2e7d32 0%, 
    #2e7d32 10%, 
    #388e3c 30%, 
    #81c784 60%, 
    #f1f8e9 100%);
  color: black !important;
  text-align: center;
  padding: 70px 0.5rem 0.5rem 0.5rem;  /* Top, right, bottom, left */
  z-index: 999;
  border-bottom: none /*1px solid #1b5e20;*/
  box-shadow: 0 0px 0px rgba(0,0,0,0);
}

.project-name {
  font-size: 3rem;
  font-weight: bold;
  margin: 0.3rem 0;
}

.project-tagline {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
blockquote {
  border-left: 4px solid #2e7d32;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  font-style: italic;
  background-color: #f1f8e9;
  color: #1b3d1b;
}

.anchor-section {
  scroll-margin-top: 80px;
}

/* Footer */
.site-footer {
  background-color: #c8e6c9 !important;
  color: #1b3d1b !important;
  border-top: 2px solid #a5d6a7;
}

/* Fast kontaktlinje */
#kontaktlinje {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2e7d32;
  color: black;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
  z-index: 999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
}
footer {
  display: none;
}