/* ------------------------------ */
/* Header / Hero Section          */
/* ------------------------------ */
.smp-header {
  position: relative;
  height: 700px;
  background-size: 10000px 700px;  /* volle Breite, Höhe 700px */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  animation: headerFloat 15s ease-in-out infinite alternate;
      top: 20px;
      
}


.smp-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(34, 197, 94, 0.2),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 1;
}

.smp-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.8s ease forwards;
}

.smp-header-content h1 {
  font-size: 3.2rem;
  color: #4ade80;
  margin-bottom: 1rem;
  text-shadow: 0 0 25px rgba(74, 222, 128, 0.7);
  animation: titleGlow 3s infinite alternate, titleFloat 6s ease-in-out infinite;
}

.smp-header-content p {
  font-size: 1.2rem;
  color: #d4d4d4;
  opacity: 0.9;
  animation: fadeIn 2s ease forwards 0.5s;
}

/* ------------------------------ */
/* Info-Bereich                   */
/* ------------------------------ */
.smp-info {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1.5s ease forwards 0.4s;
}

.smp-info h2 {
  font-size: 2.2rem;
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
  margin-bottom: 1rem;
  position: relative;
}

.smp-info h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4ade80, transparent);
  animation: underlineGlow 2.5s infinite;
}

.smp-info p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 2s ease forwards 0.6s;
}

/* Features-Liste */
.smp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  padding: 0;
  list-style: none;
}

.smp-features li {
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 1.2rem;
  border-radius: 10px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease forwards;
}

.smp-features li:hover {
  background: rgba(34, 197, 94, 0.18);
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 25px rgba(34, 222, 128, 0.5);
}

/* ------------------------------ */
/* Galerie                        */
/* ------------------------------ */
.smp-gallery {
  background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 2px solid rgba(74, 222, 128, 0.3);
  border-bottom: 2px solid rgba(74, 222, 128, 0.3);
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.8s;
}

.smp-gallery h2 {
  color: #4ade80;
  font-size: 2.1rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: scale(0.9);
  animation: popIn 1s ease forwards;
}

.gallery-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(34, 222, 128, 0.6);
}

/* Footer */
.smp-footer {
  background: #0a0a0a;
  text-align: center;
  padding: 1.5rem;
  color: #777;
  border-top: 2px solid rgba(34, 222, 128, 0.3);
  font-size: 0.95rem;
  animation: fadeIn 1.5s ease forwards 1s;
}

/* ------------------------------ */
/* Keyframes / Animationen        */
/* ------------------------------ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 20px rgba(74, 222, 128, 0.5); }
  100% { text-shadow: 0 0 45px rgba(74, 222, 128, 1); }
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes headerFloat {
  0%, 100% { background-position: center top; }
  50% { background-position: center 10%; }
}

@keyframes popIn {
  0% { opacity: 0; transform: scale(0.85) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes underlineGlow {
  0%,100% { opacity: 0.5; width: 50%; }
  50% { opacity: 1; width: 70%; }
}
