/* Allgemeine Stile */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

/* Logo Hintergrund */
#logo-section {
  position: relative;
  height: 100vh; /* Auf 100vh reduziert */
  background-color: #0D1B2A;
  text-align: center;
  color: #F2F2F2;
}

.background-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  opacity: 1; /* Faded Logo */
  z-index: 0;
}

.logo-overlay {
  background: rgba(13, 27, 42, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-center {
  position: relative;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}

.display-4 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
}

.lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Video */
.video-container iframe {
  width: 75%;
  height: 75vh;
  margin: 0 auto;
  display: block;
}

/* Angebot */
#offer-list {
  list-style: none;
  padding: 0;
}

#offer-list li {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.2s ease-in-out;
  color: #F2F2F2; /* Einheitliche Farbe */
}

/* Farbblöcke */
.section-blue {
  background-color: #0D1B2A;
  color: #F2F2F2;
  padding: 50px 20px;
  text-align: center;
}

.section-cream {
  background-color: #F2F2F2;
  color: #1A1A1D;
  padding: 50px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .section-blue,
  .section-cream {
    padding: 30px 10px; /* Kleinere Abstände auf kleinen Bildschirmen */
  }
}

/* Button Gold */
.btn-gold {
  background-color: #E2B448;
  color: #1A1A1D;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-gold:hover {
  background-color: #C87F38;
  color: #F2F2F2;
}

/* Footer */
footer a {
  text-decoration: none;
  color: #F2F2F2;
  transition: color 0.3s;
}

footer a:hover {
  text-decoration: underline;
  color: #C87F38;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
}

.btn-cookie {
  background: #E2B448;
  color: #1A1A1D;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-cookie.reject {
  background: #C87F38;
  color: white;
}

.btn-cookie:hover {
  background: #C87F38;
  color: white;
}
/* Instagram Logo */
.instagram-logo {
  display: inline-block; /* Logo bleibt inline */
  width: 30px; /* Standardgröße */
  height: 30px; /* Gleiche Höhe für ein Quadrat */
  background: url('instagram-logo.png') no-repeat center center; /* Logo-Bild */
  background-size: contain; /* Logo skalieren */
  transition: transform 0.3s ease, filter 0.3s ease; /* Smooth Animation */
}

/* Hover-Effekt */
.instagram-logo:hover {
  transform: scale(1.2); /* Logo leicht vergrößern */
  filter: brightness(1.2); /* Logo leicht aufhellen */
}

/* Kontakt-Link Stil */
.contact-link {
  color: #E2B448; /* Gold-Gelb */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-link:hover {
  color: #C87F38; /* Orangebraun */
  text-decoration: underline;
}

    /* Testimonials */
    .testimonial {
      border: 1px solid #0D1B2A;
      border-radius: 10px;
      padding: 20px;
      margin: 10px;
      background-color: #F2F2F2;
      color: black;
    }

    .testimonial .stars {
      color: #E2B448;
    }

    /* Erklärung-Box */
.explanation-box {
  position: absolute;
  background: #E2B448; /* Gold-Gelb */
  color: #1A1A1D; /* Dunkelgrau-Schwarz */
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  z-index: 1000;
  font-size: 1rem;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}

.explanation-box::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 15px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #E2B448 transparent;
}

/* Allgemeines Styling für das Formular */
#mc_embed_signup {
  background: #F2F2F2;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  color: #0D1B2A;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font: 14px Helvetica, Arial, sans-serif;
  width: 100%;
  max-width: 600px;
}

#mc_embed_signup h2 {
  text-align: center;
  color: #0D1B2A;
  margin-bottom: 20px;
}

.mc-field-group label {
  display: block;
  margin-bottom: 5px;
  color: #0D1B2A;
  font-weight: bold;
}

.mc-field-group input {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #0D1B2A;
  border-radius: 5px;
  font-size: 14px;
}

.button {
  display: block;
  width: 100%;
  background: #0073e6;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background: #005bb5;
}