/*
/*
Theme Name: Synke Köpping Child
Theme URI: http://xn--synke-kpping-bjb.de
Author: Synke Köpping
Description: Portfolio-Theme mit grauer Menüleiste, roten Akzenten und vollflächigem Footer-Hintergrund.
Version: 1.0
Template: twentytwentyfour
*/

/* ---------- Grundlayout ---------- */
body {
  background-color: #b2191c;
  color: #333;
  font-family: 'Arial', Arial, Roboto, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-size: 17px;
}

/* ---------- Menüleiste ---------- */
.main-navigation {
  background-color: #333;
  text-align: center;
  padding: 0;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.main-navigation li {
  margin: 0;
}
.main-navigation a {
  display: block;
  padding: 18px 25px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all 0.3s ease;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  background-color: #b00000;
  color: #fff;
}

/* ---------- Headerbild ---------- */
img.header {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Inhaltsblöcke ---------- */
.section {
  background-color: #ffffff;
  margin: 50px auto;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section > img {
  width: 100%;
  height: auto;
  display: block;
}
.content {
  padding: 40px;
}
h1 {
  text-align: center;
  font-family: Arial, sans-serif;
  color: #333;
  margin-top: 2;
  margin-bottom: 0px;
  font-size: 2.5em;
  letter-spacing: 0.02em;
}
h2 {
  text-align: center;
  font-family: Arial, sans-serif;
  color: #969696;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 2.2em;
  letter-spacing: 0.02em;
}

h3 {
  font-family: Arial, sans-serif;
  color: #333;
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 1.9em;
  font-weight: 600;
}
h4 {
  font-family: Arial, sans-serif;
  color: #b00000;
  margin-bottom: 10px;
  font-weight: 600;
}
ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
ul li {
  margin-bottom: 6px;
}
ul li::before {
  content: "• ";
  color: #b00000;
  font-weight: bold;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: url('http://xn--synke-kpping-bjb.de/wp-content/uploads/2025/10/Footer.jpg') no-repeat center center / cover;
  width: 100%;
  height: auto;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
}
.site-footer a {
  color: #fff;
  text-decoration: underline;
}
.site-footer a:hover {
  color: #fff;
}

/* ---------- Animation Verzögerung ---------- */
.section:nth-child(2) { transition-delay: 0.1s; }
.section:nth-child(3) { transition-delay: 0.2s; }
.section:nth-child(4) { transition-delay: 0.3s; }
.section:nth-child(5) { transition-delay: 0.4s; }
.section:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Responsiv ---------- */
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
  }
  .main-navigation a {
    padding: 12px;
  }
  .content {
    padding: 25px;
  }
  h2 { font-size: 1.5em; }
}
