/* Custom styles for Hinweishelden */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom transitions and hover states */
.transition-all-300 {
    transition: all 0.3s ease-in-out;
}

/* Detail summaries style */
details summary::-webkit-details-marker {
  display:none;
}

details[open] summary span {
  transform: rotate(180deg);
}

/* Accent for buttons */
.btn-primary {
  background-color: #0274be;
  @apply text-white px-6 py-2 rounded-md transition font-semibold hover:bg-[#025a94];
}

/* Section padding */
.section-spacing {
  @apply py-16 md:py-24;
}
