body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #f8fafc;
  overflow-x: hidden;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(90deg, #16a34a, #3b82f6);
  padding: 15px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: all 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: white;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #16a34a, #3b82f6, #9333ea);
  color: white;
  animation: fadeIn 1.5s ease-in-out;
}

.hero .gif {
  width: 100px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(90deg, #16a34a, #3b82f6);
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  background: linear-gradient(90deg, #3b82f6, #9333ea);
}

.listeners {
  margin-top: 25px;
  font-size: 1.3em;
  animation: fadeInUp 2s ease;
}

/* Content Styling */
.content {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

/* Team Profiles */
.profile {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3b82f6;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #aaa;
  text-align: center;
  padding: 20px;
  margin-top: 290px;
  font-size: 0.9em;
}

footer a {
  color: #38bdf8;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  color: #9333ea;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
}

.admin-title {
  color: #ef4444; /* kräftiges Rot */
}

.promo-title {
  color: #00aaf8; /* kräftiges Rot */
}

/* Partner Grid Layout */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* links - mitte - rechts */
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Karten Styling */
.partner-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  color: #fff;
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.36s cubic-bezier(.2,.9,.3,1), box-shadow 0.36s;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo */
.partner-logo {
  max-width: 110px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  padding: 8px;
  transition: transform .3s ease;
}

/* Titel + Text */
.partner-card h3 {
  margin: 4px 0 10px;
  font-size: 1.15rem;
  color: #f8fafc;
}
.partner-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #dbeafe;
}

/* Hover-Effekt */
.partner-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}
.partner-card:hover .partner-logo {
  transform: rotate(-3deg) scale(1.06);
}

/* Platzhalter (rechts) hellere Variante) */
.placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  color: #cbd5e1;
  border: 1px dashed rgba(255,255,255,0.06);
}

.placeholder-inner {
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:center;
  justify-content:center;
}

.placeholder p { font-style:italic; font-weight:600; }
.placeholder small { font-size:0.85rem; color:#9aa6c1; }

/* Responsive: auf kleinen Bildschirmen stapele die Karten */
@media (max-width: 880px) {
  .partner-grid {
    grid-template-columns: 1fr; /* einspaltig */
  }
  .partner-card { min-height: auto; padding: 20px; }
}

.profile {
  display: flex;           /* Bild und Text nebeneinander */
  align-items: center;     /* Vertikal ausrichten */
  gap: 10px;               /* Abstand zwischen Bild und Text */
}

.profile div {
  margin-left: 0;          /* Kein zusätzlicher Abstand links */
}

.profile {
  display: flex;          /* Bild und Text nebeneinander */
  align-items: center;    /* Vertikal zentriert */
  gap: 5px;               /* Abstand Bild ↔ Text */
}

.profile img {
  display: block;         /* verhindert zusätzliche Inline-Abstände */
}

.profile div {
  margin-left: 0;         /* sicherstellen, dass kein extra Abstand links ist */
}

.profile {
  display: flex !important;       /* Bild und Text nebeneinander */
  align-items: center !important; /* Vertikal zentriert */
  gap: 5px !important;            /* Abstand Bild ↔ Text */
  justify-content: flex-start !important; /* Text links neben Bild */
}

.profile img {
  display: block !important;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #3b82f6;
}

.profile-text {
  margin: 0 !important;
  padding: 0 !important;
}

.profile-text h4,
.profile-text p {
  margin: 0 !important;
  padding: 0 !important;
}

/* Nur die Namen links neben das Bild rücken */
.profile-text h4 {
  margin: 0;             /* entfernt Standard-Abstand */
  display: inline-block; /* verhindert Block-Abstand */
  transform: translateX(-110px); /* rückt den Namen nach links ans Bild */
}

