/* Schriftart einbinden */
@font-face {
  font-family: "nickainley";
  src: url(../fonts/glacial-indifference.regular.otf) format("truetype");
}

/* Globale Schrift und Farbe */
* {
  font-family: "nickainley", sans-serif;
  color: #4b7a74;
}

/* Typografie */
p, h1, h2, h3, h4, h5, h6 {
  font-family: "nickainley";
  font-size: x-large;
  color: inherit;
}

/* Formulare & Buttons */
.uk-form-label,
.uk-button-default,
.uk-input,
.uk-select,
.uk-input::placeholder,
.uk-textarea,
.uk-textarea::placeholder {
  color: #4b7a74;
}

/* Box Styling */
.box {
  background-color: #ffffffcc;
  text-align: center;
  border-radius: 20px;
  max-width: 75%;
  margin: 5% auto 1%;
  border: 1px solid #c7c7c7;
}

/* Bildpositionierungen */
#imgwrapper {
  position: absolute;
  top: 0;
  width: 200px;
  height: 200px;
}

.top-image-1 {
  position: absolute;
  top: -15%;
  left: 5%;
  width: 95%;
  margin: auto;
}

.top-image-2 {
  position: absolute;
  transform: translate(-50%, -60%);
  min-width: 55%;
  max-width: 25%;
  margin: auto;
}

.image-about-mid {
  max-width: 20vw;
  max-height: 50vh;
}

/* Footer Images */
.footer-left-image {
  position: fixed;
  bottom: -10%;
  left: -5%;
  max-width: 30vw;
  max-height: 50vh;
  z-index: 10;
  margin: auto;
}

.footer-right-image {
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 40vw;
  max-height: 40vh;
  width: 50vh;
  z-index: -1;
  margin: auto;
}

/* Logo */
.logo {
  position: relative;
  width: 250px;
  margin: 0 auto;
}

/* Navigation */
nav {
  float: right;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  font-size: 22px;
  color: #4b7a74;
}

/* Slideshow */
.slideshow-images {
  max-width: 100vw;
  max-height: 80vh;
}

/* Footer */
.footer {
  text-align: center;
  color: #4b7a74;
}

.footer a {
  color: inherit;
}

/* Instagram Icon */
.insta-icon {
  display: inline-block;
  margin-top: 10px;
}

.insta-icon img {
  width: 24px;
  vertical-align: middle;
}

/* Hintergrundbild */
.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
}

/* Individuelle Listen */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: large;
  color: #4b7a74;
}

.custom-list img {
  width: 50px;
  height: 30px;
  margin-top: 3px;
}

.uk-subnav > * > a {
  font-family: "nickainley", sans-serif;
  color: #4b7a74 !important;
  font-size: x-large;
}

.uk-subnav > .uk-active > a {
  font-size: 1rem; /* oder z. B. 22px */
  background-color: rgba(75, 122, 116, 0);
  color: #4b7a74 !important;
  border-radius: 0px;
  padding: 8px 16px;
  text-decoration: underline;
  font-weight: bold;
}

.uk-subnav {
  background-color: rgba(255, 255, 255, 0.8); /* leicht weiß-transparent */
  padding: 10px 20px;
  border: 1px solid rgba(75, 122, 116, 0.2); /* zarter Rahmen in deiner Hauptfarbe */
  border-radius: 12px;
  margin-bottom: 20px;
  justify-content: center; /* zentriert die Tabs */
  gap: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);

}

nav a.active {
  text-decoration: underline;
  font-weight: bold;
}