@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes backgroundShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

:root {
  --color-accent: #00ff88;
  --color-primary: #1a2c1f;
  --color-secondary: #8dab92;
  --color-bg1: #0c2910;
  --color-bg2: #236330;
  --color-bg3: #1e3e24;
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text-light: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--color-bg1), var(--color-bg2), var(--color-bg3));
  background-size: 400% 400%;
  animation: backgroundShift 30s ease infinite;
  color: var(--text-light);
  line-height: 1.8;
  animation: fadeIn 1s ease;
  min-height: 100vh;
  font-size: 1.1rem;
  padding-bottom: 160px;
  margin: 0;
  background: #121212;
  color: #eee;
}

header {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  animation: fadeIn 1s ease;
}

header img {
  height: 90px;
  border-radius: 14px;
  transition: transform 0.3s ease;
}
header img:hover {
  transform: rotate(5deg) scale(1.07);
}

header h1 {
  font-size: 2.2rem;
  color: var(--color-accent);
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  padding: 10px 18px;
  transition: all 0.3s ease;
  border-radius: 30px;
}

nav a:hover {
  background: var(--color-accent);
  color: #111;
  box-shadow: 0 0 15px var(--color-accent);
}

h2 {
  font-size: 1.8rem;
  margin: 40px 20px 15px;
  color: var(--color-accent);
  text-align: center;
}

iframe {
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0,255,231,0.2);
  margin: 35px auto;
  width: 95%;
  height: 120px;
  display: block;
}

.iframe-wrapper.wunschbox iframe,
.iframe-player iframe {
  border: none !important;
  box-shadow: none !important;
}

footer {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 30px;
  font-size: 0.95rem;
  margin-top: 50px;
  border-top: 1px solid var(--glass-border);
  color: #ccc;
}

footer .footer-link {
  color: var(--color-accent);
  text-decoration: none;
  margin-left: 10px;
  transition: color 0.3s ease;
}

footer .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  .iframe-wrapper iframe,
  .iframe-player iframe {
    width: 100% !important;
    height: 500px !important;
  }
}

@media (max-width: 768px) {
  header img {
    height: 70px;
  }
  header h1 {
    font-size: 1.6rem;
  }
  nav {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  nav a {
    width: 100%;
    text-align: center;
    background: var(--glass-bg);
  }
  .iframe-wrapper iframe,
  .iframe-player iframe {
    width: 100% !important;
    height: 350px !important;
  }
  body {
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  header img {
    height: 55px;
  }
  header h1 {
    font-size: 1.3rem;
  }
  .iframe-wrapper iframe,
  .iframe-player iframe {
    height: 250px !important;
  }
  nav a {
    font-size: 0.95rem;
  }
  body {
    padding-bottom: 100px;
  }
}

.musikbot-container {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  padding: 0 20px;
}

.musikbot-button {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  border: none;
  border-radius: 50px;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
  transition: all 0.35s ease-in-out;
  overflow: hidden;
  z-index: 1;
}

.musikbot-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.7);
}

.musikbot-button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, #00ffe7, #4facfe, #00ffe7);
  z-index: 0;
  opacity: 0.2;
  transition: left 0.4s ease;
  filter: blur(12px);
}

.musikbot-button:hover::before {
  left: 0;
}

.musikbot-button span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

nav .musikbot-nav {
  padding: 6px 14px;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #111;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

nav .musikbot-nav:hover {
  color: #fff;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
  transform: scale(1.05);
}

nav .musikbot-nav i {
  font-size: 1rem;
}

footer {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 25px;
  font-size: 0.85rem;
  margin-top: 40px;
  border-top: 1px solid var(--glass-border);
  color: #ccc;
}

.impressum-box {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 30px;
  color: var(--text-light);
  animation: fadeIn 1.2s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.impressum-box h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: var(--color-accent);
}

.impressum-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1rem;
  color: #ddd;
}

.impressum-content strong {
  color: var(--color-accent);
}

body {
  padding-bottom: 160px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: #eee;
}

.fixed-player {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 140px;
  z-index: 9999;
  background: rgba(34, 34, 34, 0.98);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

.fixed-player iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 25px 25px 0 0;
  background: transparent;
}

@media (max-width: 768px) {
  .fixed-player {
    width: 100vw;
    height: 90px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.6);
  }

  .fixed-player iframe {
    height: 100%;
    width: 100%;
    border-radius: 0;
  }
}

.site-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
}

#menu-toggle {
  display: none;
}

nav {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .site-header {
    display: none;
  }
  #menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 10001;
  }
  nav {
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    padding: 80px 20px 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
  }
  nav.nav-open {
    transform: translateX(0);
  }
  nav a {
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--glass-border);
  }
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }
}

.team-gruen-banner {
  position: relative;
  max-width: 1100px;
  margin: 60px auto;
  background: linear-gradient(135deg, #a8d5ba 0%, #4a7c59 100%);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 50px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-gruen-banner:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 25px 60px rgba(42, 97, 55, 0.6);
}

.team-gruen-banner img {
  width: 350px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(34, 73, 34, 0.45);
  flex-shrink: 0;
  animation: none;
  filter: drop-shadow(0 6px 10px rgba(25, 60, 30, 0.4));
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.banner-text {
  flex: 1;
  color: #f0f7f4;
  font-family: 'Roboto', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.banner-text h2 {
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
}

.banner-text p {
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 600px;
  color: #d9ead3;
}

@media (max-width: 768px) {
  .team-gruen-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }
  .team-gruen-banner img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .banner-text h2 {
    font-size: 1.8rem;
  }
  .banner-text p {
    font-size: 1rem;
    max-width: 100%;
  }
}

.future-banner {
  position: relative;
  max-width: 1100px;
  margin: 60px auto;
  background: linear-gradient(
    135deg,
    rgba(60, 55, 120, 0.8),
    rgba(100, 95, 160, 0.75),
    rgba(80, 80, 140, 0.75)
  );
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 50px;
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.12),
    0 4px 15px rgba(0, 0, 0, 0.15);
}
.future-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.12),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.12),
      transparent 60%
    );
}
.future-banner:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 35px rgba(255, 255, 255, 0.18),
    0 6px 18px rgba(0, 0, 0, 0.15);
}
.future-banner img {
  width: 350px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  flex-shrink: 0;
  animation: none;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4)) brightness(0.95);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.future-banner:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.2);
}
.future-banner .banner-text {
  flex: 1;
  color: #f0f7f4;
  font-family: 'Roboto', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.future-banner .banner-text h2 {
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--color-accent), #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.future-banner .banner-text p {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 600px;
  color: #ddd;
}
@media (max-width: 768px) {
  .future-banner {
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 20px;
    gap: 20px;
  }
  .future-banner img {
    filter: brightness(1.2);
    width: 100%;
    max-width: 300px;
  }
  .future-banner .banner-text h2 {
    font-size: 1.8rem;
  }
  .future-banner .banner-text p {
    font-size: 1rem;
    max-width: 100%;
  }
}
.future-banner:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.18);
}
.future-banner img {
  width: 350px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  flex-shrink: 0;
  animation: none;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4)) brightness(0.95);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.future-banner:hover img {
  transform: scale(1.05);
  filter: brightness(1.05) saturate(1.2);
}
.future-banner .banner-text {
  flex: 1;
  color: #f0f7f4;
  font-family: 'Roboto', sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.future-banner .banner-text h2 {
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--color-accent), #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.future-banner .banner-text p {
  font-size: 1.15rem;
  line-height: 1.65;
  max-width: 600px;
  color: #ddd;
}
.partner-section {
    padding: 80px 20px;
    text-align: center;
    background: #121212;
    color: #fff;
}

.partner-section h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #00cc66;
    text-shadow: 0 0 10px rgba(0, 204, 102, 0.6);
}

.partner-intro {
    font-size: 1.2em;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 50px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.partner-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(0, 204, 102, 0.5));
}

.partner-card h3 {
    color: #00cc66;
    margin-bottom: 8px;
}

.partner-card p {
    color: #aaa;
    font-size: 0.95em;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0, 204, 102, 0.4);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.no-partner {
  background: #1a1a1a;
  padding: 60px 20px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  max-width: 600px;
  margin: 50px auto;
}

.no-partner h2 {
  font-size: 2em;
  color: #00cc66;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(0, 204, 102, 0.5);
}

.no-partner p {
  font-size: 1.1em;
  color: #ccc;
}