html {
	font-size: 100%;
	/* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-IE browsers */
	height: 101%;
}

body {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	background-color: #F0F0F0;
	font-size: 16px;
	margin: 0;
}

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
	background-color: #F0F0F0;
	margin-top: 0px;
}

.header-container {
  border-radius: 6px;
  background-color: #bbd2eb;
  text-align: left;
  padding: 8px 10px;
  margin-top: 12px;
	margin-bottom: 12px;
	margin-left: 10px;
	margin-right: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container h1 {
  font-size: 40px;
  font-weight: bold;
  color: #0b0b0b;
  margin: 0;
}

.header-container h2 {
  font-size: 17px;
  font-weight: normal;
  color: #444;
  margin: 3px 0 0;
  padding-left: 1px;
}

.header-subrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.header-contact {
  font-size: 17px;
  font-weight: normal;
  color: #444;
  padding-right: 10px;
  white-space: nowrap;
}

.headerspace {
	height: 110px;
}

.textsection {
	color: #0b0b0b;
	background-color: #d5e0eb;
  border-radius: 6px;
	margin-top: 8px;
	margin-bottom: 8px;
	margin-left: 10px;
	margin-right: 10px;
	padding: 8px;
	padding-top: 15px;
	padding-bottom: 20px;
}

.textsection ul {
	list-style-type: disc;
  margin-top: 0;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.card {
  background-color: #d5e0eb;
  border: 1px solid #bbd2eb;
  border-radius: 6px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  padding: 15px;
  font-size: 15px;
  max-width: 500px;
  color: #0b0b0b;
  position: relative;
  transition: background-color 0.2s ease-in-out;
}

.card:hover {
  background-color: #cdd8e5;
}

.card h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0b0b0b;
  border-bottom: 1px solid #bbd2eb;
  padding-bottom: 4px;
}

.card .date {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 12px;
  color: #555;
}

.card .desc {
  margin-top: 8px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.image-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  justify-content: flex-start;
}

.image-group img {
	flex: 1 1 calc(33.333% - 8px); /* Flexibel, aber mindestens 150px breit */
  min-width: 150px;
  max-width: 150px;
  height: auto;
  border: 1px solid #bbb;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.image-group img:hover {
  transform: scale(1.03);
  border-color: #2651a8;
}

