/* ============================================================
   Madame TonkaBöhnle – tonkaboehnle.de
   Clean HTML5 rebuild — mirror of original design
   ============================================================ */

:root {
  --primary:   #3f444b;   /* dark header/footer background */
  --secondary: #acc66d;   /* olive green — accent colour */
  --accent:    #acc66d;   /* buttons, links, highlights */
  --accent2:   #13aff0;   /* secondary light-blue accent */
  --text:      #4a4a4a;
  --bg:        #ffffff;
  --light-bg:  #f7f7f7;
  --border:    #f1f1f1;
  --muted:     #888888;
  --white:     #ffffff;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent2); text-decoration: underline; }
ul, ol { list-style: none; }

/* ── TOP BAR ── */
.top-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  padding: 6px 0;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-contact a {
  color: #555;
  text-decoration: none;
  margin-right: 16px;
}
.top-bar-contact a:hover { color: var(--accent2); }
.top-bar-social a {
  color: #bbb;
  margin-left: 12px;
  font-size: 14px;
  text-decoration: none;
}
.top-bar-social a:hover { color: var(--accent); }

/* ── HEADER ── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.site-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* ── NAVIGATION ── */
.site-nav {
  background: var(--primary);
}
.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav ul li a {
  display: block;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s, border-bottom 0.2s;
  border-bottom: 3px solid transparent;
}
.site-nav ul li a:hover,
.site-nav ul li a.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-bottom-color: var(--secondary);
  text-decoration: none;
}

/* ── HERO / BANNER ── */
.hero {
  position: relative;
  background-color: var(--primary);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 32px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-notice {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: 2.6em;
  color: #fff;
  margin-bottom: 16px;
  padding: 0;
  border: none;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.15em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
  margin: 6px;
}
.hero-btn:hover { background: #b8d177; color: #fff; text-decoration: none; }
.hero-btn.secondary { background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.6); }
.hero-btn.secondary:hover { background: rgba(255,255,255,0.25); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #555c65 100%);
  color: #fff;
  padding: 50px 32px;
  text-align: center;
}
.page-hero h1 {
  font-size: 2em;
  color: #fff;
  border: none;
  padding: 0;
  margin: 0;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.page-hero .breadcrumb a { color: var(--secondary); text-decoration: none; }

/* ── MAIN CONTENT WRAPPER ── */
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px;
}

/* ── SECTION ── */
.section { padding: 60px 0; }
.section.alt-bg { background: var(--light-bg); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-title {
  font-size: 1.8em;
  color: var(--primary);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin: 32px 0;
}
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
  text-decoration: none;
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1em;
}
.card-body p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
  margin-bottom: 16px;
}
.card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

/* ── SERVICE BOXES ── */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.service-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.service-box:hover { border-color: var(--accent); }
.service-box h3 { color: var(--primary); font-size: 1em; margin-bottom: 8px; }
.service-box p { font-size: 14px; color: var(--muted); }

/* ── QUOTE BLOCK ── */
.quote-block {
  background: var(--light-bg);
  border-left: 5px solid var(--accent);
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}
.quote-block blockquote {
  font-size: 1.2em;
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}
.quote-block cite {
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-size: 2em;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
  font-weight: 700;
}
h2 {
  font-size: 1.5em;
  color: var(--primary);
  margin: 36px 0 14px;
  font-weight: 700;
}
h3 {
  font-size: 1.15em;
  color: var(--primary);
  margin: 22px 0 10px;
  font-weight: 600;
}
p { margin-bottom: 16px; }
ul, ol { margin: 12px 0 16px 24px; list-style: disc; }
ol { list-style: decimal; }
li { margin-bottom: 6px; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ── PRICING LIST ── */
.price-list { list-style: none; margin: 0 0 24px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}
.price-list li:last-child { border-bottom: none; }
.price-list .price {
  font-weight: 700;
  color: var(--accent);
}

/* ── TABLE ── */
.article-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14px; overflow-x: auto; display: block; }
.article-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.article-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); }
.article-table tr:nth-child(even) td { background: var(--light-bg); }
.article-table tr:hover td { background: #f0f5e8; }

/* ── FAQ ── */
.faq-section { margin-top: 36px; }
.faq-section h3 {
  background: #f0f5e8;
  padding: 13px 18px;
  border-left: 4px solid var(--accent);
  margin: 0 0 2px;
  color: var(--primary);
  font-size: 1.05em;
}
.faq-section p {
  padding: 13px 18px;
  background: #fafafa;
  border-left: 4px solid var(--border);
  margin-bottom: 18px;
  font-size: 15px;
}

/* ── CONTACT / ORDER SECTION ── */
.contact-section {
  background: var(--light-bg);
  padding: 48px 32px;
  border-radius: 8px;
  margin: 40px 0;
}
.contact-section h2 { margin-top: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 24px;
}
.contact-item h4 {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-item p { font-size: 15px; margin: 0; color: var(--text); }
.contact-item a { color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--accent); }

/* ── BACKKURS LIST ── */
.kurs-list { list-style: none; margin: 0; }
.kurs-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-left: 4px solid var(--accent);
}
.kurs-item h3 { color: var(--primary); margin: 0 0 8px; font-size: 1.05em; }
.kurs-item p { font-size: 14px; color: var(--muted); margin: 0; }

/* ── HOCHZEIT / SERVICES ── */
.feature-list { list-style: none; margin: 20px 0; }
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 24px;
  position: relative;
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── PAGE TWO-COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 32px 0;
}
.two-col-img img {
  width: 100%;
  border-radius: 8px;
  height: 360px;
  object-fit: cover;
}

/* ── NOTICE BANNER ── */
.notice-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 24px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col p,
.footer-col address { font-size: 14px; font-style: normal; line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col a:hover { color: var(--secondary); }
.footer-col ul { list-style: none; margin: 0; }
.footer-col ul li { padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 32px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--secondary); }

/* ── 404 ── */
.error-404 { text-align: center; padding: 80px 20px; }
.big-404 { font-size: 130px; font-weight: 700; color: var(--accent); line-height: 1; }
.error-404 h2 { font-size: 28px; color: var(--primary); margin: 16px 0 8px; border: none; padding: 0; }
.error-404 p { color: var(--muted); max-width: 500px; margin: 0 auto 24px; }
.btn-back {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-back:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* ── LEGAL PAGES ── */
.legal-content h2 { font-size: 1.25em; margin: 28px 0 10px; }
.legal-content h3 { font-size: 1.05em; margin: 20px 0 8px; }
.legal-content address { font-style: normal; line-height: 1.8; }

/* ── WETTANBIETER / ARTICLE PAGE ── */
.article-content h2 { font-size: 1.4em; }
.article-content h3 { font-size: 1.1em; }
.article-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.disclaimer {
  background: #fff8e1;
  border: 1px solid #ffd54f;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13px;
  color: #666;
  margin: 32px 0;
}
.meta-info {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col-img { order: -1; }
  .two-col-img img { height: 260px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 16px 20px; flex-direction: column; text-align: center; }
  .site-logo img { height: 70px; }
  .site-nav-inner { padding: 0 20px; }
  .site-nav ul { justify-content: center; }
  .site-nav ul li a { padding: 10px 10px; font-size: 13px; }
  .page-wrapper { padding: 32px 20px; }
  .section-inner { padding: 0 20px; }
  .hero { min-height: 280px; }
  .hero h1 { font-size: 1.8em; }
  .hero-content { padding: 40px 20px; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { padding: 20px 20px 0; flex-direction: column; text-align: center; }
  h1 { font-size: 1.5em; }
  h2 { font-size: 1.25em; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 32px 20px; }
  .top-bar-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .site-nav ul li a { padding: 8px 8px; font-size: 12px; }
  .big-404 { font-size: 90px; }
}
