	
body{
	background-color: #e9e5dc;
	background-size: cover;
	color: #222;
	font-family: 'Courier Prime', monospace;
	line-height: 1.6;
}

.extra{
	background-color: #e9e5dc;
	top: 0;
	left: 0;
	right: 0;
	height: 24px;
	font-size: 12px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 16px;
	border-bottom: 1px solid #ddd;
	position: fixed; 
	z-index: 1001;
	transition: top 0.3s ease;
}

#cookie-banner{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 700px;
	max-height: 300px;
	height: 90%;
	width: 90%;
	background-color: white;
	color: black;
	text-align: center;
	padding: 20px 30px;
	z-index: 9999;
	font-size: 16px;
	border: 1px solid #aaa;
}

#cookie-banner a{
	text-decoration: underline;
	font-weight: bold;
}

.cookie-buttons{
	margin-top:10px;
	display: flex;
	justify-content: space-between;
}

#accept-cookies,
#decline-cookies{
	background-color: white;
	border: 1px solid black;
	color: black;
	padding: 8px 10px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s ease-in-out;
}

#accept-cookies:hover,
#decline-cookies:hover{
	background-color: black;
	color: white;
}

.topbar a:hover{
	text-decoration: underline;
}

a{
	color: #222;
	text-decoration: none;
}

header.striche{
	padding: 10px 40px;
	position: fixed;
	width: 100%;
	height: 80px;
	background-color: #d5cebd;
	font-family: 'Playfair Display', serif;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	border-bottom: 3px double #deb887;
	top: 0;
	z-index: 1000;
}

#page-content{
	padding-top: 80px;
}

.menu{
	font-size: 32px;
}

.inhaltsverzeichnis{
	display: flex;
	padding-right: 20px;
	align-items: center;
	gap: 50px;
	position: relative;
	z-index: 1001;
	overflow: visible;
}


.drei-striche{
	width: 30px;
	height: 24px;
	cursor: pointer;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 5px;
	z-index: 1001;
	transition: transform 0.4s ease;
}

.drei-striche span{
	display: block;
	height: 3px;
	width: 100%;
	background-color: #1a1a1a;
	border-radius: 2px;
	transition: all 0.4s ease; 
}

.menu-links{
	flex-direction: column;
	display: none;
	gap: 24px;
	margin-right: 60px;
	background-color: #fdfdfd;
	position: absolute;
	top: 40px;
	right: 0;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px rgba(0,0,0,0.1); 
}

.menu-links li a{
	margin: 0.5em 0;
	color: #1c1c1c;
	text-decoration: none;
	font-weight: 500;
}

.menu-links li a:hover{
	text-decoration: underline;
}

.drei-striche.active{
	transform: rotate(90deg);
	background-color: #e9e5dc;
}

.menu-links.show{
	display: flex;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-top: 20px;
}

.intro {
	text-align: center;
	background: rgba(255,255,255,0.8);
	font-family: 'Playfair Display', serif;
	color: #000;
}

.intro h1{
	font-size: 48px;
}

.intro p{
	font-size: 20px;
	font-style: italic;
}

.knopf{
	display: inline-block;
	background-color: transparent;
	padding: 12px 24px;
	border: 2px solid #c7a45b;
	border-radius: 999px;
	border-radius: 4px;
	font-family: 'Georgia', serif;
	color: #1c1c1c;
	font-size: 16px;
	font-weight: bold;
	transition: background 0.4s ease, color 0.3 ease;
}

.knopf:hover{
	background-color: #c7a45b;
	color: white;
}

section{
	padding: 48px 20px;
	text-align: center;
	border-bottom: 2px dotted #333;
}

 episode-grid{
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	text-decoration: none;
}

.card-slider{
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 20px;
}

.card-slider::-webkit-scrollbar{
        display: none;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
}


.card-slider {
  padding-bottom: 20px;
}

.scroll-container::-webkit-scrollbar{
        display: none;
}

.carousel-wrapper {
  width: calc(300px * 3 + 20px * 2);  /* 3 Karten + 2 Zwischenräume */
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.episode-card{
	width: 300px;
	height: 250px;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	border: 2px solid #999;
	padding: 20px;
	border-radius: 15px;
	background-color: #fff;
	color: #000;
	box-shadow: 0 4px 6px rgba(0,0,0,0.2); 
	text-decoration: none;
	z-index: 98;
}

.episode-card:hover{
	transform: scale(1.1);
}

.episode-card a{
	text-decoration: none;
}
.episode-card a:hover{
	text-decoration: underline;
}

h1, h2, h3{
	font-family: 'Playfair Display', serif;
}


h1 {
	font-size: 36px;
	color: #000;
	margin-bottom: 12px;
}

h2 {
	font-size: 28px;
	color: #444;
	margin-bottom: 10px;
}

h3{
	font-size: 20px;
	color: #666;
}

.about{
	font-style: italic;
	background-color: rgba(255,255,255,0.9);
}

.social-medias{
	margin-top: 48px;
}

.social-medias .links a{
	display: inline-block;
	margin: 8px 12px;
    color: #222;
    text-decoration: none;
    font-weight: bold;
    text-decoration: none;
}

.social-medias .links a:hover {
	    text-decoration: underline !important;
}

footer{
	background-color: #d5cebd;
	color: #111;
	text-align: center;
	padding: 20px;
	font-size: 14px;
}

.mySlides {
	display: none;
}

img {
	vertical-align: middle;
}



body{font-family: Verdana, sans-serif}

.mySlides:first-child{
	display: block;
}

.slideshow-container {
  max-width: 100vw;
  position: relative;
  margin: auto;
}

.slideshow-container div img{
	width: 100%;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

.aktuelle-folge a:hover{
	text-decoration: underline;
}

#myBtn{
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	background-color: #d5cebd;
	color: black;
	cursor: pointer;
	padding: 15px;
	border-radius: 10px;
	font-size: 10px;
}

#myBtn:hover{
	background-color: black;
	color: #fff;
}
