/* =========================================================
   COMPONENTS – Buttons, Cards, Contact
   ========================================================= */

/* --- Buttons ------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  min-height: 44px;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: none;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
}

.btn:hover {
  background: var(--text);
  color: #fff;
}

.btn-primary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(110, 15, 26, 0.18);
}

.btn-pdf {
  background: rgba(246, 241, 233, 0.7);
  color: var(--accent);
  border-color: rgba(110, 15, 26, 0.55);
}

.btn-pdf:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(110, 15, 26, 0.16);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover {
  background: var(--text);
  color: #fff;
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

.btn-large {
  padding: 1rem 2.4rem;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* --- Feature Card -------------------------------------- */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  border-radius: 50%;
  color: var(--accent);
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-card h3 {
  margin-bottom: 0.6rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* --- Story Card ---------------------------------------- */
.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
}

.story-card .num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.story-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.story-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* --- Info Card (Lieferservice) ------------------------- */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius-md);
}

.info-card h3 {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.info-card li:last-child { border-bottom: 0; }

.info-card strong {
  color: var(--text);
  font-weight: 600;
}

/* --- Bestell-Grid (Lieferservice) ---------------------- */
.bestell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.bestell-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.8rem 1.5rem;
}

.bestell-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.bestell-icon svg {
  width: 100%;
  height: 100%;
}

.bestell-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.bestell-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.bestell-card p:last-child { margin-bottom: 0; }

.bestell-card a {
  color: var(--text);
  font-weight: 500;
}

.bestell-card a:hover { color: var(--accent); }

.bestell-card-prio {
  border-top: 3px solid var(--accent);
  background: var(--accent-soft);
}

.bestell-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.bestell-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}

/* --- Contact Block ------------------------------------- */
.contact-block {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.06);
}

.contact-block h2 { margin-bottom: 0.6rem; font-size: 1.5rem; color: var(--accent); font-style: italic; }

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  min-width: 0;
}
.contact-list li:last-child { border-bottom: 0; }

.contact-list li > div {
  min-width: 0;
}

.contact-list .icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
}
.contact-list .icon svg { width: 16px; height: 16px; }

.contact-list .label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-list .value {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-list a.value { color: var(--text); }
.contact-list a.value:hover { color: var(--accent-hover); }
.contact-list a.value, .contact-list .value { font-style: normal; font-variant-numeric: tabular-nums; }
