:root {
  --blue:rgb(37, 51, 101);
  --green:rgb(76, 158, 52);
  --red:rgb(255, 32, 32);
  --white:rgb(255, 255, 255);
  --offwhite:rgb(250, 255, 248);
  --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --shadow: rgba(0, 0, 0, 0.5);
  --lightshadow: rgba(0, 0, 0, 0.125);
  --highlight: rgb(232, 245, 227);
  --highlight-dark: rgb(209, 221, 204);
  --highlight-light: rgb(235, 246, 233);
  --footertext: lightgrey;
  --alternaterowbackground: #F8f8f8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

@media (min-width:640px) {
  .box-highlight { width: calc(50% - 8px) !important; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width:768px) {
  #contactbar { display: none; }
  .kennels-layout { flex-direction: column; }
}

#mobilebar {
  display: none;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}
#mobilebar img {
  height: 52px;
}
#hamburger {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--blue);
  padding: 8px;
}
#mobilemenu {
  display: none;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--highlight-dark);
  border-radius: 8px;
  box-shadow: 4px 4px 12px var(--shadow);
  position: fixed;
  top: 64px;
  right: 0;
  width: 200px;
  z-index: 1001;
}
#mobilemenu.open {
  display: flex;
}
#mobilemenu a.mobile-mnu {
  padding: 14px 24px;
  font-size: 16px;
  border-bottom: 1px solid var(--highlight-dark);
}
#mobilemenu a.mobile-mnu:hover {
  background-color: var(--highlight);
}
#mobilemenu .mobile-call {
  margin: 16px 24px;
  text-align: center;
}

@media (min-width:1024px) {
  .box-highlight { width: calc(25% - 12px) !important;}
}

* {
  box-sizing: border-box;
}

body {
  font-size: 14px;
  padding: 0;
  margin: 0;
  font-family: var(--font-sans);
  background-color: var(--white);
}

a {
  color: inherit !important;
  text-decoration: none !important;
}

#header{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--white);
  box-shadow: rgb(240, 240, 240) 0 4px 4px;
  z-index: 1000;
}

#contactbar {
  background-color: var(--blue);
  color: var(--white);
  width: 100%;
  text-align: right;
  padding: 8px 24px 8px 8px;
  margin: 0;
}
#contactbar a {
  margin-left: 24px;
}
#contactbar i {
  color: var(--white) !important;
  margin-right:8px;
}

#menubar {
  height: 80px;
  display:flex;
  flex-direction: row;
  align-items: center;
}
#menubar img {
  height: 74px;
  margin-left:24px;
}
#menubar a {
  font-size: 16px;
  margin-left:24px;
}

@media (max-width:768px) {
  #menubar   { display: none; }
  #mobilebar { display: flex; }
}

.btn {
  display: inline-block;
  border-radius: 24px;
  padding: 12px 24px 12px 24px;
  text-decoration: none !important;
}
.btn-green {
  background-color: var(--green);
  color: var(--white) !important;
}
.btn-blue {
  background-color: var(--blue);
  color: var(--white) !important;
}
.btn:hover {
  transform: scale(1.1);
}

.smallbtn {
  display: inline-block;
  border-radius: 12px;
  padding: 6px 12px 6px 12px;
  text-decoration: none !important;
}
.smallbtn:hover {
  transform: scale(1.1);
}


.right-align {
  margin-left: auto;
  margin-right: 24px;
}

.pagecontent {
  padding-top: 120px;
  width: 95%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bigpicture-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 8px 8px 16px 0px var(--shadow);
  margin-bottom: 16px;
}

.bigpicture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slideshowpicture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

h1 {
  text-align: center;
  font-size: 48px;
  color: var(--blue);
  width: 100%;
  margin: 16px;
}

h2 {
  text-align: left;
  font-size: 36px;
  color: var(--blue);
  width: 100%;
  margin: 4px;
  font-weight: 700;
}

h3 {
  text-align: left;
  font-size: 30px;
  color: var(--green);
  width: 100%;
  margin: 4px;
  font-weight: 600;
}

p {
  text-align: justify;
  font-size: 18px;
  color: var(--blue);
  width: 100%;
}

.box-highlight {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 8px 8px 16px 0px var(--lightshadow);
  width: 100%;
  text-align: center;
  border-top: var(--green) 4px solid;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px 16px 24px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.box-highlight.visible {
  opacity: 1;
  transform: translateY(0);
}
.box-highlight p {
  margin: 4px;
}

.box-highlight .icon {
  background-color: var(--highlight);
  border-radius: 32px;
  color: rgb(76, 158, 52);
  padding: 16px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-highlight p {
  text-align: center;
}

.section {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 8px 8px 16px 0px var(--lightshadow);
  width: 100%;
  padding: 16px;
}
.section .icon {
  background-color: var(--highlight);
  border-radius: 32px;
  color: rgb(76, 158, 52);
  padding: 16px;
  height: 64px;
  min-width: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.smallicon {
  background-color: var(--highlight);
  border-radius: 24px;
  color: rgb(76, 158, 52);
  padding: 16px;
  height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.section p {
  width: 100%;
  text-align: justify;
}

.section ol {
  padding-left: 1.5em;
  margin: 0;
  font-size: 18px;
  color: var(--blue);
}
.section ol li {
  padding-left: 0.5em;
  margin-bottom: 8px;
  text-align: justify;
}
.section ol li::marker {
  color: var(--green);
  font-weight: bold;
}

.section table {
  margin: 0 auto;
  font-size: 18px;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.section table th {
  background-color:var(--blue);
  color: var(--white);
  padding: 8px 24px;
  margin: 0px;
}
.section table th:nth-child(1), .section table td:nth-child(1) { text-align: left; }
.section table th:nth-child(2), .section table td:nth-child(2) { text-align: right; }
.section table td {
  background-color: var(--white);
  padding: 8px 24px;
  margin: 0px;
}

.section table.full-width {
  width: 100%;
}

.section tr:nth-child(even) td {
  background-color: var(--alternaterowbackground);
}
.td-closed {
  color: var(--green);
}

.section .comment {
  font-style: italic;
  font-size: 18px;
  color: var(--blue);
}
.section .comment::before {
  content: "\201C";
}
.section .comment::after {
  content: "\201D";
}

.section .name {
  color: var(--blue);
  font-weight: bolder;
  text-align: right;
  border-top: 1px solid lightgray;
  margin-top: 24px;
  padding-top: 16px;
  font-size: 18px;
}
.section .date {
  color: var(--green);
  text-align: right;
  font-size: 12px;
}

#footer {
  width: 100%;
  background-color: var(--blue);
  color: var(--footertext);
  margin-top: 32px;
  padding: 16px;
  text-align: center;
}
#footer div {
  background-color: var(--blue);
}
#footer p {
  background-color: var(--blue);
  color: var(--footertext);
  text-align: center;
  font-size: 16px;
  padding: 0;
  margin: 0;
}
#scroll-top {
  position: fixed;
  bottom: 48px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 4px 4px 12px 0px black;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
#scroll-top {
  transition: transform 0.2s ease;
}
#scroll-top:hover {
  transform: scale(1.2);
}

#footer .copyright {
  display: flex; 
  border-top: 1px solid darkslategrey; 
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
}

.address p {
  text-align: left;
  margin: 0;
  line-height: 1.4;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slideinleft {
  animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slideinright {
  animation: slideInRight 0.5s ease forwards;
}

.borderblue {
  border: solid 4px var(--blue);
}

.bordergreen {
  border: solid 4px var(--green);
}

.section-img-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-img-layout .section-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  order: -1;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  /*box-shadow: 8px 8px 16px 0px var(--shadow);*/
  border: solid 4px var(--blue);
}

@media (min-width: 1024px) {
  .section-img-layout {
    flex-direction: row;
    align-items: center;
  }
  .section-img-layout .section-img {
    width: 40%;
    order: 1;
  }
  .section-img-layout.img-left .section-img {
    order: -1;
  }
}

.imageoverlay {
  position: absolute; 
  background-color: var(--green); 
  color: var(--white); 
  padding: 6px 14px; 
  border-radius: 6px; 
  font-weight: bold; 
  font-size: 14px;
}

.imageoverlay.topright {
  top: 8px; 
  right: 8px; 
}

.imageoverlay.bottomleft {
  bottom: 8px; 
  left: 8px; 
}

.imageoverlay.blue {
  background-color: var(--blue); 
}

.imageoverlay.green {
  background-color: var(--green); 
}

.section-img img {
  width: 100%; 
  height: 100%;
  border-radius: 0; 
  object-fit: cover; 
  display: block;
  border: 0;
  object-fit: cover;
  object-position: center;
}

.slideshow-container { position: relative; }
.slide-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.4); color: white; border: none;
    padding: 8px 14px; font-size: 18px; cursor: pointer;
    border-radius: 4px; z-index: 10;
}
.slide-btn:hover { background: rgba(0,0,0,0.7); }
.slide-prev { left: 10px; }
.slide-next { right: 10px; }
.slide-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
}
.slide-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.5); cursor: pointer;
}
.slide-dot.active { background: white; }
.slide {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}
.slide.active { opacity: 1; }