
  /* LORA */
@font-face {
  font-family: 'Lora';
  src: url('/fonts/Lora-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Lora';
  src: url('/fonts/Lora-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Lora';
  src: url('/fonts/Lora-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* CORMORANT GARAMOND */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/fonts/CormorantGaramond-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Lora', serif;
      background-color: #f8f8f8;
      color: #222222;
    }
    .site-container {
      max-width: 1080px;
      margin: 0 auto;
      background: #fff;
    }

    /* ---- HIER GEÄNDERT: width/max-width auf 100% ---- */
    @media (max-width: 1024px) {
      .site-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
      }
      .header-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
      }
    }

    header {
      border-bottom: 1px solid #eee;
      background-color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-container {
      max-width: 1080px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      padding: 1.5rem 2rem;
      box-sizing: border-box;
    }

    nav {
      padding-top: 1rem;
      margin-left: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 0.1rem 2rem;
      align-items: center;
      max-width: 100%;
      box-sizing: border-box;
    }
    nav a {
      text-decoration: none;
      color: #222222;
      font-weight: 500;
      position: relative;
      padding-bottom: 0.2em;
      white-space: nowrap;
    }
    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0%;
      background-color: #a67c52;
      transition: width 0.3s ease;
    }
    nav a:hover, nav a:focus {
     background: #bcbcbc;
     color: #1c1c1c;
     text-decoration: none;
    }
    nav a:hover::after {
      width: 100%;
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      color: #a67c52;
    }
    @media (max-width: 1024px) {
      .menu-toggle {
        display: block;
        margin-left: auto;
        padding: 1rem;
      }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        border-top: 1px solid #ccc;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        flex-direction: column;
        gap: 0.2rem 0;
        z-index: 999;
      }
      nav.show {
        display: flex;
      }
      nav a {
        margin: 0.5rem 0;
        margin-left: 0;
        white-space: normal;
      }
    }
    .hero {
      background-color: #d6d6d6;
      display: flex;
      align-items: center;
      padding: clamp(1.5rem, 6vw, 4rem) 2rem;
      color: #1c1c1c;
	  box-sizing: border-box;
    }
    .hero-container {
      max-width: 960px;
      margin: 0 auto;
      width: 100%;
      padding: 0;
      box-sizing: border-box;
	  padding-left: 1rem;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 5vw, 2.2rem);
      font-weight: 500;
      color: #1c1c1c;
      margin: 0;
      line-height: 1.2;
      max-width: 100%;
      overflow-wrap: break-word;
    }
    main {
      padding: 4rem 2rem;
      max-width: 960px;
      margin: auto;
      background: #ffffff;
    }
    @media (max-width: 1024px) {
      main { padding: 1rem; }

      .hero {
        padding: clamp(1.5rem, 6vw, 4rem) 1rem;
      }

      .hero-container {
        padding-left: 1rem; /* beibehalten */
      }
    }
    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #1c1c1c;
      position: relative;
      padding-left: 1rem;
      font-weight: 400;
      margin-top: 2rem;
    }
    h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 4px;
  height: 1.2em;
  background-color: #a67c52;
}

#faq-schreiner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
  color: #1c1c1c;
}

@media (max-width: 768px) {
  #faq-schreiner h3 {
    font-size: 1.2rem;
  }
}
    section { margin-bottom: 10rem; }
    /* Über mich */
    .ueber-mich-wrapper {
      display: flex;
      gap: 3.5rem;
      align-items: flex-start;
    }
    .ueber-mich-text { flex: 2; min-width: 0; }
    .ueber-mich-foto {
      flex: 1;
      max-width: 330px;
      width: 100%;
      height: 400px;
      border-radius: 18px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.10);
      object-fit: cover;
      margin-top: 0.3rem;
      margin-left: 0.2rem;
      background: #f8f8f8;
      display: block;
    }
    @media (max-width: 900px) {
      .ueber-mich-foto { max-width: 210px; height: 260px; }
    }
    @media (max-width: 700px) {
      .ueber-mich-wrapper { flex-direction: column; align-items: center; gap: 1.2rem; }
      .ueber-mich-text { text-align: center; }
      .ueber-mich-foto {
        max-width: 75vw;
        height: 220px;
        margin-top: 0;
        margin-left: 0;
      }
    }
    /* Projekt-Grid */
    .project-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
    .project-gallery .project {
      flex: 1 1 190px;
      max-width: 210px;
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #f8f8f8;
      border-radius: 12px;
      border: 1px solid #eee;
      padding: 1.1rem 0.7rem 0.7rem 0.7rem;
      box-sizing: border-box;
      min-width: 180px;
    }
	.project-gallery .project img {
      height: auto;
      width: 100%;
      object-fit: cover; /* NEU: Bild füllt den Rahmen */
      border-radius: 12px;
      border: 1px solid #ccc;
      background: #f8f8f8;
      display: block;
      margin: 0 auto;
      transition: box-shadow 0.2s;
      box-shadow: none;
    }
    .project-gallery .project img:hover {
      box-shadow: 0 4px 18px rgba(166,124,82,0.12);
    }
    .project-gallery .project p {
      margin: 0.5rem 0 0 0;
      font-size: 0.92rem;
      color: #555;
      text-align: center;
    }
    @media (max-width: 700px) {
      .project-gallery .project img { height: auto; }
      .project-gallery .project { max-width: 100%; }
    }
    /* Kontaktformular */
    form {
      display: flex;
      flex-direction: column;
      max-width: 470px;
      margin: 0;
    }
    form input, form textarea {
      font-family: inherit;
      font-size: 1rem;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 2px;
    }
    form button {
      align-self: start;
      padding: 0.75rem 1.5rem;
      background-color: #bcbcbc;
      color: #1c1c1c;
      font-family: 'Lora', serif;
      font-size: 1rem;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    form button:hover {
      background-color: #a67c52;
      color: white;
    }
    /* Footer */
    footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
      color: #999999;
      background: #f8f8f8;
      border-top: 1px solid #eee;
    }
    /* lightgallery close icon Anpassung */
    .lg-close {
      display: block !important;
      position: fixed !important;
      top: 12px !important;
      right: 12px !important;
      z-index: 999999 !important;
      font-size: 2.3rem !important;
      opacity: 1 !important;
      color: #a67c52 !important;
      background: none !important;
      box-shadow: none !important;
    }
    @media (max-width: 600px) {
      .lg-close {
        font-size: 2.8rem !important;
        top: 6px !important;
        right: 6px !important;
      }
    }
    /* Cookie Banner */
    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #f8f8f8;
      border-top: 1px solid #ccc;
      padding: 1rem 2rem;
      z-index: 9999;
      font-family: 'Lora', serif;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
      display: none;
    }
    .cookie-btn {
      font-family: 'Lora', serif;
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
      background-color: transparent;
      color: #222;
      border: 1px solid #ccc;
      cursor: pointer;
      border-radius: 2px;
      transition: background-color 0.3s ease, color 0.3s ease;
      margin-right: 0.5rem;
    }
    .cookie-btn:hover {
      background: #bcbcbc;
      color: #1c1c1c;
    }
    @media (max-width: 600px) {
      #cookie-banner { padding: 1rem; font-size: 0.95rem; }
      #cookie-banner div { flex-direction: column; gap: 0.5rem; }
      .cookie-btn { width: 100%; }
    }
	
header img {
  width: 100%;
  max-width: 240px;
  height: auto;
  transition: max-width 0.3s;
}

@media (max-width: 700px) {
  header img {
    max-width: 60vw;
    min-width: 80px;
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1400px) {
  header img {
    max-width: 310px;
  }
}
@media (min-width: 1800px) {
  header img {
    max-width: 370px;
  }
}
.leistungen-liste {
  list-style-type: disc;
  padding-left: 1.2em;
}

.leistungen-liste li {
  margin-bottom: 1.5em; /* Mehr Abstand zwischen den Punkten */
  font-weight: 400;
}
.break-hint {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .break-hint {
    white-space: normal;
  }
}
  .region-info {
    margin: 1.5rem 0;
    padding: 0.5rem 0;
  }

  .region-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .region-info p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .lg-prev,
.lg-next {
  color: rgba(166, 124, 82, 0.85) !important; /* Gold mit 85 % Deckkraft */
  background: none !important;
  box-shadow: none !important;
  font-size: 2rem !important;
  transition: color 0.3s ease;
}

.lg-prev:hover,
.lg-next:hover {
  color: rgba(166, 124, 82, 1) !important; /* 100 % beim Hover */
}
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.site-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
.ueber-mich-text p,
.region-info p,
.project-gallery-wrapper p {
  text-align: justify;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}


@media (max-width: 768px) {
  .ueber-mich-text p,
  .region-info p,
  .project-gallery-wrapper p {
    text-align: left;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
  }
}

  

/* ======= Datenschutz / Impressum Basis-Ergänzung ======= */
body {
  font-size: 16px;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}


    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.2rem;
      margin-top: 1.2rem;
    }
    .review-card {
      border: 1px solid #eee;
      border-radius: 4px;
      padding: 1.2rem 1.4rem;
      background: #fafafa;
    }
    .review-stars {
      color: #a67c52;
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
      letter-spacing: 2px;
    }
    .review-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #333;
      margin: 0 0 0.7rem 0;
      font-style: italic;
    }
    .review-author {
      font-size: 0.85rem;
      color: #999;
    }
    @media (max-width: 700px) {
      .reviews-grid { grid-template-columns: 1fr; }
    }