/* style.css */

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #111;
  color: #fff;
  overflow-x: hidden; /* verhindert horizontales Scrollen */
}

h1, h2 {
  margin: 0 0 20px;
}

.hero {
  background-image: url('../img/Foto_JustinBockey_250515_205452.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 8px;
  text-align: left;
  align-items: flex-start;
  justify-content: center;
  max-width: 600px;
  margin-left: 5%;
}


.section {
  padding: 60px 20px;
  text-align: center;
}

.section.dark {
  background-color: #222;
  color: #fff;
}

.section.light {
  background-color: #f4f4f4;
  color: #111;
}

.topics {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.topics li {
  margin: 10px 0;
}


.topics-section {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.8;
}

.topics-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.topics-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

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

.topics-section ul.topics li {
  margin-bottom: 25px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 300;
}

.about-section {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.8;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 30px;
}

.portrait {
  max-width: 300px;
  margin-top: 20px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.strategy-block p {
  text-align: justify;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

blockquote {
  font-style: italic;
  margin: 40px auto;
  max-width: 600px;
  color: #999;
  font-size: 1.5em;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.7em;
  color: #ccc;
}

.media-text-link:hover {
  color: #ddd;
}


.media-text-link:hover {
  background-color: #f0f0f0;
  color: #000;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.media-logos img {
  max-height: 60px;
  background-color: #fff;     /* weißer Hintergrund */
  padding: 10px;              /* etwas Innenabstand */
  border-radius: 6px;         /* weiche Kanten */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* dezenter Schatten für Lesbarkeit */
  filter: grayscale(30%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.media-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.custom-video {
  width: 100%;
  max-width: 800px; /* oder wie breit es maximal sein soll */
  height: auto;
  border-radius: 2%;
  display: block;
  margin: 0 auto;
}

.appearance-section {
  max-width: 1000px;
  margin: 0 auto;
}

.table-wrapper {
  overflow-x: auto;
}

.appearances {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
  margin-top: 30px;
}

.appearances th,
.appearances td {
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.appearances thead {
  background-color: #f0f0f0;
  color: #111;
}

.appearances tbody tr:nth-child(even) {
  background-color: #fafafa;
}


.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1em;
}

.contact-form button {
  padding: 12px;
  background-color: #fff;
  color: #111;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #ddd;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #fff;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #ddd;
}

.email-link {
  color: silver;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #777;
}
