/*
Theme Name: Podcastbude
Author: Dein Name
Version: 1.0
Description: Ein individuelles WordPress-Theme für Podcastbude.
*/

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
 background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: #00000085;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5em;
  font-weight: bold;
  font-family: 'Cursive', sans-serif;
}

.content-block {
  background: #f7f7f73b;
  padding: 60px 20px;
  text-align: center;
}

.content-block h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #111;
}

.content-block p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #444;
}

.services {
  background: #ffffff85;
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service {
  position: relative;

  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1em;
  transition: background 0.3s;
}

.service:hover {
  /*background: #333;*/
}

.service .waveform {
  position: absolute;
  pointer-events: none;
}
.about {
  background: #eeeeee85;
  padding: 60px 20px;
  text-align: center;
}

.about img {
  max-width: 300px;
  margin-top: 20px;
}
.swiper-container.partner-slider{
	max-width: 900px;
  	overflow: hidden;
  	margin: auto;
}
.partners {
  padding: 60px 20px;
  background: #ffffff85;
  text-align: center;
}

.partners h2 {
  font-size: 2em;
  margin-bottom: 40px;
}
.partner-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partner {
  text-align: center;
  opacity: 0.8;
  transition: 0.3s;
}
.partner:hover {
  opacity: 1;
}
.partner img {
  display: block;
  margin: 0 auto;
}
.swiper-slide img {
  max-height: 60px;
  opacity: 0.8;
  transition: 0.3s;
}

.swiper-slide img:hover {
  opacity: 1;
}

.contact {
  background: #00000085;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
}