* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

/* ===== Desktop Header ===== */
.simple-header {
  background-color: #ffffff;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: #8e44ad;
}

/* ===== Mobile Defaults ===== */
.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Mobile Navigation ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 70%;
  background: #fff;
  color: #333;
  padding: 2rem;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  z-index: 9999;
}

.mobile-nav ul {
  list-style: none;
  padding: 80px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 1.3rem;
  color: #444;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #8e44ad;
}

.close-mobile {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9998;
}

/* ===== Mobile Breakpoint ===== */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .simple-header {
    padding: 1rem 1.5rem;
  }
}

/* ===== Active Mobile Menu ===== */
.mobile-nav.active {
  right: 0;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}


.footer {
  background-color: #2c2c2c;
  color: #eee;
  padding: 3rem 2rem 1.5rem;
  font-size: 0.95rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
}
.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li {
  margin-bottom: 0.5rem;
}
.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #8e44ad;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}


/* ----------------------------------------- */
/*           BLOG – COMING SOON PAGE         */
/* ----------------------------------------- */

.blog-coming-soon {
  min-height: 80vh;
  background: linear-gradient(to bottom, #f5f7fa, #ece9f6);
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ddd;
}

.blog-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 3.5rem 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.blog-wrapper h1 {
  font-size: 2.4rem;
  color: #2c3e50;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blog-subline {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.coming-soon-badge {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8e44ad, #5e3375);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.blog-note {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.blog-back-link {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2c3e50;
  border-bottom: 1px solid #2c3e50;
  padding-bottom: 0.2rem;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.blog-back-link:hover {
  opacity: 0.7;
  border-color: #8e44ad;
}

/* ------------ Mobile Optimierung ------------ */

@media (max-width: 768px) {
  .blog-coming-soon {
    padding: 4rem 1.5rem;
  }

  .blog-wrapper {
    padding: 2.8rem 2rem;
    border-radius: 14px;
  }

  .blog-wrapper h1 {
    font-size: 2rem;
  }

  .blog-subline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .coming-soon-badge {
    font-size: 0.95rem;
    padding: 0.7rem 1.6rem;
    margin-bottom: 1.5rem;
  }

  .blog-note {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-coming-soon {
    padding: 3rem 1.2rem;
  }

  .blog-wrapper {
    padding: 2.4rem 1.6rem;
  }

  .blog-wrapper h1 {
    font-size: 1.7rem;
  }

  .blog-subline,
  .blog-note {
    font-size: 0.95rem;
  }

  .coming-soon-badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
  }
}

.section-final {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #eee;
}
.final-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.section-final h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}
.section-final p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.kontakt-button {
  display: inline-block;
  margin-top: 2rem;
  background-color: #8e44ad;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.kontakt-button:hover {
  background-color: #732d91;
}