/* -------------------------------------------------------------
   GLOBAL RESET & BASICS
------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f9fafb; /* ehemals bg-gray-50 */
  color: #1f2937;      /* gray-800 */
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* -------------------------------------------------------------
   TYPOGRAPHIE
------------------------------------------------------------- */

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 2.3rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

.text-muted {
  color: #6b7280;
}

.text-small {
  font-size: .875rem;
}

/* -------------------------------------------------------------
   LAYOUT
------------------------------------------------------------- */

.container {
  max-width: 1200px; /* entspricht Tailwind max-w-6xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -------------------------------------------------------------
   COLORS / BOXES
------------------------------------------------------------- */
.bg-white {
  background: white;
}

.bg-warning {
  background: #fef08a;
  color: #854d0e;
}

.bg-green-light {
  background: #f0fdf4;
}

.bg-green {
  background: #16a34a;
}

/* -------------------------------------------------------------
   HEADER
------------------------------------------------------------- */

.header {
  background: white;
  padding: 1.5rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav {
  display: none;
}
@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 1.5rem;
  }
  .nav a:hover {
    color: #16a34a;
  }
}

/* -------------------------------------------------------------
   BUTTONS
------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: .5rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: .15s ease;
}

.btn-primary {
  background: #16a34a;
  color: white;
}
.btn-primary:hover {
  background: #15803d;
}

.btn-outline {
  border: 2px solid #16a34a;
  color: #16a34a;
}
.btn-outline:hover {
  background: #f0fdf4;
}

/* -------------------------------------------------------------
   FORMULARE
------------------------------------------------------------- */

.input, select, textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  padding: .5rem .75rem;
  border-radius: .375rem;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

button[type=submit] {
  width: 100%;
  background: #16a34a;
  color: white;
  padding: .75rem;
  border: none;
  border-radius: .5rem;
  cursor: pointer;
  transition: .15s ease;
}
button[type=submit]:hover {
  background: #15803d;
}

/* -------------------------------------------------------------
   CARDS
------------------------------------------------------------- */

.card {
  background: white;
  padding: 1.5rem;
  border-radius: .75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* -------------------------------------------------------------
   LISTEN / UL
------------------------------------------------------------- */

ul {
  list-style: none;
  padding-left: 0;
  margin-top: .75rem;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */

.footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
