@font-face { 
	font-family: 'Lato';
	src: url('fonts/Lato/Lato-Regular.ttf') format('truetype');
	font-display: swap;
}

@font-face { 
	font-family: 'Lato';
	src: url('fonts/Lato/Lato-Light.ttf') format('truetype');
	font-weight: 200;
	font-display: swap;
}

@font-face { 
	font-family: 'Lato';
	src: url('fonts/Lato/Lato-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

@font-face { 
	font-family: 'Lato';
	src: url('fonts/Lato/Lato-Black.ttf') format('truetype');
	font-weight: 900;
	font-display: swap;
}

@font-face { 
	font-family: 'Lato';
	src: url('fonts/Lato/Lato-Italic.ttf') format('truetype');
	font-style: italic;
	font-display: swap;
}

/* Cinzel */

@font-face { 
	font-family: 'Cinzel Decorative';
	src: url('fonts/Cinzel_Decorative/CinzelDecorative-Regular.ttf') format('truetype');
	font-display: swap;
}

@font-face { 
	font-family: 'Cinzel Decorative';
	src: url('fonts/Cinzel_Decorative/CinzelDecorative-Bold.ttf') format('truetype');
	font-weight: bold;
}

@font-face { 
	font-family: 'Cinzel Decorative';
	src: url('fonts/Cinzel_Decorative/CinzelDecorative-Black.ttf') format('truetype');
	font-weight: 900;
}

/* Playfair_Display */

@font-face { 
	font-family: 'Playfair Display';
	src: url('fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf') format('truetype');
	font-display: swap;
}

@font-face { 
	font-family: 'Playfair Display';
	src: url('fonts/Playfair_Display/static/PlayfairDisplay-Bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}


:root {
	--bg-light: #f3f1e5;
/*  --golden: #bd9452;*/
	--golden: #b27125;
  --dark-tone: #532308;
  --black-tone: #160d02;
	--link-bg-hover: #e8c285;
	--link-bg-hover-footer: rgba(255, 255, 255, .25);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cc9447+0,eddab8+31,cc9447+100 */
	--gradient-button: linear-gradient(to bottom,  #cc9447 0%,#eddab8 31%,#cc9447 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.highcontrast{
	--bg-light: #f3f1e5;
  --golden #b27125;
  --dark-tone: #532308;
  --black-tone: #160d02;
}
.darkmode{
	--bg-light: #f3f1e5;
  --golden: #b27125;
  --dark-tone: #532308;
  --black-tone: #160d02;
}

* {
	box-sizing: border-box;
}

body, html {
	margin: 0;
	padding: 0;
	font-family: 'Lato', sans-serif;
	background: #f3f1e5;
	font-size: 16px;
}

.main-content {
	min-height: calc(100vh - 220px);
}

.main-content a { color: var(--dark-tone); }
.main-content a:hover { color: var(--black-tone); background-color: var(--link-bg-hover); }

.slogan { text-align: center; }

p { margin-top: 0; }

h1, h2 {
	font-family: 'Cinzel Decorative';
	font-weight: normal;
	color: var(--dark-tone);
}

h1 { font-size: 2rem; margin-bottom: .5rem; }
h2 { font-size: 1.5rem; }
.subtitle {
	font-family: 'Playfair Display';
	font-size: 2rem;
	font-weight: normal;
	color: var(--golden);
	text-align: center;
}


ul.productlist {
	list-style: square;
	padding: 0;
	margin: 0;
}

dl.productlist dt {
	font-family: 'Playfair Display';
	font-size: 1.5rem;
	font-weight: normal;
	color: var(--golden);
}

dl.productlist dd {
	font-family: 'Playfair Display';
	margin-bottom: 1rem;
}

ul.productlist li,
p.productlist {
	font-family: 'Playfair Display';
	font-size: 1.25rem;
	font-weight: normal;
	color: var(--golden);
}

.button
{
	display: block;
	font-family: 'Playfair Display';
	font-size: 1.5rem;
	background: var(--gradient-button);
	color: var(--dark-tone);
	text-align: center;
	margin: 1.5rem;
  padding: .5rem 1rem;
  border-radius: 1rem;
  box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.45);
	-webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.45);
	-moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.45);
	opacity: 0.8;
  transition: all .6s ease-in-out;
}
.button:hover { opacity: 1; }


/* Bildbox mit Text (Bild links, Text rechts) */
.img-left { display: flex; flex-direction: column; width: 100%; padding: .8rem 0; }
.img-left img { width: 100%; margin-top: 0.4rem; }
.div-left,
.div-right { width: 100%; }
.gap{ width: auto; height: 2rem; }

@media (min-width: 450px) {
	.img-left { flex-flow: row wrap; }
	.div-left,
	.div-right { width: 45%; }
	.gap{ width: 2rem; height: auto; }
	ul.productlist { margin: 0; }
}

/* Flex horizontale Ausrichtung */
.space-around { 
	justify-content: space-around;
}
.space-between { 
	justify-content: space-between;
}
.flex-start { 
	justify-content: flex-start;
}
.flex-end { 
	justify-content: flex-end;
}
/* flex vertikale Ausrichtung */
.flex-align-top {
	align-items: flex-start;
}
.flex-align-middle {
	align-items: center;
}
.flex-align-bottom {
	align-items: flex-end;
}

/* ---------- Sticky Header ---------- */
header {
		position: sticky;
		top: 0;
		background: var(--bg-light);
		color: #532308;
		height: 100px;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		padding: 0 20px;
		box-sizing: border-box;
		transition: height 0.3s ease;
		z-index: 1000;
}
header.shrink {
		height: 100px;
}
header .logo {
		height: 100px;
		opacity: 1;
}
header .logo.logo-animate {
		height: 150px;
		opacity: 0;
		transition: all 0.6s ease;
}
header.shrink .logo.logo-animate {
		height: 100px;
		opacity: 1;
}
header nav a {
		color: #532308;
		margin-left: 15px;
		text-decoration: none;
}


/* MENU */
/* MENU Trigger */

#nav-trigger
{
	cursor: pointer;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	padding-top: 1rem;
	color: var(--dark-tone);
}

	.line {
		width: auto;
		height: 3px;
		background: var(--dark-tone);
		margin-bottom: 6px;
	}
	


#main-nav {
	position: fixed;
	top: 0;
	left: -100vw;
	z-index: 10000;
	width: 100vw;
	min-height: 23em;
	padding: 0 1rem;
	border-bottom: 1px solid var(--dark-tone);
	background-color: rgba(255,255,255,0.9);
	transition: left .5s;
}

#main-nav #x-close-wrapper { float: right; padding-top: 1rem; }
#main-nav a#x-close { display: inline-block; text-decoration: none; font-family: mono-space; padding: .2em .3em; color: var(--dark-tone); background-color: #fff; margin-right: 0.5em; font-size: 2em; border: 1px solid var(--dark-tone); }
#main-nav a#x-close:hover { text-decoration: none; }

#main-nav nav {
    padding: 1rem 4.5rem 0 0;
}	

#main-nav ul { margin: 0; padding: 0; list-style: none; }


#main-nav ul
{
	margin: 0;
	padding: 0;
	list-style: none;
}

#main-nav ul li { 
	margin: 0;
	padding: 0 0.95rem;
	white-space: nowrap;
}

#main-nav ul li a
{
	font-family: 'Cinzel Decorative';
	display: block;
	color: var(--dark-tone);
	margin: 0;
	padding: 0.5rem 0 0.5rem 0.5rem;
	text-decoration: none;
}

#main-nav ul li a:hover, 
#main-nav ul li a.current { color: var(--black-tone); text-decoration: underline; }


@media (min-width: 800px) {
	#nav-trigger { display: none; }
	#main-nav #x-close-wrapper { display: none; }
	#main-nav li#x-li { display: none; }
	
	#main-nav
	{
		position: static;
		border: 0;
		min-height: .8rem;
		z-index: 0;
		width: auto;
		margin-top: 1rem;
		padding: 0 0.25rem;
		overflow: auto;
		background-color: transparent;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	#main-nav nav {
			padding: 0 0.25rem;
	}	

	#main-nav ul
	{
		list-style-type: none;
		margin: 0;
		padding: 0;
	}

	#main-nav ul li { 
		margin: 0;
		padding: 0;
		text-align: center;
		float: left;
	}

	#main-nav ul li a
	{
		display: block;
		width: auto;
		height: auto;
		color: var(--dark-tone);
		padding: 4px 10px;
		text-decoration: none;
	}
}

/* Container */

#wrapper
{
	width: 100%;
	margin: auto;
}

.content {
	max-width: 1024px;
	margin: auto;
}
/*.bg
{
	background-image: url(images/juicy-diamonds-bg-soft-light.png);
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: right 1rem;
	min-height: 350px;
}*/
.bg
{
	background-image: url(images/juicy-diamonds-bg-soft-light-2.png);
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	min-height: 500px;
}
.content.faq h2 { margin-bottom: 0; }

/* ---------- Sections ---------- */
section {
	padding: 0 3rem 3rem 3rem;
}

/* ---------- Section 1 – großes Logo / Slogan ---------- */
.slogan {
		/*height: 100vh;*/
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		/*background: #f3f1e5;
		background-image: linear-gradient(to bottom, #f3f1e5, #e9e5d9);*/
}
.slogan img {
		max-width: 80%;
		max-height: 80vh;
		opacity: 1;
		transition: all 0.3s ease;
}
.slogan img.fadeout {
		opacity: 0;
}

/* ---------- Section 2 – horizontale Fotoreihe ---------- */
.fotoreihe {
		position: relative;
		height: 200px;
		overflow: hidden;
		padding: 0;
}
.fotoreihe .track {
		display: flex;
		flex-flow: row;
		width: 100vw;
		height: 100%;
		overflow: auto;
}
.fotoreihe img {
		height: 100%;
		margin-right: .25rem;
		flex-grow: 1;
}
.fotoreihe img:last-of-type { margin-right: 0; }

/* ---------- Section 3 – Text ---------- */
#section3 {
		
}

/* ---------- Footer ---------- */


#footer
{
	background: var(--dark-tone);
	color: #fff;
	padding: 20px;
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#footer-nav
{
	padding: 0 0.25rem;
}

#footer-nav ul { margin: 0; padding: 0; list-style: none; }

#footer-nav ul li { 
	margin: 0;
	padding: 0;
	text-align: center;
	float: left;
}

#footer-nav ul li a
{
	display: block;
	width: auto;
	height: auto;
	color: #fff;
	padding: 4px 10px;
	text-decoration: none;
	background-color: transparent;
	transition: background-color 0.3s ease-in-out;
}

#footer-nav ul li a:hover,
#footer-nav ul li a.current
{
	background-color: var(--link-bg-hover-footer);
}

#footer a
{
	font-family: 'Cinzel Decorative';
	color: white;
	text-decoration: none;
}
#footer a:hover,
#footer a.current {text-decoration: underline;}

#footer .text-left,
#footer .text-right { flex: 1 1 50%; padding-right: 2rem; }

ul.addresslist {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.addresslist li {
	margin: 0;
	padding: 0 20px 0 0;
	float: left;
}

#footer address { font-style: normal; }

#footer-nav {
	flex-basis: 100%;
	display: flex;
}


@media (min-width: 680px) {
	h1 { font-size: 3rem; margin-bottom: .5rem; }
	h2 { font-size: 2rem; }
	.subtitle {
		font-family: 'Playfair Display';
		font-size: 2rem;
		font-weight: normal;
		color: var(--golden);
		text-align: center;
	}
	.button { font-size: 2rem; }
	.fotoreihe { height: 300px; }
	.img-left .gap{ width: 3rem; }
	dl.productlist dt,
	ul.productlist li,
	p.productlist { font-size: 1.8rem; }
}
