/* 🌍 Basis-Layout & Schrift */
body.neuseeland {
  background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
  color: #e4f82f;
  font-family: 'Orbitron', sans-serif;
  margin: 0;
  padding: 0;
}

/* 🧭 Header */
.neuseeland-header {
  background-color: #004d40;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.neuseeland-header h1 {
  font-size: 2.5em;
  margin: 0;
}

.neuseeland-header .subtitle {
  font-style: italic;
  margin-top: 10px;
  font-size: 1.2em;
  color: #b2dfdb;
}

/* 🌿 Grafiken im Header */
.neuseeland-graphics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.neuseeland-logo {
  width: 80px;
  margin-top: 10px;
}

.neuseeland-logo:last-child {
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* 🌿 Grafiken im Header */
.neuseeland-graphics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.neuseeland-logo {
  width: 120px;
  margin-top: 10px;
}

/* 🧭 Navigation */
.neuseeland-nav {
  background-color: #004d40;
  background-image: url('../img/neuseeland/Maori_Korupae_Muster.png'); /* dezentes SVG oder PNG-Muster */
  background-repeat: repeat;
  background-size: contain;
  padding: 10px 0;
  text-align: center;
}

.neuseeland-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 20px;
}

.neuseeland-nav a {
  color: #ffd700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.neuseeland-nav a:hover {
  background-color: #00695c;
  color: #b2dfdb;
}

.neuseeland-nav li a.active {
  border: 2px solid #00BFFF;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.6);
  background-color: #00332f;
  transform: scale(1.05);
}

.neuseeland-nav img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
  margin-right: 6px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .neuseeland-nav ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* Grundstruktur */
.neuseeland-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.neuseeland-nav li {
  position: relative;
  display: inline-block;
}

/* Hauptlink */
.neuseeland-nav a {
  color: #ffcc00;
  text-decoration: none;
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

/* Dropdown-Menü */
.dropdown-menu {
  position: absolute;
  top: 100%; /* direkt unter dem Hauptlink */
  left: 0;
  background-color: #004d00;
  padding: 0;
  margin: 0;
  border-radius: 0;
  display: none;
  min-width: 220px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #ffcc00;
  text-decoration: none;
  white-space: nowrap;
}

/* Hover-Effekt */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Optional: Kein Abstand zwischen Hauptlink und Dropdown */
.dropdown-menu li {
  margin: 0;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* 🏆 Trophäen-Sektion */
.neuseeland-trophaeen {
  background-color: rgba(0, 77, 64, 0.6);
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  color: #ffcc00;
}

.neuseeland-trophaeen h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #e4f82f;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 10px;
}

.trophy-category {
  color: #e4f82f;
  font-size: 1.4em;
  margin-top: 40px;
  text-align: center;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 10px;
}

/* 🏅 Trophäenliste */
.neuseeland-trophaeen ul {
  list-style-type: "🏅 ";
  padding-left: 1.2em;
  margin-bottom: 30px;
}

.neuseeland-trophaeen ul li {
  margin-bottom: 8px;
}

/* 📖 Zitat am Ende */
.neuseeland-trophaeen .prolog-text {
  background-color: #004d40;
  color: #ffcc00;
  font-style: italic;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

/* 🖼️ Trophäenvitrine */
.vitrine {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #002b1f;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* 🏆 Einzelne Trophäe */
.trophy {
  width: 120px;
  text-align: center;
  background-color: #004d40;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
  transition: transform 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.trophy:nth-child(1) { animation-delay: 0.1s; }
.trophy:nth-child(2) { animation-delay: 0.2s; }
.trophy:nth-child(3) { animation-delay: 0.3s; }
.trophy:nth-child(4) { animation-delay: 0.4s; }
.trophy:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trophy:hover {
  transform: scale(1.05);
}

/* 🖼️ Trophäenbild */
.trophy img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* 📅 Jahr */
.trophy span {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #ffcc00;
}

/* 💬 Tooltip */
.trophy::after {
  content: attr(title);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #ffcc00;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-size: 0.9em;
  z-index: 10;
}

.trophy:hover::after {
  opacity: 1;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .vitrine {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .trophy {
    width: 80%;
  }

  .neuseeland-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

.neuseeland-footer {
  background-color: #004d40;
  color: #ffcc00;
  text-align: center;
  padding: 20px;
  font-size: 0.95em;
  border-top: 2px solid #00695c;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.neuseeland-footer p {
  margin: 0;
  font-style: italic;
  letter-spacing: 0.5px;
}
