:root {
  --bs-body-font-size: 1.2rem;
	--bs-body-line-height: 1.3;
  --bs-border-radius: 0;
  --bs-link-color: #005940;
  --bs-link-hover-color: #00805b;

  --kw-gold: 180, 150, 80;
  --kw-gold-light: 205, 186, 139;
  --kw-gold-lightest: 230, 220, 197;
  --kw-silver: 190, 191, 196;
  --kw-green: 0, 70, 50;
  --kw-green-medium: 28, 138, 106;
  --kw-green-light: 121, 201, 179;
  --kw-red: 100, 30, 40;
  --bs-primary: 0, 70, 50;
}
html {
  font-family: serif;
}
body {
	/* Traditional Garamond-based serif stack */
	font-family: "EB Garamond", "Palatino Linotype", Palatino, Palladio, "Book Antiqua", Baskerville, "Bookman Old Style", "Bitstream Charter", Garamond, "Apple Garamond", "New Century Schoolbook", "Century Schoolbook", "Century Schoolbook L", Georgia, serif;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.2;
}
h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
  text-transform: uppercase !important;
  color: rgb(var(--kw-green));
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 4rem;
  }
}
h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
  color: rgb(var(--kw-green));
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 3rem;
  }
}
h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 2.5rem;
  }
}
h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 2.25rem;
  }
}
h5, .h5 {
  font-size: 1.75rem;
}
h6, .h6 {
  font-size: 1.25rem;
}
a {
  text-decoration: underline;
  text-decoration-style: dotted;
	text-underline-offset: 0.1em;
}
a:hover {
  text-decoration-style: solid;
}
small, .small {
  font-size: 0.8em;
}
.text-uppercase {
  text-transform: uppercase !important;
	letter-spacing: 0.25rem;
}
.mh-90 {
  max-height: 90% !important;
}
.vh-90 {
  height: 90vh !important;
}
.min-vh-90 {
  min-height: 90vh !important;
}
.mh-80 {
  max-height: 80% !important;
}
.vh-80 {
  height: 80vh !important;
}
.min-vh-80 {
  min-height: 80vh !important;
}
.mh-70 {
  max-height: 70% !important;
}
.vh-70 {
  height: 70vh !important;
}
.min-vh-70 {
  min-height: 70vh !important;
}
.mh-60 {
  max-height: 60% !important;
}
.vh-60 {
  height: 60vh !important;
}
.min-vh-60 {
  min-height: 60vh !important;
}
.mh-50 {
  max-height: 50% !important;
}
.vh-50 {
  height: 50vh !important;
}
.min-vh-50 {
  min-height: 50vh !important;
}
.mh-40 {
  max-height: 40% !important;
}
.vh-40 {
  height: 40vh !important;
}
.min-vh-40 {
  min-height: 40vh !important;
}
.mh-30 {
  max-height: 30% !important;
}
.vh-30 {
  height: 30vh !important;
}
.min-vh-30 {
  min-height: 30vh !important;
}
.btn, btn-primary {
	border-radius: var(--bs-border-radius);
}
.btn-kw-gold {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgb(180, 150, 80);
  --bs-btn-border-color: rgb(180, 150, 80);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(128, 106, 56);
  --bs-btn-hover-border-color: rgb(128, 106, 56);
  --bs-btn-focus-shadow-rgb: 232, 193, 102;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(181, 134, 25);
  --bs-btn-active-border-color: rgb(181, 134, 25);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: rgb(181, 134, 25);
  --bs-btn-disabled-border-color: rgb(181, 134, 25);
}
.bg-green {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--kw-green), var(--bs-bg-opacity)) !important;
}
.bg-blur {
	background-color: rgba(255,255,255,0.5);
	-webkit-backdrop-filter: saturate(30%) blur(10px);
	backdrop-filter: saturate(30%) blur(10px);
}

/* Header ------------------------------------------------------------------ */
header {
	padding: 0 !important;
	background-color: rgba(255,255,255,0.5);
	-webkit-backdrop-filter: saturate(30%) blur(10px);
	backdrop-filter: saturate(30%) blur(10px);
}
a.logo {
	width: 160px;
	height: 186px;
  display: inline-block;
	overflow: hidden;
	padding: 0;
	margin: 12px 0 0;
	transition: 1s ease all;
}
a.logo img {
	width: 100%;
}
/* Navigation -------------------------------------------------------------- */
.navbar {
  --bs-navbar-nav-link-padding-x: 2rem;
}
.nav-sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 88px;
  z-index: 1020;
}
.navbar .bg-light {
	background-color: rgba(240,240,240,0.5);
}
.nav-item {
	text-transform: uppercase;
  text-align: center;
}
.navbar-nav .nav-link.active {
  font-weight: 700;
}
.nav-item .dropdown-menu {
	text-align: center;
}
/* Carousel ---------------------------------------------------------------- */
.carousel-item {
  background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
  background-position: center center;
}
.carousel .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 10vh;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
.carousel .carousel-caption h5 {
  font-size: calc(1.375rem + 1.4vw);
  font-weight: 400;
  font-style: italic;
  text-shadow: 0px 0px 8px #000,
  						 1px 2px 4px #000;
}
/* Footer ------------------------------------------------------------------ */
footer {
  color: rgb(var(--kw-gold-lightest));
}
footer a {
  color: #f2ecdc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}
/* Cover ------------------------------------------------------------------- */
.cover-container {
  background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
  background-position: center center;
}
.cover-container h2,
.cover-container.h2 {
  font-size: calc(1.325rem + 5vw);
	text-transform: uppercase;
  color: rgb(255,255,255);
  text-shadow: 0px 0px 12px #000;
}
h1.poster, h2.poster {
	text-align: center;
	text-transform: uppercase;
	font-weight: 400;
  font-size: calc(1.325rem + 8vw);
	letter-spacing: 0.1rem;
	line-height: 90%;
	padding: 2rem 0;
}
h2.poster {
  font-size: calc(1.325rem + 4vw);
}
/* Cards ------------------------------------------------------------------- */
.card.single-wine {
	border: 0 none;
}
.card .card-title {
	font-size: 1.5rem;
}
.card .card-text {
	font-size: 1rem;
}
.card.single-wine .card-img-overlay {
  background-color: rgba(255,255,255,0.85);
  border-radius: 0;
  opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}
.card.single-wine:hover .card-img-overlay,
.card.single-wine:focus .card-img-overlay {
  opacity: 1;
	visibility: visible;
	cursor: pointer;
}
.single-wine .card-footer {
  background: none;
}
.card.single-wine .card-footer h6 {
	font-weight: 500;
	text-align: center;
  opacity: 1;
	visibility: visible;
	transition: all 0.5s ease;
}
.card.single-wine:hover .card-footer h6,
.card.single-wine:focus .card-footer h6 {
  opacity: 0;
	visibility: hidden;
}
/* Carousel with Cards ------------------------------------------------------*/
.multiCardCarousel {
	margin: 2rem 0;
}
.multiCardCarousel .carousel-inner {
	padding: 0 3rem;
}
@media (max-width: 575px) {
	.multiCardCarousel .carousel-item > div {
		display: none;
	}
	.multiCardCarousel .carousel-item > div:first-child {
		display: block;
	}
}
.multiCardCarousel .carousel-item.active,
.multiCardCarousel .carousel-item-next,
.multiCardCarousel .carousel-item-prev {
	display: flex;
}
@media (min-width: 576px) {
	.multiCardCarousel .carousel-item-end.active,
	.multiCardCarousel .carousel-item-next {
		transform: translateX(50%);
	}
	.multiCardCarousel .carousel-item-start.active,
	.multiCardCarousel .carousel-item-prev {
		transform: translateX(-50%);
	}
}
@media (min-width: 768px) {
	.multiCardCarousel .carousel-item-end.active,
	.multiCardCarousel .carousel-item-next {
		transform: translateX(33.3333%);
	}
	.multiCardCarousel .carousel-item-start.active,
	.multiCardCarousel .carousel-item-prev {
		transform: translateX(-33.3333%);
	}
}
@media (min-width: 1200px) {
	.multiCardCarousel .carousel-item-end.active,
	.multiCardCarousel .carousel-item-next {
		transform: translateX(25%);
	}
	.multiCardCarousel .carousel-item-start.active,
	.multiCardCarousel .carousel-item-prev {
		transform: translateX(-25%);
	}
}
.multiCardCarousel .carousel-item-end,
.multiCardCarousel .carousel-item-start {
  transform: translateX(0);
}
.multiCardCarousel .carousel-control-prev,
.multiCardCarousel .carousel-control-next {
  position: absolute;
  top: 30%;
  bottom: 30%;
  width: 10%;
}
.multiCardCarousel .carousel-control-prev-icon,
.multiCardCarousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}
.multiCardCarousel .card {
	margin: 0 .5rem;
}
/* Textbanner -------------------------------------------------------------- */
.textbanner {
  background-color: rgb(var(--kw-gold));
  color: #fff;
}
.textbanner h2 {
  color: #fff;
  font-size: calc(1.375rem + 1.4vw);
  font-weight: 400;
  font-style: italic;
}
/* Formular ---------------------------------------------------------------- */
.yform .form-group {
	margin: 0 0 .5rem 0;
}
/* Map --------------------------------------------------------------------- */
section.map {
	padding: 0;
}
.map iframe {
	width: 100%;
	height: 100%;
	padding: 0;
}