@font-face {
  font-family: 'dudu';
  src: url('assets/fonts/dudu.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'DUDU', sans-serif;
  background: linear-gradient(to bottom, #2c2e4e, #e7c0b0);
  color: white;
  text-align: center;
}

a.button {
  text-decoration: none; 
  color: inherit;        
}

.container {
  padding: 60px 20px;

}

h1 {
  font-size: 2.2em;
  margin-bottom: 30px;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

#go-to-episodes {
	display: inline-block;
  margin-top: 11rem;      
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  font-style: normal;
  font-size: 1.5rem;
  
}
#back-to-episodes a{
	text-decoration: none;
	font-size: 1.5rem;
}
.polaroid {
  background: #fdf6e3;
  padding: 10px;
  width: 280px;
  margin: 0 auto 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.polaroid img {
  width: 100%;
  border-radius: 8px;
}

.caption {
  margin-top: 10px;
  color: #333;
  font-weight: bold;
  font-size: 1.1em;
}

.desc {
  font-size: 1em;
  margin: 20px 0;
}

.desc a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
}

.desc a:hover {
  color: #ffd1d1;
}

audio {
  margin-top: 25px;
}

#intro {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: #101010;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 3s ease 3s forwards;
}

#intro-image {
  width: 60%;
  max-width: 400px;
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

.hidden {
  display: none;
}

#menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 80vh;
  padding: 0 10px;
  box-sizing: border-box;
}
.back-link {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1em;
  text-decoration: none;
  color: #3a5aff;
  font-weight: bold;
  z-index: 10;
}

.left {
  flex: 1;
  margin-right: 2.5rem;
}

.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.episode-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-right: -2.188rem;
  margin-left:-2.188rem;
}

.episode-list a {
  text-decoration: none;    
  color: inherit;           
}

.episode-list li {
  margin: 10px 0;
  font-size: 1.2em;
}

.episode-list li.disabled {
  opacity: 0.5;
  cursor: default;
}

.play-icon {
  margin-right: 0px;
}

.polaroids img {
  width: 140px;
  border-radius: 10px;
  background: #fdf6e3;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

