/**
 * 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 {
    /* Abstände, Layout */
    --max-width: 1000px;
    --header-height: 70px;
    --nav-align: flex-start; /*flex-start; space-between*/
    --space: 1rem;
    --radius: 5px;
    --h1height: 1.5rem;
    
    /* Farben */
    --header-color: azure;
    --nav-color: white;
    --bg: #f0f0f0;
    --text: #333333;
    --primary: #006ae0;
    --primary-hover: #0056b3;
    --border: 1px solid #cccccc;
    --border-color: #cccccc;
    --border-color-focus: #007bff;
    
    /* Effekte */
    --shadow: 0 2px 4px #cccccc;
    --transition: all 0.2s ease-in-out;
}

/* ======================================================================
Layout
====================================================================== */

html {
    overflow-y: scroll;
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    padding: var(--header-height)  var(--space) var(--space) var(--space);
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--header-color);
    border-bottom: var(--border);
    padding: 0 var(--space); 
    z-index: 12;
}

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

.header-container h1 a {
    text-decoration: none;
    color: var(--text);
    transition: none;
}

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

.logo-img {
    display: block;
    width: var(--h1height);
    height: auto;
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
}

.nav-page {
    max-width: var(--max-width);
    margin: 0 auto;
    display: none;
}

.nav-responsive {
    width: 100%; 
    position: fixed;  
    top: 70px;
    left: 0; 
    padding: var(--space);  
    display: none;
    background-color: var(--nav-color);
    border-bottom: var(--border);
}

.nav-container{  
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space);
    align-items: stretch; 
}

.nav-container ul{ 
    display: flex;
    gap: var(--space);
    list-style: none;
    margin: 0 var(--space);
    padding: 0;
    flex-direction: column;
}

.hamburger, .hamburger-navpage {
    border: none;
    cursor: pointer;
    font-size: var(--h1height);
    background-color: var(--header);
}
 

@media (min-width: 1000px) {
    .nav-responsive {
        position: static;
        top: auto;
        left: auto;
        padding: 0;
        display: block;
        background-color: transparent;
        border-bottom: none;
      }

    .nav-container{ 
        max-width: none;
        margin: 0;
        display: flex;
        flex-direction: row;
        gap: var(--space);
        align-items: center; 
    }

    .nav-container ul{ 
        flex-direction: row;
        gap: var(--space);
        margin: 0; 
    }
        
    .nav-container.right{
        justify-content: flex-end;
    }
    
    .nav-container.left-right{
        justify-content: space-between;
    }
    
    .nav-container.left{
        justify-content: flex-start;
    }
      
    .hamburger {
        display: none;
    }
} 

/* ======================================================================
Links
====================================================================== */

a {
    color: var(--primary);
    text-decoration: underline dotted;
    transition: var(--transition);
}

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

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

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

nav ul a:not(.button):hover::after {
    width: 100%;
}

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

nav ul a.active {
    /*
    color: var(--primary-hover);
    font-weight: bold;
    */
}

/* ======================================================================
Überschriften
====================================================================== */

h1 { font-size: 1.3rem;  white-space: nowrap;}
h2 { font-size: 1.2rem; }
h3 { font-size: 1.1rem; }

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

/* ======================================================================
Bilder global
====================================================================== */

img {
    border-radius: var(--radius);
}

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

/* ======================================================================
Sections
====================================================================== */

section {
    margin-bottom: 1rem;
    padding: 0 var(--space) var(--space) var(--space);
    border: 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
====================================================================== */

footer {
    display: flex;
    justify-content: center;
    align-items: center; 
    /*border-top: var(--border);*/
    margin-top: 3rem;
    padding-top: var(--space);
}

/* ======================================================================
Tabellen
====================================================================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space) 0;
}

table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: bold;
    border-bottom: 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: var(--border);
    white-space: nowrap;
}

/* ======================================================================
Forms
====================================================================== */

form {
    width: 100%;
    padding: var(--space);
    background-color: var(--bg);
    border: 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: 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-color-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.5rem 1.2rem;
    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
====================================================================== */

/* Alle <details>, aber nicht die innerhalb von <nav> */
details:not(nav details) {
    border: var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    background-color: var(--bg);
    transition: var(--transition);
}

/* Alle <details> mit dem Attribut [open], aber nicht die innerhalb von <nav> */
details:not(nav details)[open] {
    background-color: var(--bg);
    border-color: var(--border-color);
}

/* <details> innerhalb eines Formulars, aber nicht innerhalb von <nav> */
details:not(nav details) form {
    border: none;
}

/* Alle <summary>, aber nicht innerhalb von <nav> */
summary:not(nav details summary) {
    cursor: pointer;
    font-weight: bold;
    padding: 0.5rem 0;
}

/* Hover-Effekt auf <summary>, aber nicht innerhalb von <nav> */
summary:hover:not(nav details summary) {
    color: var(--primary-hover);
}

/* ======================================================================
Swiper
====================================================================== */

.swiper-slide {
    background-color: var(--bg);
    padding: var(--space);
    border: 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: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    z-index: 1000;
    transition: var(--transition);
}

.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
====================================================================== */

.display-block {
    display: block;
}

.display-flex {
    display: flex;
}

.display-none {
    display: none;
}

.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);
}

