/* Fonts */
@font-face {
  font-family: 'Playfair Display'; font-weight: 400; src: url('../static/fonts/PlayfairDisplay-Regular.ttf') format('truetype'); font-display: swap;
}
@font-face {
  font-family: 'Playfair Display'; font-weight: 700; src: url('../static/fonts/PlayfairDisplay-Bold.ttf') format('truetype'); font-display: swap;
}
@font-face {
  font-family: 'Open Sans'; font-weight: 400; src: url('../static/fonts/OpenSans-Regular.ttf') format('truetype'); font-display: swap;
}
@font-face {
  font-family: 'Open Sans'; font-weight: 600; src: url('../static/fonts/OpenSans-SemiBold.ttf') format('truetype'); font-display: swap;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
  --color-accent: #bfa36b;
  --color-text: #333;
  --color-bg: #fff;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* Hero */
.hero {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  width: auto; height: 100%; min-width: 100%;
  transform: translate(-50%, -50%); object-fit: cover; z-index: 0;
}
.overlay {
  position: relative; z-index: 1;
  width: 100%; height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: rgba(0,0,0,0.4);
  text-align: center; padding: 1rem;
}
.overlay h1 {
  font-family: var(--font-heading); color: #fff; font-size: 3rem; margin-bottom: .5rem;
}
.overlay p {
  color: #fff; font-size: 1.2rem; margin-bottom: 1rem;
}
.btn-group {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.btn {
  background: var(--color-accent); color: #fff; text-decoration: none;
  padding: .75rem 1.5rem; border-radius: 4px; font-weight: 600;
}
.btn:hover { opacity: .9; }

/* Content */
.container {
  max-width: 800px; margin: 0 auto; padding: 2rem 1rem;
}
h2 {
  font-family: var(--font-heading); font-size: 1.75rem; margin-bottom: 1rem;
}
.services-grid {
  display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
@media(min-width:600px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
.service-item h3 {
  font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: .5rem;
}
.why-list { list-style: disc inside; margin-left: 1rem; }
.why-list li { margin-bottom: .5rem; }

/* Footer */
.footer {
  text-align: center; padding: 1rem 0; background: #f5f5f5;
}
.footer-links {
  display: flex; justify-content: center; gap: 1rem; margin-bottom: .5rem;
}
.footer-links a {
  color: var(--color-text); text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

/* ==== Buttons auf Desktop größer (mehr Spezifität) ==== */
@media(min-width: 600px) {
  .overlay .btn {
    padding: 1rem 2rem;       /* mehr Klickfläche */
    font-size: 1.125rem;      /* größere Schrift */
  }
}

/* ==== Listen in der Datenschutzerklärung einrücken ==== */
.datenschutz-page .container ul,
.datenschutz-page .container ol {
  margin-left: 2rem;          /* rückt alle Aufzählungen ein */
  margin-bottom: 1rem;        /* etwas Abstand nach unten */
}
