@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/CabinetGrotesk-Extralight.woff2') format('woff2'),
         url('../assets/fonts/CabinetGrotesk-Extralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/CabinetGrotesk-Light.woff2') format('woff2'),
         url('../assets/fonts/CabinetGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/CabinetGrotesk-Regular.woff2') format('woff2'),
         url('../assets/fonts/CabinetGrotesk-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/CabinetGrotesk-Medium.woff2') format('woff2'),
         url('../assets/fonts/CabinetGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/CabinetGrotesk-Bold.woff2') format('woff2'),
         url('../assets/fonts/CabinetGrotesk-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/CabinetGrotesk-Extrabold.woff2') format('woff2'),
         url('../assets/fonts/CabinetGrotesk-Extrabold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cabinet Grotesk';
    src: url('../assets/fonts/CabinetGrotesk-Black.woff2') format('woff2'),
         url('../assets/fonts/CabinetGrotesk-Black.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Space Mono';
    src: url('../assets/fonts/space-mono-v15-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 4rem;
}

h1 {
    font-size: 84px;
    line-height: 1;
    letter-spacing: -0.2rem;
}

h2 {
    font-size: 72px;
    line-height: 1;
    letter-spacing: -0.1rem;
}

h3 {
    margin: 2rem 0 1rem 0;
}

h4 {
    margin: 1rem 0;
}

p {
    margin-bottom: 1.5rem;
}

:root {
    --gray: #8d8c8c;
    --dark-gray: #1b1b1b;
    --light-gray: #ebebeb;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #FFF;
}

.bold {
    font-weight: 700;
}

.button-light {
    display: inline-block;
    padding: 0.7rem 1.6rem 0.7rem 2rem;
    background-color: #FFF;
    color: #000;
    border: 1px solid;
    border-color: #000;
    border-radius: 28px;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    transition: background-color 0.5s ease-in-out;
}

.button-dark {
    display: inline-block;
    padding: 0.7rem 1.6rem 0.7rem 2rem;
    background-color: #000;
    color: #FFF;
    border: 1px solid;
    border-color: #FFF;
    border-radius: 28px;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    transition: background-color 0.5s ease-in-out;
}

.button-light:hover {
    background-color: var(--light-gray);
    color: #000;
}


.button-dark:hover {
    background-color: var(--dark-gray);
}

.monospace {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 2;
}

.fade-in-heading {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

main {
    margin-top: 67px;
}

hr {
    border: 1px solid var(--gray);
}

/* --------------------------------------- HEADER --------------------------------------- */

header {
    background-color: #000;
    border-bottom: 1px solid #FFF;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 16px 0;
    width: 100%;
}

header .container .logo img {
    display: block;
    margin: 0 auto;
    height: 40px;
    width: auto;
}

/* --------------------------------------- HERO --------------------------------------- */

#hero {
    background-color: #FFF;
}

#hero .container {
    display: flex;
    align-items: center;
}

#hero .container .item-1 {
    width: 40%;
}

#hero .container .item-2 {
    width: 60%;
}

#hero img {
    max-width: 120%;
    height: auto;
}

/* --------------------------------------- PREISE --------------------------------------- */

#preise {
    background-color: #000;
    color: #FFF;
    padding: 10rem 0;
    margin-top: -10px;
}

#preise .mwst {
    font-family: 'Cabinet Grotesk', sans-serif;
}

#preise .preisliste {
    margin: 0 auto;
}

#preise .preis-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 24px 0;
    position: relative;
}

#preise .service {
    padding-right: 18px;
    background-color: #000;
    z-index: 2;

}

#preise .preis {
    flex-shrink: 0;
    padding-left: 24px;
    background-color: #000;
    z-index: 2;
}

#preise .preis-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50%;
    height: 1px;
    background-color: var(--dark-gray)
}

#preise .details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

#preise .details p:last-child {
    font-size: 14px;
    color: var(--gray);
}

/* --------------------------------------- LOCATION --------------------------------------- */

#location {
    background-color: #FFF;
}

#location .container {
    display: flex;
    align-items: center;
}

#location .container .item-1 {
    width: 40%;
}

#location .container .item-2 {
    width: 60%;
}

#location .item-2 img {
    max-width: 120%;
    height: auto;
}

#location .svg-icon {
    filter: invert(76%) sepia(2%) saturate(0%) hue-rotate(19deg) brightness(89%) contrast(87%);
    height: 36px;
    width: auto;
}

#location .adresse {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

/* --------------------------------------- KONTAKT --------------------------------------- */

#kontakt {
    background-color: #000;
    color: #FFF;
    padding: 10rem 0;
    margin-top: -10px;
}

#kontakt .buttons {
    display: flex;
    gap: 24px;
    margin-top: 4rem;
}

/* --------------------------------------- FOOTER --------------------------------------- */

footer {
    background-color: #000;
    color: #FFF;
    padding-top: 10rem;
}

footer img {
    display: block;
    margin: 0 auto;
    height: 100px;
    width: auto;
}

footer #FooterText {
    display: flex;
    justify-content: space-between;
    padding: 5rem 0;
}

footer #copyright {
    padding: 18px 0;
    border-top: 1px solid #FFF;
    display: flex;
    justify-content: space-between;
}

footer #copyright div {
    display: flex;
    gap: 24px;
}

footer #copyright p {
    margin: 0;
}

/* --------------------------------------- IMPRESSUM/DATENSCHUTZ --------------------------------------- */

#impressum,
#datenschutz {
    padding: 10rem 0;
}

#impressum a,
#datenschutz a {
    cursor: pointer;
}

#impressum a:hover,
#datenschutz a:hover {
    color: #000;
}

#impressum h2,
#datenschutz h2 {
    font-size: 48px;
    margin-bottom: 2rem;
}

#impressum hr,
#datenschutz hr {
    margin: 4rem 0;
}

#impressum ul,
#datenschutz ul {
    list-style-position: outside;
    padding-left: 30px;
    margin-bottom: 1.5rem;
  }

#impressum ul li,
#datenschutz ul li {
    list-style-position: outside;
    padding-left: 10px;
    margin-bottom: 0.5rem;
  }
  

/* --------------------------------------- RESPONSIVE --------------------------------------- */

@media (max-width: 1600px) {

    #hero .container .item-1,
    #location .container .item-1 {
        width: 50%;
    }
    
    #hero .container .item-2,
    #location .container .item-2 {
        width: 50%;
    }
    
    #hero img,
    #location .item-2 img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 1280px) {
    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0 28px;
    }
}

@media (max-width: 1024px) {

    h1 {
        font-size: 72px;
        line-height: 1;
        letter-spacing: -0.2rem;
    }
    
    h2 {
        font-size: 60px;
        line-height: 1;
        letter-spacing: -0.1rem;
    }

    #hero .item-1,
    #location .item-1 {
        padding: 6rem 0;
    }
}

@media (min-width: 768px) {

    footer #FooterText .copyright-mobile {
        display: none;
    }
}

@media (max-width: 768px) {

    h1, h2 {
        margin-bottom: 2.5rem;
    }

    #preise,
    #kontakt,
    #datenschutz {
        padding: 120px 0;
    }

    #hero .container {
        flex-direction: column;
        padding: 0;
        padding-top: 60px;
    }

    #location .container {
        flex-direction: column;
        padding: 0;
        padding-top: 120px;
    }

    #hero .container .item-1,
    #hero .container .item-2,
    #location .container .item-1,
    #location .container .item-2 {
        width: 100%;;
    }

    #hero .container .item-1,
    #location .container .item-1 {
        padding: 0 28px;
    }

    #location .adresse p.monospace {
        margin-bottom: 0;
    }

    #kontakt .buttons {
        flex-wrap: wrap;
    }

    footer {
        padding-top: 120px;
    }

    footer #FooterText {
        flex-direction: column;
        gap: 24px;
    }

    footer #copyright {
        flex-direction: column;
        gap: 24px;
    }

    footer #copyright div {
        display: none;
    }

    footer #copyright p {
        text-align: center;
    }

    #impressum,
    #datenschutz {
        padding-top: 60px;
    }

    #impressum h2,
    #datenschutz h2 {
    font-size: 32px;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05rem;
}
}

@media (max-width: 480px) {

    #hero .button-light {
        width: 100%;
        text-align: center;
    }

    header .container .logo img {
        height: 32px;
    }

    #preise .details {
        text-align: center;
    }

    #kontakt .buttons {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 60px;
        line-height: 1;
        letter-spacing: -0.1rem;
    }
    
    h2 {
        font-size: 48px;
        line-height: 1;
        letter-spacing: -0.1rem;
    }

    #location .adresse {
        flex-direction: column;
        gap: 16px;
    }

    #location .adresse img {
        position: relative;
        left: -8px;
    }

    footer img {
        max-width: 100%;
        height: auto;
    }
}