/* Blütenkraft – Starter Hosting (statische Website: HTML + CSS)
   Speicher: 10 MB – keep it lean.
   Ändern: Such nach "DUMMY" im HTML.
*/

:root {
  --brand: #9F986C;
  --brand-dark: #7F7A52;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --bg: #ffffff;
  --soft: #fff;
  --line: #e7e7df;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a { color: var(--brand-dark); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.2px;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
}
nav a:hover {
  background: var(--soft);
  color: var(--brand-dark);
}

.hero {
  padding: 2.2rem 0 1.2rem;
  background: linear-gradient(180deg, var(--soft), #fff);
  border-bottom: 1px solid var(--line);
}

.logo {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

.hero h1 {
  margin: 0.25rem 0 0.25rem;
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--brand);
}

.hero p {
  margin: 0.25rem auto 0;
  text-align: center;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
  text-decoration: none;
}
.btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn:hover {
  transform: translateY(-1px);
}

main {
  padding: 1.8rem 0 2.4rem;
}

.section {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.section:last-child {
  border-bottom: none;
}

.section h2 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
  color: var(--brand-dark);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.card {
  grid-column: span 6;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}

.card p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.list {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.price-table th, .price-table td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.price-table th {
  background: var(--soft);
  color: var(--brand-dark);
}
.price-table tr:last-child td {
  border-bottom: none;
}

.kv {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem 1rem;
  margin-top: 0.6rem;
}
.kv div:nth-child(odd) {
  color: var(--muted);
  font-weight: 700;
}
.kv div:nth-child(even) {
  color: var(--ink);
}

footer {
  padding: 1.5rem 0 2rem;
  background: var(--soft);
  border-top: 1px solid var(--line);
}
footer .small {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .card { grid-column: span 12; }
  .kv { grid-template-columns: 1fr; }
}
