body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fdfdfd;
}
a{
    color: #000000;
    text-decoration: none;
}
.Slogen{
    width: 70%;
}
.logo{
    width: 30px
}

header {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    padding: 10px;
    text-align: center;
    color: black;
    font-weight: bold;
    border-top: 5px solid black;
    border-bottom: 5px solid black;
    position: relative;
}
.menu {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    width: 52px;
    position: absolute;
    margin-top: -2vh;
  }
  .menu:hover{
    background-color: transparent;
  }
  .line {
    fill: none;
    stroke: rgb(0, 0, 0);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  

.menu-dropdown {
    position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        display: none;
        position: absolute;
        background: white;
        width: 200px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        overflow: hidden;
}


.menu-dropdown.open {
    display: block;
}

.menu-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #ddd;
}

.menu-dropdown a:hover {
    background: #4ea4a5;
    color: white;
}

@media (max-width: 768px) {
    .menu {
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        padding: 0;
        width: 52px;
        position: relative;
        margin-top: -2vh;
      }
    .menu-dropdown {
        position: relative;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        display: none; 
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
}

    .menu-dropdown a {
        font-size: 18px;
        padding: 15px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }    
}

button {
    background-color: #4ea4a5; 
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    margin: 5px;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #178b86; /* noch etwas dunkler */
}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Arial Black', sans-serif;
}
.divider {
    border-top: 2px solid black;
    margin: 10px 0;
}
.slideshow-container {
    max-width: 100%;
    margin: 20px auto 0 auto;
    overflow: hidden;
}
.slides {
    display: none;
    width: 100%;
}
.active {
    display: block;
}
.booking-process {
    text-align: center;
    padding: 40px;
}
.booking-process h2 {
    margin-bottom: 30px;
}
.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.step {
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 250px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.step:hover {
    transform: translateY(-5px);
}
.step strong {
    font-size: 18px;
}
.kontakinfobox{
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 50%;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin-left: auto;
    margin-right: auto;	
}
.services {
    text-align: center;
    padding: 50px;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.service-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}
.service-item:hover {
    transform: translateY(-5px);
}
.service-item span {
    font-weight: bold;
    background: #4ea4a5;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
}
        .map-section {
            background: linear-gradient(to right, #4ea4a5, #4ea4a5);
            color: white;
            padding: 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        iframe {
            width: 100%;
            max-width: 800px;
            height: 450px;
            border: none;
        }
        .map-text {
            max-width: 500px;
            padding-left: 20px;
        }
        @media (min-width: 768px) {
            .map-section {
                flex-direction: row;
                justify-content: center;
            }
            .map-text {
                padding-left: 20px;
            }
        }
        @media (max-width: 767px) {
            .map-text {
                padding-left: 0;
                text-align: center;
            }
        }

.contact-section {
    background: #4ea4a54d;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact-info {
    max-width: 500px;
}
.contact-box { 
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.contact-box h3 {
    margin-bottom: 10px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-section.social-media {
    width: 100%;
    text-align: center;
}

.bottom-footer {
    background: #4ea4a5;
    color: white;
    text-align: center;
    padding: 10px;
}
.safety-section {
    text-align: center;
    padding: 50px;
}
.safety-section h2 {
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: normal;
}
.safety-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.safety-item {
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    width: 220px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}
.safety-item:hover {
    transform: translateY(-5px);
}
.safety-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.safety-item h3 {
    margin-bottom: 10px;
}

button {
    cursor: pointer;
}

@media (min-width: 1024px) {
.steps-container {
justify-content: space-between;
max-width: 900px;
margin: 0 auto;
}

.step {
width: 300px;
}

.kontakinfobox {
width: 350px;
}

.services-list {
max-width: 1100px;
margin: 0 auto;
}

.service-item {
width: 350px;
}

.safety-container {
max-width: 1100px;
margin: 0 auto;
}

.safety-item {
width: 280px;
}

.map-section {
flex-direction: row;
align-items: flex-start;
padding: 70px;
}

.map-text {
padding-left: 50px;
max-width: 600px;
}

.contact-section {
flex-direction: row;
justify-content: space-around;
}

.contact-info {
max-width: 600px;
}
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 20px;
    flex-wrap: wrap;
}
.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}
.footer-section h3 {
    margin-bottom: 10px;
}
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.social-icons img:hover {
    transform: scale(1.1);
}
.footer-bottom {
    background: #94e5e6;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}


.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: left;
}
.about-text {
    max-width: 600px;
}
.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.credit {
    font-size: 15px; /* vorher 13px */
}

.credit a {
    text-decoration: underline;
    color: #333;
    font-weight: 500;
}

.credit a:hover {
    color: #000;
}

.invoice-access {
    padding: 20px;
}

.invoice-access-card {
    max-width: 860px;
    margin: 20px auto 0;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #d7ecec;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(25, 55, 65, 0.08);
}

.invoice-access-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
}

.invoice-access-card p {
    margin: 0 0 12px;
}

.invoice-auth-note {
    color: #b42318;
    font-weight: bold;
}

.invoice-access-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.invoice-login-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.invoice-login-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: bold;
}

.invoice-login-form input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid #bfd9d9;
    font-size: 15px;
}

.invoice-secondary-button {
    background-color: #355f60;
}

.invoice-secondary-button:hover {
    background-color: #274849;
}

.invoice-generator-page {
    padding: 24px;
}

.invoice-toolbar {
    max-width: 1400px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.invoice-toolbar h1,
.invoice-toolbar p {
    margin: 0;
}

.invoice-toolbar p {
    margin-top: 8px;
    max-width: 700px;
}

.invoice-toolbar-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.invoice-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.invoice-editor,
.invoice-preview-column {
    display: grid;
    gap: 20px;
}

.invoice-preview-column {
    justify-items: start;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.invoice-preview-intro {
    max-width: 1200px;
}

.invoice-preview-intro h2,
.invoice-preview-intro p {
    margin: 0;
}

.invoice-preview-intro p {
    margin-top: 8px;
}

.invoice-panel,
.invoice-preview {
    background: #ffffff;
    border: 1px solid #d7ecec;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(25, 55, 65, 0.08);
}

.invoice-panel {
    padding: 22px;
}

.invoice-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.invoice-panel-header h2,
.invoice-panel-header p {
    margin: 0;
}

.invoice-panel-header p {
    margin-top: 8px;
}

.invoice-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.invoice-form-grid label,
.invoice-item-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: bold;
}

.invoice-form-grid input,
.invoice-item-field input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid #bfd9d9;
    font-size: 15px;
    font-weight: normal;
}

.invoice-form-grid input::placeholder,
.invoice-item-field input::placeholder,
.invoice-login-form input::placeholder {
    color: #7b8f90;
    opacity: 1;
}

.invoice-form-grid input:focus,
.invoice-item-field input:focus {
    outline: 2px solid rgba(78, 164, 165, 0.2);
    border-color: #4ea4a5;
}

.invoice-form-grid input[readonly] {
    background: #eef4f4;
    color: #567273;
    cursor: not-allowed;
}

.invoice-grid-full {
    grid-column: 1 / -1;
}

.invoice-panel-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.invoice-company-status {
    min-height: 20px;
    margin: 12px 0 0;
    font-weight: bold;
}

.invoice-company-status[data-state="error"] {
    color: #b42318;
}

.invoice-company-status[data-state="success"] {
    color: #176448;
}

.invoice-items {
    display: grid;
    gap: 14px;
}

.invoice-item-row {
    display: grid;
    grid-template-columns: minmax(180px, 2fr) repeat(2, minmax(110px, 1fr)) minmax(120px, auto) auto;
    gap: 12px;
    align-items: end;
    padding: 14px;
    border: 1px solid #dbe7e7;
    border-radius: 14px;
    background: #f8fbfb;
}

.invoice-item-description {
    min-width: 0;
}

.invoice-item-total {
    padding: 0 4px 8px;
}

.invoice-item-total span {
    font-size: 12px;
    color: #516869;
}

.invoice-item-total strong {
    font-size: 16px;
}

.invoice-item-action {
    justify-content: end;
}

.invoice-remove-button {
    background-color: #8e4b4b;
}

.invoice-remove-button:hover {
    background-color: #743939;
}

.invoice-total-box {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #edf7f7;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    font-size: 18px;
}

.invoice-preview {
    width: 794px;
    min-width: 794px;
    max-width: none;
    box-sizing: border-box;
    padding: 28px;
}

.invoice-preview-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: start;
    padding-bottom: 22px;
    border-bottom: 1px solid #e1eded;
}

.invoice-preview-logo {
    width: 360px;
    max-width: 100%;
    object-fit: contain;
}

.invoice-preview-company p {
    margin: 0 0 8px;
    text-align: right;
}

.invoice-preview-company p:first-child {
    font-weight: bold;
    font-size: 20px;
}

.invoice-preview-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 22px 0;
}

.invoice-preview-meta span,
.invoice-preview-customer span {
    display: block;
    margin-bottom: 6px;
    color: #516869;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.invoice-preview-customer {
    padding: 0 0 20px;
}

.invoice-preview-customer strong,
.invoice-preview-customer p {
    display: block;
    margin: 0 0 8px;
}

.invoice-preview-table {
    width: 100%;
    border-collapse: collapse;
}

.invoice-preview-table th,
.invoice-preview-table td {
    padding: 12px;
    border-bottom: 1px solid #e5efef;
    text-align: left;
}

.invoice-preview-table th:last-child,
.invoice-preview-table td:last-child {
    text-align: right;
}

.invoice-preview-summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 24px 0 18px;
    font-size: 20px;
}

.invoice-qr-section {
    margin-top: 14px;
    padding-top: 22px;
    border-top: 1px solid #e1eded;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.invoice-qr-code {
    width: 220px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #dbe7e7;
    border-radius: 14px;
    background: #ffffff;
    box-sizing: border-box;
}

.invoice-qr-code svg {
    display: block;
    width: 100%;
    height: auto;
}

.invoice-qr-placeholder {
    margin: 0;
    text-align: center;
    color: #516869;
    font-size: 14px;
}

.invoice-qr-details {
    flex: 1;
    min-width: 220px;
}

.invoice-qr-details h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.invoice-qr-details p {
    margin: 0 0 8px;
}

@page {
    size: A4 portrait;
    margin: 12mm;
}

@media print {
    html,
    body {
        background: #ffffff;
    }

    header,
    footer,
    .menu-dropdown,
    .invoice-toolbar,
    .invoice-editor,
    .invoice-preview-intro {
        display: none !important;
    }

    body.invoice-print-mode .invoice-generator-page {
        padding: 0;
    }

    body.invoice-print-mode .invoice-layout,
    body.invoice-print-mode .invoice-preview-column {
        display: block;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    body.invoice-print-mode .invoice-preview {
        width: 186mm;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: #ffffff;
        break-inside: auto;
        page-break-inside: auto;
    }

    body.invoice-print-mode .invoice-preview-top,
    body.invoice-print-mode .invoice-preview-meta,
    body.invoice-print-mode .invoice-preview-customer,
    body.invoice-print-mode .invoice-preview-summary,
    body.invoice-print-mode .invoice-qr-section,
    body.invoice-print-mode .invoice-preview-table tr {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    body.invoice-print-mode .invoice-preview-table thead {
        display: table-header-group;
    }

    body.invoice-print-mode .invoice-preview-table tfoot {
        display: table-footer-group;
    }

    body.invoice-print-mode .invoice-preview-company p {
        text-align: right;
    }

    body.invoice-print-mode .invoice-qr-code {
        width: 42mm;
        min-height: 42mm;
        padding: 0;
        border: none;
    }

    body.invoice-print-mode .invoice-qr-code svg {
        width: 42mm;
        height: 42mm;
    }
}

@media (max-width: 768px) {
    .invoice-generator-page {
        padding: 16px;
    }

    .invoice-form-grid {
        grid-template-columns: 1fr;
    }

    .invoice-item-row {
        grid-template-columns: 1fr;
    }

    .invoice-item-action {
        justify-content: start;
    }
}
