/* Allgemeine Schriftglättung */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ladeanimation Fade-Out */
#loader.loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

/* Pakete – Artikelkarte */
article {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
article:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Button Hover + Animation */
button {
  transition: all 0.3s ease;
}
button:hover {
  transform: scale(1.03);
}

/* Mobile-Menü Animation (optional in JS ergänzen) */
#mobile-menu {
  transition: max-height 0.3s ease;
  overflow: hidden;
}

/* Paketbilder */
article img {
  object-fit: cover;
  transition: transform 0.3s ease;
}
article img:hover {
  transform: scale(1.02);
}

/* Paketüberschriften */
article h2 {
  font-family: 'Georgia', serif;
  letter-spacing: 0.5px;
}

/* Preisangaben */
article p.text-sm.italic {
  color: #6b7280; /* Tailwind: text-gray-500 */
}

/* Trennlinie */
hr {
  border-color: #e5e7eb; /* Tailwind: border-gray-300 */
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Footer Links */
footer a {
  transition: color 0.3s ease;
}
footer a:hover {
  color: #1f2937; /* Tailwind: gray-800 */
}

/* Dark Mode Optimierungen */
.dark article {
  background-color: #1f2937; /* Tailwind: gray-800 */
}
.dark article h2,
.dark article ul,
.dark article p {
  color: #e5e7eb; /* Tailwind: gray-200 */
}
.dark footer {
  background-color: #111827; /* Tailwind: gray-900 */
}
