/* source: DocumenteCenter/inhalte/style.css */

/* -------------------- Grundlegendes -------------------- */
body.page-documentecenter *,
body.page-visitenkarte *{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.page-documentecenter{
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  color: #333;
  line-height: 1.4;
}

body.page-documentecenter a{
  text-decoration: none;
  color: inherit;
}

/* -------------------- Splash Screen -------------------- */
body.page-documentecenter #splash{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #2c3e50;
  color: white;
  text-align: center;
}

body.page-documentecenter #splash .logo{
  max-width: 150px;
  margin-bottom: 20px;
}

/* -------------------- Header -------------------- */
body.page-documentecenter header{
  text-align: center;
  padding: 20px 0;
  background: #34495e;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}

body.page-documentecenter header h1{
  font-size: 1.8rem;
}

/* -------------------- Dashboard Kacheln -------------------- */
body.page-documentecenter .dashboard{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

body.page-documentecenter .tile{
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body.page-documentecenter .tile i{
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

body.page-documentecenter .tile span{
  font-weight: bold;
  font-size: 1rem;
}

body.page-documentecenter .tile:hover{
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* -------------------- Footer -------------------- */
body.page-documentecenter footer{
  margin-top: 40px;
  padding: 15px 0;
  background: #34495e;
  color: #ddd;
  text-align: center;
  border-radius: 10px;
  font-size: 0.9rem;
}

/* -------------------- Responsive Anpassungen -------------------- */
@media (max-width: 768px){
  body.page-documentecenter header h1 {
    font-size: 1.5rem;
  }

  body.page-documentecenter .tile {
    padding: 25px 15px;
  }

  body.page-documentecenter .tile i {
    font-size: 2rem;
  }

  body.page-documentecenter .tile span {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px){
  body.page-documentecenter .dashboard{
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  body.page-documentecenter header h1{
    font-size: 1.3rem;
  }
}

/* ----------------------------- Grundlayout ----------------------------- */
body.page-documentecenter{
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: #f4f6f9;
}

body.page-documentecenter main{
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

body.page-documentecenter h1, body.page-documentecenter h2{
  text-align: center;
  color: #2c3e50;
}

body.page-documentecenter ul{
  margin-left: 20px;
  line-height: 1.6;
}

body.page-documentecenter .signature{
  margin-top: 60px;
}

body.page-documentecenter .signature-line{
  margin-top: 40px;
  border-bottom: 1px solid #000;
  width: 300px;
}

/* ----------------------------- Header & Navigation ----------------------------- */
body.page-documentecenter header{
  background: #2c3e50;
  color: white;
  padding: 10px 20px;
  text-align: center;
}

body.page-documentecenter header h1{
  margin: 0;
  font-size: 1.5rem;
}

body.page-documentecenter nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #34495e;
}

body.page-documentecenter nav a{
  color: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.95rem;
  transition: background 0.2s;
}

body.page-documentecenter nav a:hover{
  background: #2c3e50;
}

/* ----------------------------- Footer ----------------------------- */
body.page-documentecenter footer{
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ----------------------------- Buttons ----------------------------- */
body.page-documentecenter button{
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 0;
  z-index: 1000;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

body.page-documentecenter button:hover{
  background-color: #218838;
}

/* ----------------------------- Wasserzeichen & Logo ----------------------------- */
body.page-documentecenter .watermark{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 85%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
  display: none;
}

body.page-documentecenter .logo-top-right{
  position: fixed;
  top: 10px;
  right: 20px;
  width: 120px;
  z-index: 1000;
  display: none;
  opacity: 0.7;
}

/* ----------------------------- Druckversion ----------------------------- */
@media print{
  body.page-documentecenter .watermark,
  body.page-documentecenter .logo-top-right {
    display: block;
  }

  body.page-documentecenter {
    margin: 20mm;
    font-size: 12pt;
    background: white;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body.page-documentecenter a[href]:after {
    content: "";
  }

  body.page-documentecenter button,
  body.page-documentecenter nav,
  body.page-documentecenter header,
  body.page-documentecenter footer {
    display: none;
  }

  body.page-documentecenter .only-print {
    page-break-before: always;
  }

  body.page-documentecenter main {
    padding: 0;
    max-width: 100%;
    margin: 0;
  }

  body.page-documentecenter .signature-line {
    width: 50%;
  }
}

/* -------------------- Formularfelder -------------------- */
body.page-documentecenter .vertrag-form{
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

body.page-documentecenter .vertrag-form label{
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
  color: #2c3e50;
}

body.page-documentecenter .vertrag-form input, body.page-documentecenter .vertrag-form textarea, body.page-documentecenter .vertrag-form select{
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  transition: border 0.2s, background 0.2s;
}

body.page-documentecenter .vertrag-form input:focus, body.page-documentecenter .vertrag-form textarea:focus, body.page-documentecenter .vertrag-form select:focus{
  border-color: #2c3e50;
  background: #fff;
  outline: none;
}

body.page-documentecenter .btn-row{
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

body.page-documentecenter .btn{
  flex: 1;
  background-color: #2c3e50;
  color: white;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

body.page-documentecenter .btn:hover{
  background-color: #1a242f;
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 768px){
  body.page-documentecenter nav {
    flex-direction: column;
  }

  body.page-documentecenter button {
    width: 90%;
    left: 5%;
    right: 5%;
    bottom: 15px;
  }

  body.page-documentecenter .signature-line {
    width: 80%;
  }
}

/* source: DocumenteCenter/inhalte/datenschutz.html <style> */


    body.page-documentecenter{
      font-family: Arial, sans-serif;
      background: #f4f6f9;
      margin: 0;
      padding: 0;
      color: #333;
    }

    body.page-documentecenter main{
      max-width: 900px;
      margin: 20px auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      position: relative;
    }

    body.page-documentecenter .watermark{
      position: fixed;
      top: 50%;
      left: 50%;
      opacity: 0.07;
      transform: translate(-50%, -50%);
      max-width: 80%;
      z-index: -1;
      pointer-events: none;
    }

    body.page-documentecenter .logo-top-right{
      position: fixed;
      top: 10px;
      right: 20px;
      width: 120px;
      z-index: 1000;
      opacity: 0.7;
    }

    body.page-documentecenter .print-button{
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 10px 20px;
      background-color: #005f99;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      z-index: 1000;
    }

    body.page-documentecenter h1, body.page-documentecenter h2{
      text-align: center;
    }

    body.page-documentecenter ul{ margin-left: 20px; }

    body.page-documentecenter .signature{ margin-top: 60px; }
    body.page-documentecenter .signature-line{
      margin-top: 40px;
      border-bottom: 1px solid #000;
      width: 300px;
    }

    @media print{
      body.page-documentecenter .print-button, body.page-documentecenter #header, body.page-documentecenter #footer{ display: none; }
      body.page-documentecenter{ margin: 20mm; font-size: 12pt; }
      body.page-documentecenter a[href]:after{ content: ""; }
      body.page-documentecenter .only-print{ page-break-before: always; }
    }
  

/* source: DocumenteCenter/inhalte/footer.html inline style inline-style-1 */

body.page-documentecenter .inline-style-1{ text-align: center !important; padding: 1rem !important; color: #555 !important; font-size: 0.9rem !important; }

/* source: Kontaktformular.html <style> */


        body.page-kontaktformular #submitBtn{
            background-color: grey;
            color: white;
            padding: 14px 25px;
            min-height: 48px;
            border: none;
            border-radius: 5px;
            cursor: not-allowed;
            transition: background-color 0.3s ease;
            font-size: 16px;
            font-weight: bold;
        }

        body.page-kontaktformular #submitBtn:enabled{
            background-color: green;
            cursor: pointer;
        }

        body.page-kontaktformular .agb-group{
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-top: 20px;
        }

        body.page-kontaktformular .agb-group input[type="checkbox"]{
            margin-top: 4px;
            min-width: 20px;
            min-height: 20px;
            cursor: pointer;
        }

        body.page-kontaktformular .agb-group label{
            font-size: 14px;
        }

        body.page-kontaktformular .agb-group a{
            color: #00bfae;
            text-decoration: underline;
        }
body.page-kontaktformular .form-group input[type="text"], body.page-kontaktformular .form-group input[type="email"], body.page-kontaktformular .form-group input[type="number"], body.page-kontaktformular .form-group input[type="tel"], body.page-kontaktformular .form-group textarea, body.page-kontaktformular .form-group select{
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    font-size: 16px;
    min-height: 44px;
}

@media (max-width: 768px){
    body.page-kontaktformular{
        padding: 10px;
    }

    body.page-kontaktformular .container{
        padding: 15px;
    }

    body.page-kontaktformular #submitBtn{
        width: 100%;
    }
}
    

/* source: Termin.html <style> */


  body.page-termin{
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }

  body.page-termin .container{
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  body.page-termin h1{
    color: #27ae60;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
  }

  body.page-termin h2{
    color: #27ae60;
    margin-top: 25px;
    border-left: 6px solid #27ae60;
    padding-left: 12px;
    background: #e9f7ef;
    border-radius: 5px;
  }

  body.page-termin p{
    margin: 15px 0;
  }

  body.page-termin button{
    display: inline-block;
    padding: 12px 25px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #27ae60;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  body.page-termin button:hover,
  body.page-agb-haushaltshilfe .cta button:hover,
  body.page-bewertung .review-form button:hover,
  body.page-ueber-uns .cta button:hover{
    background-color: #219150;
  }

  @media(max-width:768px){
    body.page-termin .container{
      margin: 15px;
      padding: 20px;
    }
    body.page-termin button{
      width: 100%;
      text-align: center;
    }
  }


/* source: agb-geschaeft.html <style> */


  body.page-agb-geschaeft,
  body.page-agb-haushaltshilfe,
  body.page-datenschutz,
  body.page-index,
  body.page-ueber-uns{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }

  body.page-agb-geschaeft .container,
  body.page-agb-haushaltshilfe .container{
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  body.page-agb-geschaeft h1{
    text-align: center;
    color: #222;
    margin-bottom: 20px;
  }

  body.page-agb-geschaeft h2{
    background: #e9f7ef;
    padding: 10px 15px;
    border-left: 6px solid #27ae60;
    border-radius: 5px;
    color: #222;
    margin-top: 30px;
  }

  body.page-agb-geschaeft h3{
    margin-top: 15px;
    color: #2980b9;
  }

  body.page-agb-geschaeft p,
  body.page-agb-haushaltshilfe p,
  body.page-agb-geschaeft ul,
  body.page-agb-haushaltshilfe ul{
    margin: 10px 0 15px 20px;
    padding: 0;
    list-style: none;
  }

  body.page-agb-geschaeft ul li,
  body.page-agb-haushaltshilfe ul li{
    position: relative;
    padding-left: 22px;
  }

  body.page-agb-geschaeft ul li::before{
    content: "✔";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
  }

  body.page-agb-geschaeft .cta,
  body.page-agb-haushaltshilfe .cta,
  body.page-agb-geschaeft .cta button{
    background-color: #2980b9;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
  }

  body.page-agb-geschaeft .cta button:hover{
    background-color: #2172a0;
  }

  @media(max-width:768px){
    body.page-agb-geschaeft .container,
    body.page-agb-haushaltshilfe .container,
    body.page-datenschutz .container,
    body.page-ueber-uns .container{
      padding: 15px;
    }
    body.page-agb-geschaeft h2{
      font-size: 1.1rem;
    }
  }


/* source: agb-haushaltshilfe.html <style> */


  body.page-agb-haushaltshilfe h1{
    text-align: center;
    color: #222;
    margin-bottom: 20px;
  }

  body.page-agb-haushaltshilfe h2{
    background: #e8f4fc;
    padding: 10px 15px;
    border-left: 6px solid #2980b9;
    border-radius: 5px;
    color: #222;
    margin-top: 30px;
  }

  body.page-agb-haushaltshilfe h3{
    margin-top: 15px;
    color: #27ae60;
  }

  body.page-agb-haushaltshilfe ul li::before{
    content: "✔";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: bold;
  }

  body.page-agb-haushaltshilfe .cta button{
    background-color: #27ae60;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
  }

  @media(max-width:768px){
    body.page-agb-haushaltshilfe h2{
      font-size: 1.1rem;
    }
  }


/* source: agb-switch.html <style> */


/* ---------------------- Allgemeines Layout ---------------------- */
html,
body.page-leistungspakete{
  height: 100%;
}

body.page-agb-switch{
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Container für Hauptinhalt */
body.page-agb-switch .container{
  flex: 1;
}

/* ---------------------- AGB Container ---------------------- */
body.page-agb-switch .agb-auswahl{
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

body.page-agb-switch .agb-auswahl h1{
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

/* ---------------------- Buttons ---------------------- */
body.page-agb-switch .buttons{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

body.page-agb-switch .buttons a{
  width: 200px;
  text-align: center;
  padding: 12px 20px;
  background-color: #00bfae;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95em;
  line-height: 1.4;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
  min-height: 48px;
  box-sizing: border-box;
}

body.page-agb-switch .buttons a:hover{
  background-color: #006f91;
  transform: translateY(-2px);
}

/* ---------------------- Mobile Querformat (Landscape) ---------------------- */
@media (max-width: 767px) and (orientation: landscape){
  body.page-agb-switch .buttons {
    flex-direction: row;
    gap: 15px;
  }

  body.page-agb-switch .buttons a {
    flex: 1;
    max-width: 250px;
    font-size: 0.85em;
    padding: 8px 12px;
    min-height: 40px;
    line-height: 1.2;
    box-sizing: border-box;
  }
}

/* ---------------------- Mobile Hochformat (Portrait) ---------------------- */
@media (max-width: 480px) and (orientation: portrait){
  body.page-agb-switch .agb-auswahl {
    padding: 20px;
    margin: 20px;
  }

  body.page-agb-switch .agb-auswahl h1 {
    font-size: 1.5rem;
  }

  body.page-agb-switch .buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  body.page-agb-switch .buttons a {
    width: 100%;
    max-width: 100%;
    font-size: 0.85em;
    padding: 8px 12px;
    min-height: 40px;
    line-height: 1.2;
    box-sizing: border-box;
  }
}

/* ---------------------- Footer ---------------------- */
body.page-agb-switch #footer{
  margin-top: 40px;
}


/* source: base.html inline style inline-style-2 */

body.page-base .inline-style-2{ text-align: center !important; margin-bottom: 10px !important; }

/* source: base.html inline style inline-style-3 */

body.page-base .inline-style-3{ text-align: center !important; margin-top: 10px !important; }

/* source: bewerbung.html <style> */


        body.page-bewerbung{
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        body.page-bewerbung .container{
            max-width: 700px;
            margin: 50px auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        body.page-bewerbung h2{
            text-align: center;
            color: #333;
        }
        body.page-bewerbung form{
            display: flex;
            flex-direction: column;
        }
        body.page-bewerbung label{
            margin-top: 15px;
            font-weight: bold;
        }
        body.page-bewerbung input, body.page-bewerbung textarea, body.page-bewerbung select{
            margin-top: 5px;
            padding: 12px;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 16px;
            min-height: 44px;
            box-sizing: border-box;
        }
        body.page-bewerbung textarea{
            resize: vertical;
            min-height: 80px;
        }
        body.page-bewerbung input[type="file"]{
            padding: 8px;
            min-height: 44px;
        }
        body.page-bewerbung button{
            margin-top: 20px;
            padding: 14px 20px;
            min-height: 48px;
            border: none;
            border-radius: 5px;
            background-color: #0078d4;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
        }
        body.page-bewerbung button:hover{
            background-color: #005ea3;
        }
        body.page-bewerbung .checkbox-label{
            font-weight: normal;
            margin-top: 10px;
        }
        body.page-bewerbung input[type="checkbox"]{
            min-width: 20px;
            min-height: 20px;
            margin-right: 8px;
        }
        @media (max-width: 768px){
            body.page-bewerbung .container{
                margin: 20px;
                padding: 20px;
            }
            body.page-bewerbung button{
                width: 100%;
            }
        }
    

/* source: bewerbung.html inline style inline-style-4 */

body.page-bewerbung .inline-style-4{ font-size: 0.9em !important; color: #555 !important; }

/* source: bewertung.html <style> */


  body.page-bewertung{
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    margin: 0;
    color: #333;
  }

  body.page-bewertung .rezensionen-section{
    max-width: 95%;
    margin: 40px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  body.page-bewertung h1{
    color: #27ae60;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2rem;
  }

  body.page-bewertung .notice{
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
  }

  body.page-bewertung .review-form{
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    background: #fafafa;
  }

  body.page-bewertung .review-form label{
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
  }

  body.page-bewertung .review-form textarea{
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
  }

  body.page-bewertung .rating{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 6px;
    margin: 12px 0 16px;
  }

  body.page-bewertung .rating input{
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  body.page-bewertung .rating label{
    font-size: 32px;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
  }

  body.page-bewertung .rating label.is-hover{
    color: #f39c12;
  }

  body.page-bewertung .rating input:checked ~ label{
    color: #f39c12;
  }

  @media (hover: hover){
    body.page-bewertung .rating label:hover, body.page-bewertung .rating label:hover ~ label{
      color: #f39c12;
    }
  }

  body.page-bewertung .review-form button{
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #27ae60;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  body.page-bewertung .form-hint{
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: #666;
  }

  body.page-bewertung .form-status{
    margin: 10px 0 0;
    font-size: 0.95rem;
    color: #333;
  }

  body.page-bewertung .rezension-list{
    display: grid;
    gap: 16px;
  }

  body.page-bewertung .rezension-item{
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 16px;
    background: #fafafa;
  }

  body.page-bewertung .rezension-stars{
    color: #f39c12;
    font-size: 1.1rem;
    margin: 0 0 6px 0;
  }

  body.page-bewertung .rezension-text{
    margin: 0 0 8px 0;
    color: #333;
  }

  body.page-bewertung .rezension-meta{
    margin: 0;
    color: #666;
    font-size: 0.9rem;
  }

  @media(max-width:768px){
    body.page-bewertung .rezensionen-section{
      margin: 20px;
      padding: 20px;
    }
  }


/* source: datenschutz.html <style> */


  body.page-datenschutz .container{
    max-width: 900px;
    margin: 20px auto;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }

  body.page-datenschutz h1{
    text-align: center;
    color: #222;
    margin-bottom: 20px;
  }

  body.page-datenschutz h2{
    color: #27ae60;
    margin-top: 30px;
    border-left: 6px solid #27ae60;
    padding-left: 12px;
    background: #e9f7ef;
    border-radius: 5px;
  }

  body.page-datenschutz ul{
    list-style: none;
    padding-left: 20px;
    margin: 10px 0 15px;
  }

  body.page-datenschutz ul li{
    position: relative;
    margin-bottom: 8px;
    padding-left: 25px;
  }

  body.page-datenschutz ul li::before{
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
  }

  body.page-datenschutz p{
    margin: 10px 0;
  }


/* source: styles.css */

.logo-left {
  height: clamp(64px, 7vw, 96px);
  width: auto;
  cursor: pointer; /* zeigt beim Überfahren die Hand an */
}

/* ---------------------- AGB Auswahl Buttons ---------------------- */
.agb-auswahl {
  max-width: 800px;   /* begrenzt auf Desktop */
  margin: 40px auto;
  text-align: center;
}

.agb-auswahl h1 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* sorgt dafür, dass sie auf Mobile umbrechen */
}

.buttons a {
  flex: 1 1 300px; /* wächst bis 300px, schrumpft wenn nötig */
  max-width: 350px;
  text-align: center;
  padding: 15px 20px;
  background-color: #00bfae;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.buttons a:hover {
  background-color: #006f91;
}

/* ---------------------- Responsive ---------------------- */
@media (max-width: 767px) {
  .agb-auswahl h1 {
    font-size: 1.5rem;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .buttons a {
    width: 100%;
    max-width: none;
    font-size: 1em;
    padding: 12px 15px;
  }
}


/* ---------------------- Body & Grundlayout ---------------------- */
html, body {
    overflow-x: hidden;  /* verhindert horizontales Scrollen */
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    padding: 20px;           /* reduziert auf mobile-friendly */
    max-width: 95%;           /* flexibel für alle Bildschirme */
    margin: 20px auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}


/* ---------------------- Portraitkarten ---------------------- */
.portrait-block {
    display: flex;
    flex-direction: column; /* Bild oben, Text darunter */
    align-items: center;    /* zentriert */
    text-align: center;     /* Text mittig */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    margin: 15px auto;
    max-width: 250px;       /* Desktop: begrenzt die Größe */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.portrait-block img.portrait-img {
    width: 120px;           /* Desktopgröße */
    max-width: 100%;        /* Responsive für kleine Bildschirme */
    height: auto;
    border-radius: 50%;
    margin-bottom: 12px;
}

.portrait-block div {
    display: flex;
    flex-direction: column;
    gap: 6px;               /* Abstand zwischen Kontaktdaten */
}

.portrait-block i {
    margin-right: 6px;
    color: #00bfae;
}

.portrait-block span,
.portrait-block a {
    font-size: 0.95em;
    color: #333;
    text-decoration: none;
}

/* ---------------------- Mobilgeräte ---------------------- */
@media (max-width: 767px) {
    .portrait-block {
        max-width: 180px;   /* kleiner auf Handys */
        padding: 10px;
    }
    .portrait-block img.portrait-img {
        width: 100px;
    }
    .portrait-block span, 
    .portrait-block a {
        font-size: 0.9em;
    }
}


/* ---------------------- Service Cards & andere Bilder ---------------------- */
.service-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* bleibt eckig */
}

.main-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 20px;
    box-sizing: border-box;
}


/* ---------------------- Header ---------------------- */
.header {
    position: relative;
    background: linear-gradient(45deg, #006f91, #00bfae);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 40px;
    z-index: 1;
}
.header h1 { font-size: 3em; }
.header p { font-size: 1.2em; }
.header img { width: 150px; max-width: 100%; height: auto; margin: 0 auto 20px; display: block; }

/* ---------------------- Navigation ---------------------- */
.nav {
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}
.nav a {
    text-decoration: none;
    font-size: 1.1em;
    color: #333;
    padding: 15px 30px;
    transition: 0.3s;
}
.nav a:hover {
    background-color: #00bfae;
    color: white;
    border-radius: 6px;
}

/* ---------------------- Modal Overlay ---------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem; /* Abstand für kleine Bildschirme */
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 95vh; /* passt sich der Viewport-Höhe an */
    overflow-y: auto;  /* scroll nur falls zu hoch */
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}



/* ---------------------- Buttons ---------------------- */
.container button, .buttons a {
    background-color: #00bfae;
    color: white;
    font-size: 1.1em;
    padding: 15px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}
.container button:hover, .buttons a:hover {
    background-color: #006f91;
}


/* ---------------------- Responsive ---------------------- */
@media (max-width: 1199px) {
    .main-content { grid-template-columns: repeat(2,1fr); padding: 30px; }
    .header h1 { font-size: 2.5em; }
    .header p { font-size: 1.1em; }
}

@media (max-width: 767px) {
    .main-content { grid-template-columns: 1fr; padding: 20px; }
    .nav a { padding: 12px 20px; font-size: 1em; }
    .container { padding: 20px; margin: 20px 10px; max-width: 100%; }
    .container h2 { font-size: 1.6em; }
    .container button { font-size: 1em; }
    .portrait-img { max-width: 100px; }
    iframe { height: 500px; }  /* kleiner für Handys */
}

/* ---------------------- Kalender & Zeiten ---------------------- */
#calendar { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; }
.day {
    padding: 15px;
    min-height: 44px;
    min-width: 44px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.day.booked { background: #ffcccc; }
.day.available { background: #ccffcc; }
.day.partial { background: #cce0ff; }

@media (max-width: 480px) {
    #calendar { gap: 3px; }
    .day {
        padding: 10px 5px;
        font-size: 0.85em;
        min-height: 40px;
        min-width: 40px;
    }
}

/* ---------------------- Footer ---------------------- */
.footer {
    position: relative;
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Footer-Links immer gleiche Farbe */
.footer a,
.footer a:visited {
    color: white;        /* gleiche Farbe für normale und besuchte Links */
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover,
.footer a:focus {
    color: #00bfae;      /* Farbe beim Hover/Fokus */
}


/* source: footer.html <style> */


body.page-footer a{
    color: #2980b9;       /* Standardfarbe für Links */
    text-decoration: none;
}

body.page-footer a:visited{
    color: #2980b9;       /* gleiche Farbe wie nicht besucht */
}

body.page-footer a:hover{
    text-decoration: underline;
}


/* source: index.html <style> */


  body.page-index .container,
  body.page-ueber-uns .container{
    max-width: 95%;
    margin: 0 auto;
    padding: 20px;
  }

  body.page-index h1{
    text-align: center;
    color: #222;
    margin-bottom: 20px;
    font-size: 2rem;
  }

  body.page-index h2{
    text-align: center;
    color: #222;
    margin-bottom: 20px;
  }

  body.page-index h3{
    margin-top: 20px;
    color: #444;
  }

  body.page-index p,
  body.page-ueber-uns p{
    margin-bottom: 15px;
  }

  /* Boxen für Dienstleistungen */
  body.page-index .service-box,
  body.page-ueber-uns .box{
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
  }

  body.page-index .service-box i{
    font-size: 28px;
    margin-right: 15px;
    color: #27ae60;
  }

  body.page-index ul{
    margin-top: 10px;
    padding-left: 20px;
  }

  body.page-index ul li{
    margin-bottom: 8px;
  }

  /* Nachhaltigkeits-Box */
  body.page-index .sustainability-box{
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 6px solid #2e7d32;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }

  body.page-index .sustainability-box h2{
    color: #1b5e20;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left;
  }

  body.page-index .sustainability-box .icon-large{
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
  }

  body.page-index .sustainability-box .features{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
  }

  body.page-index .sustainability-box .feature-item{
    flex: 1 1 calc(50% - 15px);
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
  }

  body.page-index .sustainability-box .feature-item i{
    font-size: 24px;
    margin-right: 10px;
    color: #2e7d32;
  }

  /* Responsive */
@media (max-width: 768px){
    body.page-index .service-box {
      flex-direction: column;
    }
    body.page-index .service-box i {
      margin-bottom: 10px;
    }
    body.page-index .sustainability-box .feature-item {
      flex: 1 1 100%;
    }
  }


/* source: index.html inline style inline-style-5 */

body.page-index .inline-style-5{ margin-top: 20px !important; text-align: center !important; font-weight: bold !important; color: #1b5e20 !important; }

/* source: leistungspakete.html <style> */


    body.page-leistungspakete{
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
      min-height: 100%;
      display: flex;
      flex-direction: column;
    }

    body.page-leistungspakete .container{
      max-width: 95%;
      margin: 0 auto;
      padding: 20px;
      flex: 1;
    }

    body.page-leistungspakete h1{
      text-align: center;
      margin-bottom: 30px;
      color: #222;
    }

    body.page-leistungspakete h2{
      margin-top: 40px;
      margin-bottom: 15px;
      font-size: 1.6em;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    body.page-leistungspakete h3{
      margin-top: 20px;
      font-size: 1.2em;
    }

    body.page-leistungspakete ul{
      list-style: none;
      padding-left: 20px;
    }

    body.page-leistungspakete ul li{
      position: relative;
      margin: 6px 0;
      padding-left: 20px;
    }

    body.page-leistungspakete ul li::before{
      content: "✔";
      position: absolute;
      left: 0;
      color: #555;
    }

    /* Box-Stile für Preisklassen */
    body.page-leistungspakete .category{
      padding: 20px;
      border-radius: 12px;
      margin-bottom: 30px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    body.page-leistungspakete .basis{
      background: #e9f7ef; /* hellgrün */
      border-left: 6px solid #27ae60;
    }

    body.page-leistungspakete .komfort{
      background: #e8f4fc; /* hellblau */
      border-left: 6px solid #2980b9;
    }

    body.page-leistungspakete .premium{
      background: #fff8e6; /* hellgold */
      border-left: 6px solid #d4a017;
    }

    /* Responsive */
@media (max-width: 768px){
      body.page-leistungspakete .container {
        padding: 10px;
      }
      body.page-leistungspakete h1 {
        font-size: 1.6em;
      }
      body.page-leistungspakete h2 {
        font-size: 1.3em;
      }
      body.page-leistungspakete .cta-box {
        padding: 15px;
      }
      body.page-leistungspakete .cta-button {
        display: block;
        width: 100%;
        margin: 10px 0;
        padding: 10px 20px;
        font-size: 1em;
        box-sizing: border-box;
      }
    }

    /* Call-to-Action Buttons */
    body.page-leistungspakete .cta-box{
      text-align: center;
      background: #f0f8ff;
      padding: 25px;
      margin: 30px 0;
      border-radius: 12px;
      border: 2px solid #2980b9;
    }

    body.page-leistungspakete .cta-button{
      display: inline-block;
      padding: 12px 24px;
      margin: 10px;
      background: #27ae60;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1.05em;
      transition: all 0.3s ease;
      min-height: 48px;
      line-height: 1.4;
      box-sizing: border-box;
    }

    body.page-leistungspakete .cta-button:hover{
      background: #219150;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    

    body.page-leistungspakete .cta-button.secondary{
  background: #2980b9;
  color: #ffffff;            /* WICHTIG */
}

body.page-leistungspakete .cta-button.secondary:hover{
  background: #21618c;
  color: #ffffff;
}

    body.page-leistungspakete .price-info{
      background: #fff9e6;
      padding: 20px;
      margin: 25px 0;
      border-left: 4px solid #f39c12;
      border-radius: 8px;
    }

    body.page-leistungspakete .price-info h3{
      margin-top: 0;
      color: #d68910;
    }
  

/* source: leistungspakete.html inline style inline-style-6 */

body.page-leistungspakete .inline-style-6{ text-align: center !important; font-size: 1.1em !important; margin-bottom: 30px !important; }

/* source: leistungspakete.html inline style inline-style-7 */

body.page-leistungspakete .inline-style-7{ background: #f0f8ff !important; padding: 20px !important; margin: 30px 0 !important; border-radius: 12px !important; border: 2px solid #2980b9 !important; text-align: center !important; }

/* source: leistungspakete.html inline style inline-style-8 */

body.page-leistungspakete .inline-style-8{ margin: 0 !important; font-size: 1.1em !important; }

/* source: leistungspakete.html inline style inline-style-9 */

body.page-leistungspakete .inline-style-9{ text-align: center !important; margin: 40px 0 20px 0 !important; font-size: 2em !important; }

/* source: leistungspakete.html inline style inline-style-10 */

body.page-leistungspakete .inline-style-10{ background: #f0f8ff !important; padding: 25px !important; margin: 20px 0 40px 0 !important; border-radius: 12px !important; border: 2px solid #2980b9 !important; }

/* source: leistungspakete.html inline style inline-style-11 */

body.page-leistungspakete .inline-style-11{ margin-top: 0 !important; text-align: center !important; color: #2980b9 !important; }

/* source: leistungspakete.html inline style inline-style-12 */

body.page-leistungspakete .inline-style-12{ display: grid !important; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important; gap: 15px !important; margin-top: 20px !important; }

/* source: leistungspakete.html inline style inline-style-13 */

body.page-leistungspakete .inline-style-13{ margin: 0 !important; }

/* source: leistungspakete.html inline style inline-style-14 */

body.page-leistungspakete .inline-style-14{ margin: 0 !important; }

/* source: leistungspakete.html inline style inline-style-15 */

body.page-leistungspakete .inline-style-15{ text-align: center !important; margin: 15px 0 0 0 !important; font-weight: bold !important; color: #555 !important; }

/* source: leistungspakete.html inline style inline-style-16 */

body.page-leistungspakete .inline-style-16{ font-size: 1.1em !important; margin-bottom: 10px !important; }

/* source: leistungspakete.html inline style inline-style-17 */

body.page-leistungspakete .inline-style-17{ font-size: 0.95em !important; color: #555 !important; margin-bottom: 20px !important; }

/* source: leistungspakete.html inline style inline-style-18 */

body.page-leistungspakete .inline-style-18{ background: white !important; padding: 20px !important; margin-top: 20px !important; border-radius: 10px !important; border: 2px solid #27ae60 !important; }

/* source: leistungspakete.html inline style inline-style-19 */

body.page-leistungspakete .inline-style-19{ margin-top: 0 !important; color: #27ae60 !important; }

/* source: leistungspakete.html inline style inline-style-20 */

body.page-leistungspakete .inline-style-20{ width: 100% !important; border-collapse: collapse !important; }

/* source: leistungspakete.html inline style inline-style-21 */

body.page-leistungspakete .inline-style-21{ border-bottom: 1px solid #ddd !important; }

/* source: leistungspakete.html inline style inline-style-22 */

body.page-leistungspakete .inline-style-22{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-23 */

body.page-leistungspakete .inline-style-23{ padding: 10px !important; text-align: right !important; font-size: 1.2em !important; }

/* source: leistungspakete.html inline style inline-style-24 */

body.page-leistungspakete .inline-style-24{ border-bottom: 1px solid #ddd !important; background: #f9f9f9 !important; }

/* source: leistungspakete.html inline style inline-style-25 */

body.page-leistungspakete .inline-style-25{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-26 */

body.page-leistungspakete .inline-style-26{ padding: 10px !important; text-align: right !important; font-size: 1.2em !important; }

/* source: leistungspakete.html inline style inline-style-27 */

body.page-leistungspakete .inline-style-27{ color: #27ae60 !important; font-size: 0.9em !important; }

/* source: leistungspakete.html inline style inline-style-28 */

body.page-leistungspakete .inline-style-28{ background: #e8f5e9 !important; font-weight: bold !important; }

/* source: leistungspakete.html inline style inline-style-29 */

body.page-leistungspakete .inline-style-29{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-30 */

body.page-leistungspakete .inline-style-30{ padding: 10px !important; text-align: right !important; font-size: 1.3em !important; color: #27ae60 !important; }

/* source: leistungspakete.html inline style inline-style-31 */

body.page-leistungspakete .inline-style-31{ font-size: 0.9em !important; }

/* source: leistungspakete.html inline style inline-style-32 */

body.page-leistungspakete .inline-style-32{ margin-top: 15px !important; font-size: 0.95em !important; color: #666 !important; }

/* source: leistungspakete.html inline style inline-style-33 */

body.page-leistungspakete .inline-style-33{ font-size: 1.1em !important; margin-bottom: 10px !important; }

/* source: leistungspakete.html inline style inline-style-34 */

body.page-leistungspakete .inline-style-34{ font-size: 0.95em !important; color: #555 !important; margin-bottom: 20px !important; }

/* source: leistungspakete.html inline style inline-style-35 */

body.page-leistungspakete .inline-style-35{ background: white !important; padding: 20px !important; margin-top: 20px !important; border-radius: 10px !important; border: 2px solid #2980b9 !important; }

/* source: leistungspakete.html inline style inline-style-36 */

body.page-leistungspakete .inline-style-36{ margin-top: 0 !important; color: #2980b9 !important; }

/* source: leistungspakete.html inline style inline-style-37 */

body.page-leistungspakete .inline-style-37{ width: 100% !important; border-collapse: collapse !important; }

/* source: leistungspakete.html inline style inline-style-38 */

body.page-leistungspakete .inline-style-38{ border-bottom: 1px solid #ddd !important; }

/* source: leistungspakete.html inline style inline-style-39 */

body.page-leistungspakete .inline-style-39{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-40 */

body.page-leistungspakete .inline-style-40{ padding: 10px !important; text-align: right !important; font-size: 1.2em !important; }

/* source: leistungspakete.html inline style inline-style-41 */

body.page-leistungspakete .inline-style-41{ border-bottom: 1px solid #ddd !important; background: #f9f9f9 !important; }

/* source: leistungspakete.html inline style inline-style-42 */

body.page-leistungspakete .inline-style-42{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-43 */

body.page-leistungspakete .inline-style-43{ padding: 10px !important; text-align: right !important; font-size: 1.2em !important; }

/* source: leistungspakete.html inline style inline-style-44 */

body.page-leistungspakete .inline-style-44{ color: #2980b9 !important; font-size: 0.9em !important; }

/* source: leistungspakete.html inline style inline-style-45 */

body.page-leistungspakete .inline-style-45{ background: #e8f4fc !important; font-weight: bold !important; }

/* source: leistungspakete.html inline style inline-style-46 */

body.page-leistungspakete .inline-style-46{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-47 */

body.page-leistungspakete .inline-style-47{ padding: 10px !important; text-align: right !important; font-size: 1.3em !important; color: #2980b9 !important; }

/* source: leistungspakete.html inline style inline-style-48 */

body.page-leistungspakete .inline-style-48{ font-size: 0.9em !important; }

/* source: leistungspakete.html inline style inline-style-49 */

body.page-leistungspakete .inline-style-49{ margin-top: 15px !important; font-size: 0.95em !important; color: #666 !important; }

/* source: leistungspakete.html inline style inline-style-50 */

body.page-leistungspakete .inline-style-50{ font-size: 1.1em !important; margin-bottom: 10px !important; }

/* source: leistungspakete.html inline style inline-style-51 */

body.page-leistungspakete .inline-style-51{ font-size: 0.95em !important; color: #555 !important; margin-bottom: 20px !important; }

/* source: leistungspakete.html inline style inline-style-52 */

body.page-leistungspakete .inline-style-52{ background: white !important; padding: 20px !important; margin-top: 20px !important; border-radius: 10px !important; border: 2px solid #d4a017 !important; }

/* source: leistungspakete.html inline style inline-style-53 */

body.page-leistungspakete .inline-style-53{ margin-top: 0 !important; color: #d4a017 !important; }

/* source: leistungspakete.html inline style inline-style-54 */

body.page-leistungspakete .inline-style-54{ width: 100% !important; border-collapse: collapse !important; }

/* source: leistungspakete.html inline style inline-style-55 */

body.page-leistungspakete .inline-style-55{ border-bottom: 1px solid #ddd !important; }

/* source: leistungspakete.html inline style inline-style-56 */

body.page-leistungspakete .inline-style-56{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-57 */

body.page-leistungspakete .inline-style-57{ padding: 10px !important; text-align: right !important; font-size: 1.2em !important; }

/* source: leistungspakete.html inline style inline-style-58 */

body.page-leistungspakete .inline-style-58{ border-bottom: 1px solid #ddd !important; background: #f9f9f9 !important; }

/* source: leistungspakete.html inline style inline-style-59 */

body.page-leistungspakete .inline-style-59{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-60 */

body.page-leistungspakete .inline-style-60{ padding: 10px !important; text-align: right !important; font-size: 1.2em !important; }

/* source: leistungspakete.html inline style inline-style-61 */

body.page-leistungspakete .inline-style-61{ color: #d4a017 !important; font-size: 0.9em !important; }

/* source: leistungspakete.html inline style inline-style-62 */

body.page-leistungspakete .inline-style-62{ background: #fff8e6 !important; font-weight: bold !important; }

/* source: leistungspakete.html inline style inline-style-63 */

body.page-leistungspakete .inline-style-63{ padding: 10px !important; }

/* source: leistungspakete.html inline style inline-style-64 */

body.page-leistungspakete .inline-style-64{ padding: 10px !important; text-align: right !important; font-size: 1.3em !important; color: #d4a017 !important; }

/* source: leistungspakete.html inline style inline-style-65 */

body.page-leistungspakete .inline-style-65{ font-size: 0.9em !important; }

/* source: leistungspakete.html inline style inline-style-66 */

body.page-leistungspakete .inline-style-66{ margin-top: 15px !important; font-size: 0.95em !important; color: #666 !important; }

/* source: leistungspakete.html inline style inline-style-67 */

body.page-leistungspakete .inline-style-67{ background: #f9f9f9 !important; padding: 25px !important; margin: 40px 0 !important; border-radius: 12px !important; border-left: 4px solid #555 !important; }

/* source: leistungspakete.html inline style inline-style-68 */

body.page-leistungspakete .inline-style-68{ margin-top: 0 !important; }

/* source: leistungspakete.html inline style inline-style-69 */

body.page-leistungspakete .inline-style-69{ display: grid !important; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important; gap: 15px !important; margin-top: 20px !important; }

/* source: leistungspakete.html inline style inline-style-70 */

body.page-leistungspakete .inline-style-70{ background: white !important; padding: 15px !important; border-radius: 8px !important; }

/* source: leistungspakete.html inline style inline-style-71 */

body.page-leistungspakete .inline-style-71{ color: #666 !important; }

/* source: leistungspakete.html inline style inline-style-72 */

body.page-leistungspakete .inline-style-72{ background: white !important; padding: 15px !important; border-radius: 8px !important; }

/* source: leistungspakete.html inline style inline-style-73 */

body.page-leistungspakete .inline-style-73{ color: #666 !important; }

/* source: leistungspakete.html inline style inline-style-74 */

body.page-leistungspakete .inline-style-74{ background: white !important; padding: 15px !important; border-radius: 8px !important; }

/* source: leistungspakete.html inline style inline-style-75 */

body.page-leistungspakete .inline-style-75{ color: #666 !important; }

/* source: leistungspakete.html inline style inline-style-76 */

body.page-leistungspakete .inline-style-76{ background: white !important; padding: 15px !important; border-radius: 8px !important; }

/* source: leistungspakete.html inline style inline-style-77 */

body.page-leistungspakete .inline-style-77{ color: #666 !important; }

/* source: leistungspakete.html inline style inline-style-78 */

body.page-leistungspakete .inline-style-78{ margin-top: 15px !important; text-align: center !important; }

/* source: leistungspakete.html inline style inline-style-79 */

body.page-leistungspakete .inline-style-79{ color: #555 !important; font-weight: bold !important; }

/* source: leistungspakete.html inline style inline-style-80 */

body.page-leistungspakete .inline-style-80{ margin-top: 0 !important; }

/* source: leistungspakete.html inline style inline-style-81 */

body.page-leistungspakete .inline-style-81{ margin-top: 20px !important; }

/* source: leistungspakete.html inline style inline-style-82 */

body.page-leistungspakete .inline-style-82{ color: #27ae60 !important; font-weight: bold !important; }

/* source: reinigungsservice-niederrhein.html <style> */


    body.page-reinigungsservice-niederrhein{ font-family: Arial, sans-serif; margin: 0; color: #111; }
    body.page-reinigungsservice-niederrhein .wrap{ max-width: 980px; margin: auto; padding: 20px; }
    body.page-reinigungsservice-niederrhein h1{ font-size: 30px; margin-bottom: 10px; }
    body.page-reinigungsservice-niederrhein h2{ margin-top: 28px; }
    body.page-reinigungsservice-niederrhein p{ line-height: 1.6; }
    body.page-reinigungsservice-niederrhein .muted{ color: #555; }
    body.page-reinigungsservice-niederrhein .faq{ border: 1px solid #ddd; border-radius: 10px; overflow: hidden; }
    body.page-reinigungsservice-niederrhein details{ border-top: 1px solid #ddd; padding: 14px 16px; }
    body.page-reinigungsservice-niederrhein details:first-child{ border-top: none; }
    body.page-reinigungsservice-niederrhein summary{ cursor: pointer; font-weight: bold; }
    body.page-reinigungsservice-niederrhein summary::-webkit-details-marker{ display: none; }
    body.page-reinigungsservice-niederrhein .answer{ margin-top: 10px; color: #555; }
    body.page-reinigungsservice-niederrhein .cta{ margin-top: 30px; padding: 18px; background: #f6f6f6; border-radius: 10px; }
    body.page-reinigungsservice-niederrhein .cta a{
      display: inline-block;
      margin-top: 10px;
      background: #111;
      color: #fff;
      padding: 10px 14px;
      text-decoration: none;
      border-radius: 6px;
    }
    body.page-reinigungsservice-niederrhein ul{ margin-left: 20px; }
  

/* source: spende.css */

body.page-spende{
  margin: 0;
  padding: 0;
  background: black url('kerzenhintergrund.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}
body.page-spende .overlay{
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2rem;
  max-width: 700px;
  margin: 3rem auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
body.page-spende h1{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
body.page-spende h1 span{
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.3rem;
}
body.page-spende p{
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 1rem 0;
}
body.page-spende .spendenbox{
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

body.page-spende footer{
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* Slideshow */
body.page-spende .slideshow-container{
  position: relative;
  text-align: center;
  margin: 2rem auto;
  max-width: 80%;
}
body.page-spende .slideshow-container img{
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}
body.page-spende .slide-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.2);
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}
body.page-spende .slide-btn:hover{
  background-color: rgba(255,255,255,0.4);
}
body.page-spende .slide-btn.left{
  left: -1.5rem;
}
body.page-spende .slide-btn.right{
  right: -1.5rem;
}


/* source: spende.html inline style inline-style-83 */

body.page-spende .inline-style-83{ text-align: center !important; }

/* source: spende.html inline style inline-style-84 */

body.page-spende .inline-style-84{ margin: 0.3rem 0 !important; }

/* source: spende.html inline style inline-style-85 */

body.page-spende .inline-style-85{ margin: 0.3rem 0 !important; }

/* source: ueber-uns.html <style> */


  body.page-ueber-uns h1, body.page-ueber-uns h2{
    text-align: center;
    color: #222;
  }

  body.page-ueber-uns h1{
    margin-bottom: 20px;
  }

  /* Team & Dienstleistungen Boxen */
  body.page-ueber-uns .box i{
    font-size: 36px;
    margin-right: 15px;
    color: #27ae60;
  }

  /* Werte Kacheln */
  body.page-ueber-uns .values{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px 0;
  }

  body.page-ueber-uns .value-box{
    background: #e8f4fc;
    border-left: 6px solid #2980b9;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  body.page-ueber-uns .value-box h3{
    margin-top: 0;
  }

  body.page-ueber-uns .cta{
    text-align: center;
    margin-top: 30px;
  }

  body.page-ueber-uns .cta button{
    padding: 15px 30px;
    min-height: 48px;
    font-size: 16px;
    font-weight: bold;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
  }

  @media(max-width:768px){
    body.page-ueber-uns .box{
      flex-direction: column;
    }
    body.page-ueber-uns .box i{
      margin-bottom: 10px;
    }
    body.page-ueber-uns .cta button{
      width: 100%;
    }
  }


/* source: ueber-uns.html inline style inline-style-86 */

body.page-ueber-uns .inline-style-86{ font-size: 1.1rem !important; text-align: center !important; margin: 20px 0 !important; }

/* source: ueber-uns.html inline style inline-style-87 */

body.page-ueber-uns .inline-style-87{ width: 80px !important; height: 80px !important; border-radius: 50% !important; margin-right: 15px !important; }

/* source: ueber-uns.html inline style inline-style-88 */

body.page-ueber-uns .inline-style-88{ width: 80px !important; height: 80px !important; border-radius: 50% !important; margin-right: 15px !important; }

/* source: ueber-uns.html inline style inline-style-89 */

body.page-ueber-uns .inline-style-89{ background: #e9f7ef !important; }

/* source: ueber-uns.html inline style inline-style-90 */

body.page-ueber-uns .inline-style-90{ list-style: none !important; padding: 0 !important; }

/* source: ueber-uns.html inline style inline-style-91 */

body.page-ueber-uns .inline-style-91{ margin-bottom: 10px !important; }

/* source: ueber-uns.html inline style inline-style-92 */

body.page-ueber-uns .inline-style-92{ margin-bottom: 10px !important; }

/* source: ueber-uns.html inline style inline-style-93 */

body.page-ueber-uns .inline-style-93{ margin-bottom: 10px !important; }

/* source: ueber-uns.html inline style inline-style-94 */

body.page-ueber-uns .inline-style-94{ margin-bottom: 10px !important; }

/* source: ueber-uns.html inline style inline-style-95 */

body.page-ueber-uns .inline-style-95{ margin-bottom: 10px !important; }

/* source: ueber-uns.html inline style inline-style-96 */

body.page-ueber-uns .inline-style-96{ margin-bottom: 10px !important; }

/* source: ueber-uns.html inline style inline-style-97 */

body.page-ueber-uns .inline-style-97{ margin-bottom: 10px !important; }

/* source: ueber-uns.html inline style inline-style-98 */

body.page-ueber-uns .inline-style-98{ text-align: center !important; }

/* source: visitenkarte.html <style> */


    body.page-visitenkarte{
      background: #eaeaea;
      font-family: 'Segoe UI', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
    }

    body.page-visitenkarte .wrapper{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    body.page-visitenkarte .card-container{
      width: 100%;
      max-width: 360px;
      height: 220px;
      perspective: 1000px;
    }

    body.page-visitenkarte .card{
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.8s;
      transform-origin: center;
    }

    body.page-visitenkarte .card.flipped{
      transform: rotateY(180deg);
    }

    body.page-visitenkarte .card-side{
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      backface-visibility: hidden;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
    }

    body.page-visitenkarte .card-front{
      background: linear-gradient(135deg, #00bfae, #006f91);
      justify-content: center;
    }

    body.page-visitenkarte .card-back{
      background: #f4f4f4;
      color: #333;
      transform: rotateY(180deg);
      text-align: center;
    }

    body.page-visitenkarte .logo{
      max-width: 100%;
      height: auto;
    }

    body.page-visitenkarte .title{
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    body.page-visitenkarte .footer{
      font-size: 0.85rem;
      opacity: 0.9;
      position: absolute;
      bottom: 10px;
      left: 20px;
      color: #fff;
    }

    body.page-visitenkarte .footer a{
      color: #fff;
      text-decoration: none;
    }

    body.page-visitenkarte .contact-info{
      margin-bottom: 20px;
    }

    body.page-visitenkarte .qr-code{
      width: 100px;
      height: 100px;
      border-radius: 8px;
      margin-top: auto;
    }

    body.page-visitenkarte .info-text{
      font-size: 0.9rem;
      color: #555;
      max-width: 360px;
      line-height: 1.4;
    }
  

/* source: visitenkarte.html inline style inline-style-99 */

body.page-visitenkarte .inline-style-99{ display: flex !important; align-items: center !important; gap: 12px !important; }

/* source: visitenkarte.html inline style inline-style-100 */

body.page-visitenkarte .inline-style-100{ padding: 8px 14px !important; background: #00bfae !important; border: none !important; color: white !important; border-radius: 8px !important; font-weight: bold !important; cursor: pointer !important; }

/* source: zertifikat.html <style> */


    body.page-zertifikat{
      font-family: Arial, sans-serif;
      background-color: #f5f5f5;
      padding: 20px;
    }
    body.page-zertifikat main{
      max-width: 1200px;
      margin: 0 auto;
    }
    body.page-zertifikat h1{
      text-align: center;
      font-size: 2.5em;
      margin-bottom: 30px;
    }
    body.page-zertifikat .certificates{
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    body.page-zertifikat .certificate{
      width: 300px;
      text-align: center;
    }
    body.page-zertifikat .certificate img{
      width: 100%;
      border: 2px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      cursor: pointer;
      transition: transform 0.3s;
    }
    body.page-zertifikat .certificate img:hover{
      transform: scale(1.05);
    }

    /* Lightbox Overlay */
    body.page-zertifikat .lightbox{
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
    }

    body.page-zertifikat .lightbox img{
      max-width: 80%;
      max-height: 80%;
    }

    body.page-zertifikat .lightbox:target{
      display: flex;
    }

/* ---------------------- Global Base ---------------------- */
html, body{
  margin: 0;
  padding: 0;
}

body{
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* =========================================================
   Phase 2 – UI Micro-Animations (global, dezent)
   ========================================================= */

/* Buttons & klickbare Elemente */
button,
a.button,
.cta-button,
.buttons a {
  transition:
    background-color 160ms ease-out,
    color 160ms ease-out,
    box-shadow 160ms ease-out,
    transform 160ms ease-out;
}

button:hover,
a.button:hover,
.cta-button:hover,
.buttons a:hover {
  transform: translateY(-1px);
}

/* Karten / Boxen */
.tile,
.category,
.service-box,
.value-box,
.box,
.portrait-block {
  transition:
    box-shadow 180ms ease-out,
    transform 180ms ease-out;
}

.tile:hover,
.category:hover,
.service-box:hover,
.value-box:hover,
.box:hover,
.portrait-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
  
