/* DJ für Hochzeit — dj-fuer-hochzeit.com */
/* Farben aus Original (Wayback computed styles) */
:root {
  --primary:    #3984c8;  /* Blau — h1/h2/Links */
  --secondary:  #bdd3e7;  /* Content-Hintergrund */
  --accent:     #3984c8;  /* Buttons, Hover */
  --text:       #666666;  /* Fließtext */
  --bg:         #f1f2f3;  /* Seitenhintergrund */
  --header-bg:  #ffffff;  /* Header */
  --nav-bg:     #f7f9fb;  /* Navigation */
  --footer-bg:  #4e4e4e;  /* Footer */
  --footer-text:#ffffff;
  --border:     #d0dce8;
  --white:      #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Noto Sans", HelveticaNeue-Light, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1em; }
ul, ol { margin: 0.75em 0 1em 1.5em; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Actor", "Noto Sans", sans-serif;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.6em;
}
h1 { font-size: 1.8rem; margin-top: 0.5em; }
h2 { font-size: 1.4rem; margin-top: 1.2em; }
h3 { font-size: 1.1rem; margin-top: 1em; color: #555; }

/* ── HEADER ── */
.site-header {
  background: var(--header-bg);
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.site-header a { text-decoration: none; }
.site-logo img { max-height: 80px; width: auto; margin: 0 auto; }
.site-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

/* ── NAVIGATION ── */
.site-nav {
  background: var(--nav-bg);
  border-bottom: 2px solid var(--border);
  text-align: center;
  padding: 0;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.site-nav ul li a {
  display: block;
  padding: 12px 16px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}
.site-nav ul li a:hover,
.site-nav ul li a.active {
  background: var(--secondary);
  border-bottom-color: var(--primary);
  text-decoration: none;
}

/* ── CONTENT ── */
.site-content {
  background: var(--secondary);
  min-height: 60vh;
  padding: 30px 0;
}
.content-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 24px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* ── HERO ── */
.dj-hero {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 4px;
}
.dj-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.dj-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
}

/* ── PHOTO GALLERY ── */
.dj-photo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.dj-photo-row .dj-photo {
  flex: 1 1 200px;
  max-width: 280px;
  overflow: hidden;
  border-radius: 3px;
}
.dj-photo-row .dj-photo img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s;
}
.dj-photo-row .dj-photo img:hover { transform: scale(1.03); }
.dj-photo-row .dj-photo span {
  display: block;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  padding: 4px 0;
}

/* ── GALLERY GRID (Bilder page) ── */
.bilder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.bilder-grid .bilder-item {
  overflow: hidden;
  border-radius: 4px;
  background: #eee;
}
.bilder-grid .bilder-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
  display: block;
}
.bilder-grid .bilder-item img:hover { transform: scale(1.05); }
.bilder-grid .bilder-item figcaption {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  padding: 6px 4px;
}

/* ── LISTS: Heiraten mit Stil ── */
.dj-list-two-col {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.dj-list-two-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 180px;
}
.dj-list-two-col ul li {
  padding: 4px 0 4px 18px;
  position: relative;
  border-bottom: 1px solid #f0f4f8;
}
.dj-list-two-col ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.75rem;
  top: 6px;
}

/* ── INFO BOX ── */
.dj-info-box {
  background: #f0f6fc;
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 4px 4px 0;
}
.dj-info-box strong { color: var(--primary); }

/* ── CONTACT ── */
.kontakt-block {
  background: #f8f9fa;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 6px;
  margin: 24px 0;
}
.kontakt-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0;
}

/* ── BLOG ── */
.blog-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-post-list li {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.blog-post-list li:last-child { border-bottom: none; }
.blog-post-list .post-date {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 4px;
}
.blog-post-list .post-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}
.blog-post-list .post-excerpt {
  font-size: 0.9rem;
  color: #666;
  margin-top: 6px;
}
.post-meta { font-size: 0.85rem; color: #999; margin-bottom: 20px; }
.post-tags { font-size: 0.8rem; color: #aaa; margin-top: 20px; }

/* ── REGIONAL TABLE ── */
.regional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.regional-card {
  background: #f0f6fc;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.2s;
}
.regional-card:hover { background: var(--secondary); }
.regional-card h3 { font-size: 1rem; margin: 0 0 8px; }
.regional-card p { font-size: 0.85rem; margin: 0; color: #666; }

/* ── ARTICLE TABLE (DOCX) ── */
.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.article-table th { background: var(--primary); color: #fff; padding: 12px; text-align: left; }
.article-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.article-table tr:nth-child(even) td { background: #f8f9fa; }

/* ── FAQ ── */
.faq-section h3 { background: #f0f4f8; padding: 12px 16px; border-left: 4px solid var(--primary); margin: 0 0 2px; font-size: 1rem; }
.faq-section p { padding: 12px 16px; background: #fafafa; border-left: 4px solid var(--border); margin-bottom: 16px; }

/* ── 404 ── */
.error-404 { text-align: center; padding: 80px 20px; }
.error-404 .big-404 { font-size: 120px; font-weight: 700; color: var(--primary); line-height: 1; }
.error-404 h2 { font-size: 28px; margin: 16px 0; color: #333; }
.btn-back {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 16px;
  transition: background 0.2s;
}
.btn-back:hover { background: #2a6fa0; text-decoration: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 28px 20px;
  margin-top: 0;
  text-align: center;
  font-size: 0.85rem;
}
.site-footer a { color: #b0ccdf; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 14px;
}
.footer-links a { font-size: 0.85rem; }
.footer-copy { color: #aaa; font-size: 0.8rem; margin-top: 10px; }

/* ── IMPRESSUM ── */
.impressum-section { margin: 24px 0; }
.impressum-section h2 { font-size: 1.1rem; margin-top: 1.4em; border-top: 1px solid var(--border); padding-top: 14px; }

/* ── GOOGLE FONTS fallback ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700&family=Actor&display=swap');

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav ul { flex-direction: row; justify-content: flex-start; overflow-x: auto; }
  .site-nav ul li a { padding: 10px 12px; font-size: 0.82rem; }
  .content-inner { padding: 20px 16px; }
  .dj-hero img { height: 220px; }
  .dj-list-two-col { flex-direction: column; gap: 10px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  .bilder-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .regional-grid { grid-template-columns: 1fr 1fr; }
  .error-404 .big-404 { font-size: 80px; }
}
@media (max-width: 480px) {
  .dj-photo-row .dj-photo { flex: 1 1 100%; max-width: 100%; }
  .regional-grid { grid-template-columns: 1fr; }
  .article-table { font-size: 12px; }
  .article-table th, .article-table td { padding: 8px 6px; }
}
