/**
 * Minified by jsDelivr using clean-css v5.3.2.
 * Original file: /npm/modern-normalize@3.0.1/modern-normalize.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
*,::after,::before{box-sizing:border-box}html{font-family:system-ui,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';line-height:1.15;-webkit-text-size-adjust:100%;tab-size:4}body{margin:0}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:currentcolor}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}
/*# sourceMappingURL=/sm/d2d8cd206fb9f42f071e97460f3ad9c875edb5e7a4b10f900a83cdf8401c53a9.map */


:root {
    /* Farben */
    --text: #333333;
    --header: azure;
    --bg: #f7f7f7;
    --primary: #006ae0;
    --primary-hover: #0056b3;
    --border: #cccccc;
    --border-focus: #007bff;

    /* Abstände, Layout */
    --space: 1rem;
    --max-width: 1000px;
    --nav-height: 70px;
    --nav-align: space-between;
    --radius: 5px;
    --shadow: 0 2px 4px #cccccc;
    --transition: all 0.3s ease-in-out;
}

/* ====================================================================================================
   Layout
==================================================================================================== */
html {
    overflow-y: scroll;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    max-width: var(--max-width);
    margin: var(--nav-height) auto 0 auto;
    padding: var(--space);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: var(--header);
    box-shadow: var(--shadow);
    z-index: 1000;
}

h1 { font-size: 1.4rem; }
h2 { font-size: 1.25rem; }
h3 { font-size: 1.1rem; }

section {
    margin-bottom: 1rem;
    padding: 0 var(--space) var(--space) var(--space);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    /*background-color: var(--bg);*/
    box-shadow: var(--shadow);
    overflow: hidden;
    scroll-margin-top: calc(var(--nav-height) + var(--space));
}

footer {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: var(--space);
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space);
    margin: 0 auto;
    max-width: var(--max-width);
    padding: var(--space);
    height: 100%;
}

.wrapper h1 {/*Headline nach oben*/
    padding-bottom: 0;
}

.wrapper h1 a {
    text-decoration: none;
    color: var(--text);
}

.wrapper nav ul {
    display: none;
    gap: var(--space);
    padding: var(--space);
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    background-color: var(--header);
    margin: 0;
    width: 100%;
    box-shadow: var(--shadow);
}

.wrapper nav ul.active {
    display: flex;
}

.wrapper nav ul a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 0;
}

.wrapper nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px; /*Dicke des Unterstrichs*/
    width: 0;
    bottom: 2px; /*Abstand zwischen Text und Unterstrich*/
    background-color: currentColor;
    transition: var(--transition);
}

.wrapper nav ul a:hover::after {
    width: 100%;
}

/* Unterstrich für aktiven Link */
.wrapper nav ul a.active::after {
    width: 100%;
}

/* Optional: Farbe ändern wie Hover (falls du willst) 
.wrapper nav ul a.active {
    color: var(--primary-hover);
    font-weight: bold;
}
*/
.wrapper nav button {
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    background-color: var(--header);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
}

.logo-img {
    display: block;
    width: 1.6rem;
    height: auto;
}

.navbutton {
    border: none; 
    cursor: pointer; 
    font-size: 1.5rem; 
    color: var(--text); 
    text-decoration: none; 
    background-color: var(--header);
}

@media (min-width: 1000px) {
    .wrapper {
        justify-content: var(--nav-align);
        gap: 50px;
    }

    .wrapper nav button {
        display: none;
    }

    .wrapper nav ul {
        display: flex;
        position: static;
        box-shadow: none;
        flex-direction: row;
        gap: var(--space);
        padding: 0;
    }
  

}

@media (min-width: 1000px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
}

/* ====================================================================================================
   Links (global)
==================================================================================================== */
a {
    color: var(--primary);
    text-decoration: underline dotted;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* ====================================================================================================
   Bilder (global)
==================================================================================================== */
img {
    border-radius: var(--radius);
}

/* ====================================================================================================
   Tables
==================================================================================================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space);
}

table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: bold;
    border-bottom: 1px solid var(--border);
}

table tbody tr {
    transition: background-color 0.3s ease;
}

table tbody tr:hover {
    background-color: var(--bg);
}
/*
table tbody tr:last-child td {
    border-bottom: none;
}
*/
table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

/* ====================================================================================================
   Forms
==================================================================================================== */
form {
    width: 100%;
    padding: var(--space);
    background-color: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

form textarea {
    height: 7rem;
    max-height: 10rem;
    resize: vertical;
}

form input[type="text"],
form input[type="email"],
form input[type="number"],
form input[type="date"],
form input[type="password"],
form textarea {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    width: 100%;
    margin-bottom: var(--space);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="number"]:focus,
form input[type="date"]:focus,
form input[type="password"]:focus,
form textarea:focus {
    border-color: var(--border-focus);
    outline: none;
}

form button, .button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius);
    text-decoration: none;
}

form button:hover, .button:hover{
    background-color: var(--primary-hover);
    color: white;
}

.button-whatsapp {
    background-color: #25D366;
}

.button-whatsapp:hover {
    background-color: #20B354;
}

form.button-only {
    all: unset;         /* setzt ALLES zurück */
    display: inline;    /* sorgt dafür, dass es sich wie Text verhält */
}

/* ====================================================================================================
   Details
==================================================================================================== */
details {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    background-color: var(--bg);
    transition: var(--transition);
}

details[open] {
    background-color: var(--bg);
    border-color: var(--border);
}

details form {
    border: none;
}

summary {
    cursor: pointer;
    font-weight: bold;
    padding: 0.5rem 0;
}

summary:hover {
    color: var(--primary-hover);
}

/* ====================================================================================================
   Swiper 
==================================================================================================== */
.swiper-slide {
    background-color: var(--bg);
    padding: var(--space);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    /*height: auto;*/
}

.swiper-slide p{
    margin: 0;
}

/* ====================================================================================================
   Stars 
==================================================================================================== */
.star-rating {
    font-size: 1.5rem;
    background: linear-gradient(to right, gold var(--fill), silver var(--fill));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0;
    line-height: 1;
}

/* ====================================================================================================
   Icons 
==================================================================================================== */
.icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.7rem;
    fill: var(--text);
}

.icon-button {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
    fill: white;
}

/* ====================================================================================================
   Scroll to Top 
==================================================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: var(--space);
    right: var(--space);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    visibility: hidden;
    z-index: 1001;
    transition: var(--transition);
}

.scroll-to-top.visible {
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1);
    opacity: 1;
}

.scroll-to-top .icon-button {
    transform: translateX(0.2rem);
}

/* ====================================================================================================
   Utility Klassen 
==================================================================================================== */
.text-center {
    text-align: center;
}

.margin-top {
    margin-top: var(--space);
}

.margin-bottom {
    margin-bottom: var(--space);
}

.padding-top {
    padding-top: var(--space);
}

.padding-bottom {
    padding-bottom: var(--space);
}

