@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@400;600&display=swap");

:root {
  color-scheme: light;
  --bg: #e9ece3;
  --text: #222;
  --muted: #5a5f43;
  --brand: #5d611f;
  --brand-2: #aeb39d;
  --white: #fff;

  /* jetzt: headings = Cinzel, body = Inter */
  --heading: "Cinzel", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --max: 1100px;
  --r: 14px;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background-color: #fafafa;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Layout Container */
.container {
  max-width: var(--max);
  margin: 2rem auto;
  padding: 64px 24px;
}

.lead {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  opacity: .95;
  margin-bottom: 16px;
  text-align: center;
}

/* Headings im Content -> Cinzel */
h1,
h2,
h3 {
  font-family: var(--heading);
  color: var(--brand);
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

/* Standard-Textabsätze */
p {
  line-height: 1.75;
  margin: 0 0 18px;
  text-align: justify;
  hyphens: auto;
  color: #555;
}

/* Sticky / glassy Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: #5d611f;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.site-header .bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: auto;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
}

/* Cinzel im Header-Brand */
.brand-title {
  font-family: "Cinzel", serif;
  letter-spacing: .08em;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

/* Burger Button */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.nav-toggle:hover {
  background: rgba(255,255,255,.12);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* Navigation */
.site-nav {
  display: contents;
}

.nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  /* Nav auch Cinzel */
  font-family: "Cinzel", serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #eef3dc;
  font-weight: 600;
  font-size: .9rem;
}

.nav-list a[aria-current="page"] {
  color: #fff;
}

.nav-list a:hover {
  color: #fff;
}

/* Mobile Nav */
@media (max-width: 900px) {
  .site-header .bar {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: #6b7041;
  }

  .site-nav.open {
    max-height: 60vh;
  }

  .nav-list {
    flex-direction: column;
    gap: 8px;
    padding: 8px 16px 16px;
  }

  .nav-list a {
    padding: 10px 0;
    font-size: .95rem;
  }
}

/* Footer */
.site-footer {
  background: var(--brand);
  color: #fff;
  margin-top: 48px;
}

.site-footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  opacity: .9;
}

.site-footer a:hover {
  opacity: 1;
}

/* Cards, tables, grids */
.card {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.table th,
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.12);
  text-align: left;
}

.table th {
  background: rgba(255,255,255,.6);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Abstand unter Sticky Header */
main.container {
  padding-top: 56px;
}

/* Kontaktformular-Karte */
.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: box-shadow 0.3s ease;
  max-width: 720px;
  margin: 0 auto;
}

.contact-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Formular-Gruppen */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
  font-family: var(--body);
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--body);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fdfdfd;
}

input:focus,
textarea:focus {
  border-color: #5d611f;
  box-shadow: 0 0 0 3px rgba(93, 97, 31, 0.15);
  outline: none;
}

/* Button */
.button-primary {
  display: inline-block;
  background: #5d611f;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  font-family: var(--body);
  transition: background 0.25s, transform 0.15s;
  text-align: center;
}

.button-primary:hover {
  background: #6b7041;
  transform: translateY(-1px);
}

/* Bildbereich unter dem Formular */
.contact-image {
  margin-top: 3rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-image figcaption {
  margin-top: 0.5rem;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

/* Kontakt-Info-Box */
.contact-info {
  max-width: 720px;
  margin: 2rem auto 0;
  background-color: #f6f6f0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #333;
}

.contact-info a {
  color: #5d611f;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Video Hero Bereich */
.video-hero {
  max-width: 800px;
  margin: 2rem auto;
}

.video-hero video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-credit {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #666;
  margin-top: 0.5rem;
  text-align: center;
}

.video-credit a {
  color: #666;
  text-decoration: none;
  font-size: 0.75rem;
}

.video-credit a:hover,
.video-credit a:focus {
  text-decoration: underline;
  color: #444;
}

/* Responsive Tweaks für kleine Screens */
@media (max-width: 600px) {
  .contact-card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.75rem;
  }
}

.btn {
      display: inline-block;
      background-color: #5d611f;
      color: #fff;
      padding: 0.8rem 1.6rem;
      margin: 0.3rem;
      border-radius: 2rem;
      text-decoration: none;
      font-family: 'Lato', sans-serif;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn:hover {
      background-color: #73783a;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
