@import url(fonts.css);
@import url(header.css);
@import url(footer.css);
@import url(layout.css);
@import url(main_index.css);
@import url(cookies.css);
@import url(unterseiten/galerie.css);
@import url(unterseiten/artists.css);
@import url(unterseiten/booking.css);
@import url(unterseiten/kontakt.css);
@import url(unterseiten/success.css);
@import url(unterseiten/faq.css);
@import url(unterseiten/rechtliches.css);
@import url(unterseiten/about.css);
@import url(unterseiten/azubis.css);
@import url(unterseiten/pflege.css);
@import url(unterseiten/guestspots.css);

/* ---- Standardeinstellungen ------------------------------------------------ */
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Schrift */
    color: var(--foreground);
    font-size: var(--font-size);
    --font-size: clamp(16px, 2vw, 24px);
    --fs-remain: clamp(2.5rem, -0.1399rem + 10.7721vw, 6.325rem);
    --fs-about: clamp(1.1rem, -0.1399rem + 4.3721vw, 2.325rem);
    --fs-about-rm: clamp(1.9rem, -0.1399rem + 7.3721vw, 3.825rem);
    
    --font-size-2: clamp(1.62rem, 1.509rem + 0.4935vw, 1.9531rem);
    --font-size-3: clamp(1.944rem, 1.7782rem + 0.7369vw, 2.4414rem);
    --font-size-4: clamp(2.3328rem, 2.0931rem + 1.0651vw, 3.0518rem);
    --font-size-5: clamp(2.7994rem, 2.4609rem + 1.5042vw, 3.8147rem);
    --font-size-6: clamp(3.3592rem, 2.8895rem + 2.0876vw, 4.7684rem);
    --font-size-7: clamp(4.0311rem, 3.3879rem + 2.8583vw, 5.9605rem);
    --font-size-8: clamp(4.8373rem, 3.9662rem + 3.8715vw, 7.4506rem);

    --fs-main: clamp(2.2rem, -0.1399rem + 6.3721vw, 2.725rem);
    /* Farbauswahl */
    --background: #f8f8ff;
    --foreground: #28282A;
    --lightgrey: #868686;
    --akzent: #1b4892;
    /* Hamburger-Menu-Einstellungen */
    --bar-width: 30px;
    --bar-height: 2px;
    --hamburger-gap: 8px;
    --hamburger-margin: 25px;
    --animation-timing: 300ms ease-in-out;
    --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
    /* Navigationsleiste */
    --nav-height: 10vh;
    --sidebar-margin-top: 9.9vh;
    --border: .35rem;
    /* Animate on scroll */
    --aos: 500ms ease-in-out;
}
body {
    min-height: 100vh;
    height: 100dvh;
    font-family: 'Archivo Narrow';
    font-weight: 400;
    font-style: normal;
    background-color: var(--background);
    padding-top: var(--nav-height);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
main {
    flex-grow: 1;
    overflow: hidden;
}
main, footer {
    flex-shrink: 0;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Montserrat';
    font-weight: 700;
    margin: 0;
    padding: 0;
    border: 0;
}
a {
    text-decoration: none;
    color: var(--foreground);
}
    /* ---- Lightbox ---------------- */
    #lightbox {
        position: fixed;
        z-index: 1000;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .8);
        display: none;
    }
    #lightbox.active {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #lightbox > img {
        max-width: 90%;
        max-height: 80%;
    }

/* ---- Padding und Margin-Klassen ---------------- */

/* p = main-padding left and right */
.p-lr { 
    padding: 0 max(2vw, .9rem);
}
/* p-tb = padding top and bottom */
.p-tb {
    padding: max(1vh, 1.3rem) 0;
}
/* m-t-b = Margin top and bottom */
.m-tb {
    margin: 1rem auto;
    cursor: none;
}

/* ---- Bilder ---------------- */
img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.img {
    cursor: pointer;
    border-radius: var(--border);
}

/* ---- Underline Animation ---------------- */
.line:hover {
    text-decoration: underline;
}
.line {
    text-decoration: none;
    color: var(--foreground);
}

/* ---- Animation on Scroll ---------------- */
.hidden-up {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(50%);
    transition: all var(--aos);
}
.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}