:root {
  --salbei: #A8C4B5;
  --altrosa: #E6B8C4;
  --creme: #FAF1E6;
  --warmgrau: #7F7F7F;
  --warmgrau-dunkel: #5C5C5C;
  --gold: #D4AF37;
  --dunkelgrau: #3E3E3E;
}

/* =========================
   Grundlayout / Body & Sections
   ========================= */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Lora', serif;
  background-color: var(--creme);
  color: var(--warmgrau-dunkel);
  line-height: 1.6;
  
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  margin: 2rem auto 4rem auto;
  padding-top: 100px;
}

.content-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto;
  box-sizing: border-box;
  text-align: center;      
}
.content-wrapper section {
  max-width: 1000px;        
  margin-bottom: 5rem;       
}

/* =========================
   Überschriften (h1, h2, h3)
   ========================= */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--salbei);
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

/* =========================
   Textabsätze & Listen (p, li, ul)
   ========================= */
p, li {
  font-size: 1.1rem;
  color: #5C5C5C;
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

ul li::before {
  content: '•';
  color: var(--altrosa);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}