/* ==============================================
   ZMB.DE REDESIGN - Style wie wirzahlendeinbussgeld.de
   ============================================== */

:root {
  --zmb-dark: #1e2a3a;
  --zmb-darker: #151f2b;
  --zmb-orange: #e67e22;
  --zmb-orange-hover: #d35400;
  --zmb-light: #f8f9fa;
  --zmb-text: #333;
  --zmb-muted: #6c757d;
  --zmb-border: #dee2e6;
  --zmb-success: #27ae60;
  --zmb-white: #ffffff;
}

/* ---- BODY ---- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--zmb-text);
  background: var(--zmb-light);
}
/* ---- HERO BANNER DARK BACKGROUND ---- */
.container-banner.full-width {
  background: linear-gradient(135deg, var(--zmb-dark) 0%, var(--zmb-darker) 100%) !important;
  padding: 3rem 0 2rem;
  position: relative;
}

.container-banner.full-width * {
  color: var(--zmb-white);
}

.container-banner .hero-highlight {
  color: var(--zmb-orange) !important;
}


/* ---- HEADER ---- */
.container-header,
header.header {
  background: var(--zmb-dark) !important;
  color: #fff !important;
  padding: 0.5rem 0 !important;
  border-bottom: 3px solid var(--zmb-orange);
}

header a,
.container-header a {
  color: #fff !important;
  text-decoration: none !important;
}

.site-description {
  font-size: 0 !important;
}
.site-description::after {
  content: "Wir uebernehmen Ihr Bussgeld - schnell & professionell!";
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: block;
}

/* ---- NAVIGATION ---- */
.container-header nav,
.container-header .mod-menu {
  background: var(--zmb-darker) !important;
}

.container-header nav li a,
.container-header .mod-menu a {
  color: rgba(255,255,255,0.85) !important;
  padding: 0.75rem 1rem !important;
  display: block;
  transition: all 0.2s;
  font-weight: 500;
  text-decoration: none !important;
  font-size: 0.95rem;
}

.container-header nav li a:hover,
.container-header .mod-menu a:hover,
.container-header nav li.active > a,
.container-header nav li.current > a {
  background: var(--zmb-orange) !important;
  color: #fff !important;
}

.container-header nav ul ul,
.container-header .mod-menu ul ul {
  background: var(--zmb-dark) !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 0 8px 8px;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.container-header nav ul ul a {
  padding: 0.5rem 1rem !important;
  font-size: 0.9rem !important;
}

/* ---- HERO SECTION ---- */
.hero-zmb {
  background: linear-gradient(135deg, var(--zmb-dark) 0%, #2c3e50 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 0;
  margin-bottom: 2rem;
}

.hero-zmb h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-zmb .hero-highlight {
  color: var(--zmb-orange);
}

.hero-zmb .hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

.hero-zmb .hero-cta {
  display: inline-block;
  background: var(--zmb-success);
  color: #fff !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.hero-zmb .hero-cta:hover {
  background: #219a52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39,174,96,0.4);
}

.hero-zmb .hero-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
}

.trust-badge .badge-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--zmb-orange);
  display: block;
}

.trust-badge .badge-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ---- FEATURE CARDS ---- */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--zmb-white);
  border: 2px solid var(--zmb-border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--zmb-orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--zmb-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--zmb-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.feature-card a {
  color: var(--zmb-orange) !important;
  font-weight: 600;
  text-decoration: none !important;
}

.feature-card a:hover {
  color: var(--zmb-orange-hover) !important;
}

@media (max-width: 768px) {
  .feature-cards { grid-template-columns: 1fr; }
  .hero-zmb h2 { font-size: 1.8rem; }
  .trust-badges { gap: 1.5rem; }
}

/* ---- ARTIKEL LAYOUT ---- */
.blog-featured .item-content,
.blog .item-content,
.com-content-category-blog .item-content {
  background: var(--zmb-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--zmb-border);
}

/* Meta-Infos komplett ausblenden */
.article-info,
.article-info-term,
dd.createdby,
dd.category-name,
dd.published,
dd.hits,
.item-content .article-info,
dl.article-info {
  display: none !important;
}

/* Artikel Headings */
.item-content h2 a,
.blog-featured h2 a {
  color: var(--zmb-dark) !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1.5rem;
}

.item-content h2 a:hover {
  color: var(--zmb-orange) !important;
}

/* ---- TABELLEN ---- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
  border-radius: 8px;
  overflow: hidden;
}

table thead tr,
table tr:first-child {
  background: var(--zmb-dark);
  color: #fff;
}

table th, table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--zmb-border);
}

table tbody tr:nth-child(even) {
  background: var(--zmb-light);
}

table tbody tr:hover {
  background: #e8f4f8;
}

/* ---- FOOTER ---- */
.container-footer,
footer.footer {
  background: var(--zmb-dark) !important;
  color: rgba(255,255,255,0.8) !important;
  padding: 2rem 0 !important;
}

footer a {
  color: var(--zmb-orange) !important;
  text-decoration: none !important;
}

footer a:hover {
  color: #fff !important;
}

footer h3, footer .module-title {
  color: #fff !important;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* ---- PAGINATION ---- */
.pagination a {
  color: var(--zmb-dark) !important;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--zmb-border);
  text-decoration: none !important;
  margin: 0 2px;
}

.pagination a:hover,
.pagination .active a {
  background: var(--zmb-orange) !important;
  color: #fff !important;
  border-color: var(--zmb-orange);
}

/* ---- Layout Container ---- */
.container-component {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Cassiopeia grid overrides */
.container-header > .grid-child {
  background: transparent !important;
}
