@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: 'clear_sansregular';
  src: url('../font/ClearSans-Regular-webfont.eot');
  src: url('../font/ClearSans-Regular-webfont.eot?#iefix')
      format('embedded-opentype'),
    url('../font/ClearSans-Regular-webfont.woff') format('woff'),
    url('../font/ClearSans-Regular-webfont.ttf') format('truetype'),
    url('../font/ClearSans-Regular-webfont.svg#clear_sansregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'clear_sans_thinregular';
  src: url('../font/ClearSans-Thin-webfont.eot');
  src: url('../font/ClearSans-Thin-webfont.eot?#iefix')
      format('embedded-opentype'),
    url('../font/ClearSans-Thin-webfont.woff') format('woff'),
    url('../font/ClearSans-Thin-webfont.ttf') format('truetype'),
    url('../font/ClearSans-Thin-webfont.svg#clear_sans_thinregular')
      format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'clear_sans_lightregular';
  src: url('../font/ClearSans-Light-webfont.eot');
  src: url('../font/ClearSans-Light-webfont.eot?#iefix')
      format('embedded-opentype'),
    url('../font/ClearSans-Light-webfont.woff') format('woff'),
    url('../font/ClearSans-Light-webfont.ttf') format('truetype'),
    url('../font/ClearSans-Light-webfont.svg#clear_sans_lightregular')
      format('svg');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0px;
  padding: 0px;
  -webkit-text-size-adjust: none;
}

body {
  font-family: 'clear_sans_thinregular';
}

ul {
  list-style: none;
}

a {
  color: #a7b958;
}

a:link {
  text-decoration: underline;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: 'clear_sans_lightregular';
  font-weight: normal;
  font-style: normal;
  font-size: 28px;
  margin-bottom: 10px;
}

b {
  font-family: 'clear_sansregular';
  font-weight: normal;
  font-style: normal;
  color: #465b55;
}

.logo {
  background-color: rgba(255, 255, 255, 0.9);
  color: #a9c6bd;
  padding: 20px;
  width: 100%;
  max-width: 300px;
}

b,
a:link,
a:visited,
h2,
small,
.price {
  color: #465b55;
}

/*2019*/

body {
  padding: 50px 0;
  background-color: #a9c6bd;
  background: rgb(169, 198, 189); /* Old browsers */
  background: -moz-linear-gradient(
    45deg,
    rgba(169, 198, 189, 1) 0%,
    rgba(225, 242, 238, 1) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    45deg,
    rgba(169, 198, 189, 1) 0%,
    rgba(225, 242, 238, 1) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    45deg,
    rgba(169, 198, 189, 1) 0%,
    rgba(225, 242, 238, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a9c6bd', endColorstr='#e1f2ee',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

@media screen and (max-width: 768px) {
  body {
    padding: 0;
  }
}

.headline {
  text-align: center;
  color: #465b55;
}

.headline h2 {
  color: #465b55;
  font-size: 3em;
  font-family: 'clear_sans_thinregular';
}

.btn-group {
  display: flex;
  gap: 0.75rem;
  flex-direction: column;
}

a.btn-primary,
a:visited.btn-primary {
  padding: 8px 12px;
  background-color: #a9c6bd;
  color: #fff;
  transition: all 0.5s;
  display: inline-block;
  margin: 0 0 0;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: underline;
}

a.btn-primary:hover {
  background-color: #f4f4f4;
  color: #a9c6bd;
}

/*HEADER*/

.header {
  max-height: 500px;
  overflow: hidden;
}

.header .container {
  background-image: url(../style/opener.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 33%;
  background-position: center center;
  position: relative;
  max-height: 500px;
}

.header .container h1 {
  background-color: rgba(255, 255, 255, 0.9);
  color: #465b55;
  padding: 20px;
  font-size: 2em;
}

section:not(.no-color) .container .row {
  background-color: rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 768px) {
  .header .container h1 {
    font-size: 1.4em;
    text-align: center;
    width: 100%;
    display: block;
  }
}

.header .container small {
  display: block;
  font-size: 0.8em;
  margin: 10px 0;
}

/*Welcome*/

.welcome {
  margin: 50px 0;
}

.welcome .pic {
  background-image: url(../style/opener.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 50%;
  background-position: top center;
}

.welcome .content {
  color: #000;
  padding: 20px;
  vertical-align: middle;
  background-color: transparent;
}

/*navi*/

.navi {
}

.navi ul {
  margin: 0 auto;
  text-align: center;
}

.navi ul li {
  display: inline-block;
}
.navi ul li::after {
  content: '|';
  color: #a9c6bd;
  margin: 0 5px;
}

.navi ul li:last-child::after {
  display: none;
}

.navi ul li a {
  font-family: 'clear_sansregular';
  color: #a9c6bd;
  font-size: 1.2em;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .navi ul li {
    display: block;
  }

  .navi ul li::after {
    display: none;
  }

  .navi ul li a {
    display: block;
    text-align: center;
    padding: 15px;
  }
}

/*Angebote*/

.angebote {
  margin: 50px 0;
}

.angebote .row {
  background-color: #fff;
}

.pic {
  /*
	background-image: url(../style/opener.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding-bottom: 33%;
	background-position: center center;
	*/

  padding: 0;
}

section figure img {
  margin-top: 40px;
  margin-bottom: 40px;
}
section .content {
  background-color: #fff;
  color: #000;
  padding: 50px 20px 40px;
  vertical-align: middle;

  align-items: center;
  justify-content: center;
  align-self: stretch;
}

/*Kontakt*/

.kontakt {
  margin: 50px 0 0;
}

.top {
  background-color: #a9c6bd;
  color: #fff;
  position: relative;
}

.top a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 120px 0;
  color: #fff;
  transition: all 0.5s;
  font-size: 1.8em;
  text-decoration: none;
}

.top a:hover {
  color: #000;
}

/*Kingnature*/

.kingnature {
  margin: 50px 0;
}

.vid {
  padding: 0;
}

.vid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.25);
}

/*Modal*/

.modal-header {
  background-color: #a9c6bd;
  color: #fff;
  border-radius: 0;
  border-bottom: 0px;
}

.modal-header h2 {
  color: #465b55;
}

.modal-content {
  border-radius: 0px;
  border: 0px;
}

figure {
  margin-bottom: 0px;
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  object-position: center center;
}

.shop-banner {
  background: transparent; /* kein weisser Hintergrund */
  padding: 15px 0; /* kleiner Abstand oben/unten */
}

.shop-banner img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.welcome.no-color {
  background-color: #fff; /* Dunkler Hintergrund */
  color: #465b55;           /* Helle Schriftfarbe */
}

.welcome.no-color a {
  color: 465b55; /* Gold/gelb für Links, damit sie sich abheben */
}

.welcome.no-color h1,
.welcome.no-color h2 {
  color: 465b55; /* Überschriften auch hell */
}

/* Kein Cropping im ABOUT-Bereich auf allen Geräten */
#about .pic img {
  height: auto !important;
  min-height: 0 !important;
  object-fit: contain !important; /* zeigt das gesamte Bild */
  object-position: center center !important;
}

/* Optional: nur auf kleinen Screens überschreiben (falls du desktop 'cover' behalten willst) */
@media (max-width: 768px) {
  #about .pic img {
    height: auto !important;
    min-height: 0 !important;
    object-fit: contain !important;
  }

  /* Etwas weniger Vertikalabstand am Bild auf Mobil */
  #about section figure img,
  #about figure img {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

img.no-crop {
  height: auto !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
}