/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BASISLAYOUT === */
body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #f4f4f4;
  color: #000;
  text-align: center;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #333333;

}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #333333;
  margin-bottom: 30px;
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 40px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 20px;
}


/* === HEADER === */
.site-header {
  background-color: #544541;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 60px;
  font-family: 'Bebas Neue', sans-serif;
}

.nav-list li a {
  text-decoration: none;
  color: #DBCDAF;
  font-weight: bold;
  font-size: 1.6rem;
}

.nav-list li a:hover {
  text-decoration: underline;
}

/* === HERO-SLIDESHOW === */
.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
 
}

.hero-bg,
.bg1,
.bg2 {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: center / cover no-repeat;
  transition: opacity 2s ease-in-out;
  z-index: 0;
  
}

.bg2 { opacity: 0; }

.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  
}

.hero-logo {
  width: 40vw;
  min-width: 500px;
  height: auto;
}

/* === MAIN === */
main {
  background-color: #DBCDAF;
  padding: 20px 0px;
  padding-bottom: 0px;
  padding-top: 30px;
  
}

/* === VIDEO === */
.video-container {
  max-width: 800px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  
}


.video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  
}

/* === TEAM === */
.team-photos {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.team-member {
  position: relative;
  width: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  
}

.team-member:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  text-align: center;
}

.team-member:hover .overlay {
  opacity: 1;
}

.overlay a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: text-shadow 0.3s ease;
}

/* === EPISODEN === */
.episodes {
  background-color: #dbcdaf;
  color: black;
  padding-bottom: 80px;
}

.episodes-header {
  max-width: 1200px;
  margin: 0 auto 40px;
}

.episode-icon {
  width: 40px;
  margin-bottom: 10px;
}

.cover-image img {
  width: 100%;
  max-width: 750px;
  margin: 40px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.cover-image img:hover {
  transform: scale(1.02);
}

.episode-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.episode-thumbs img {
  width: 120px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.episode-thumbs img:hover {
  transform: scale(1.05);
}

/* === FOOTER === */
.site-footer {
  background-color: #4a3e38;
  color: #e7ddc4;
  text-align: center;
  padding: 40px 20px 2px;
  font-size: 0.95rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  font-weight: bold;
  
}

.footer-logo img {
  height: 30px;
  margin-bottom: 8px;
}

.social-media {
  margin-bottom: 15px;
}

.social-media span {
  margin-right: 1px;
  font-weight: 500;
}

.social-media a img {
  height: 24px;
  margin: 0 2px;
  vertical-align: middle;
  transition: transform 0.2s;
}

.social-media a img:hover {
  transform: scale(1.2);
}

.footer-links a {
  color: #e7ddc4;
  text-decoration: underline;
  margin: 0 5px;
}
.email a{
    
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #e7ddc4;
    
  }
  .email{
  margin-bottom: 15px;
}
.email-datenschutz a{
    
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #333333;
    
  }
  .email-datenschutz{
  margin-bottom: 15px;
}
  .echofooter{
    color: #e7ddc4;
  }
  .datenschutz h2{
    margin-bottom: 30px;
    

  }
  .stand-datenschutz {
    padding: 10px;
    margin-bottom: 0px;
    
  
  }


@media (max-width: 768px) {

  /* === HEADER === */
  .site-header {
    padding: 20px 0;
  }

  .logo {
    display: none;
  }

  .header-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20vw; /* weiter auseinander */
  }
  

  .nav-list li a {
    font-size: 5vw;
    
  }

  /* === HERO === */
  .hero {
    height: 400px;
    margin-top: 0;
  }

  .hero-logo {
    width: 80vw;
    min-width: unset;
  }

  /* === TEXT UND TITEL === */
  h2 {
    font-size: 8vw;
  }

  h3 {
    font-size: 4.5vw;
    margin-left: 15px;
    margin-right: 15px;
  }

  p {
    font-size: 1rem;
    padding: 0 15px;
  }

  /* === VIDEO === */
  .video-container {
    width: 90%;
    max-width: 100%;
  }

  /* === TEAM === */
 
 .team-photos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
  }

  /* 2. Jedes Team-Member als Column-Container: Bild oben, Text unten */
  .team-member { 
    flex-direction: column;
    align-items: center;
    width: 40vw;
  }

  /* 3. Bild auf mobile-freundliche Breite skalieren */
  .team-member img {
  
    height: auto;
    border-radius: 8px;
  }

  /* 4. Name ganz einfach als Text unter dem Bild */
  .team-member .overlay {
    position: static;     /* kein Overlay mehr */
    margin-top: 6px;      /* Abstand Bild ↔ Name */
    background: none;     /* kein Hintergrund */
    padding: 0;
   
    font-size: 3vw;
    font-weight: 600;
    color: #333;          /* dunkle Textfarbe */
    text-align: center;
    white-space: nowrap;  /* verhindert Umbruch */
     text-decoration: underline;
  }
    .team-member .overlay {
    opacity: 1 !important;
    visibility: visible !important;
    position: static;      /* ganz normal im Fluss, unter dem Bild */
    margin-top: 6px;       /* Abstand Bild ↔ Text */
    
  }
  .overlay a {
    color:#333333
   }
   

  /* Hover/Active-Transform überschreiben */
  .team-member:hover img,
  .team-member:active img {
    transform: none !important;
  }



  /* === EPISODEN === */
  .episodes {
    padding: 0px 10px;
    padding-bottom: 60px;
  }

  .episode-thumbs {
    gap: 10px;
    justify-content: center;
  }

  .episode-thumbs img {
    width: 90px;
  }

  .cover-image img {
    margin: 20px auto;
  }
  /* === FOOTER === */
  .footer-logo {
  
    gap: 6px;
  }

  .footer-logo h2 {
    font-size: 1.3rem;
  }

  .footer-logo img {
    height: 24px;
    margin-bottom: 6px;
  }

  .footer-links p {
    font-size: 0.8rem;
    padding: 0 10px;
  }

  .social-media {
    margin-bottom: 15px;
  }

  .social-media a img {
    height: 20px;
  }
  
}

  



