@charset "UTF-8";

@font-face {
    font-family: 'NNNouvelleGrotesk-Bold';
    src: url('../fonts/NNNouvelleGrotesk-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'NNNouvelleGrotesk-Normal';
    src: url('../fonts/NNNouvelleGrotesk-Normal.woff2') format('woff2');
}


:root {
    --light: #FFF;
    --dark: #000;
    --line: #DBDBDB;
    --bg: #F2F2F2;

    --FSD: 18px;
    --FSM: 40px;
    --FSM2: 24px;
    --FSL: 68px;
    --FSXL: 90px;

    --br: .3rem;
    --hh: 7rem;
}
@media (max-width: 1440px) {
    :root {
        --FSD: 1.25vw;
        --FSM: 2.77vw;
        --FSM2: 1.66vw;
        --FSL: 4.72vw;
        --FSXL: 6.25vw;
    }
}
@media (max-width: 768px) {
    :root {
        --FSD: 4.3vw;
        --FSM: 8.2vw;
        --FSM2: 5.5vw;
        --FSL: 11.5vw;
        --FSXL: 14vw;

        --hh: 5rem;
    }
}

/* Basic HTML Stuff -------------------------------------------------- */
html{
    scroll-behavior: smooth;
    font-size: var(--FSD);
}
body{
    margin: 0;
    cursor: default;
    color: var(--dark);
    background-color: var(--light);
    font-family: 'NNNouvelleGrotesk-Bold', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

img, .ns, nav, button, svg, path{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
::selection {
    background: var(--dark);
    color: var(--light);
}

*{
    box-sizing: border-box;
}


/* Links ------------------------------------------------------------ */
a{
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: .06em;
    text-underline-offset: .2em;
}
a:hover{
    text-decoration: none;
}


/* Fokus ------------------------------------------------------------- */
/* Der Ring erscheint ausschließlich bei Tastaturbedienung. Bei Klick
   oder Touch setzt der Browser :focus-visible nicht, der Ring bleibt
   also unsichtbar – optisch ändert sich für Maus- und Touch-Nutzer nichts.

   Bewusst ohne border-radius: Ein Wert hier würde die tatsächliche Form
   des Elements überschreiben (z. B. die runden Slider-Buttons). Browser
   führen den Outline ohnehin dem vorhandenen Radius nach.

   Die Reihenfolge ist Absicht: Kennt ein Browser :focus-visible nicht,
   ist auch der zweite Selektor ungültig und der Standard-Fokusring
   bleibt erhalten. */
:focus-visible{
    outline: 2px solid var(--dark);
    outline-offset: 3px;
}
:focus:not(:focus-visible){
    outline: 0;
}

.nb{
    text-decoration: none !important;
}


/* Media ------------------------------------------------------------ */
figure, picture{
    margin: 0;
    padding: 0;
}
figure img, figure video, figure svg, picture img, picture svg{
    width: 100%;
    height: auto;
}
img, video, svg, iframe{
    vertical-align: middle;
}


/* Typography -------------------------------------------------------- */
h1, h2, h3, h4, h5, h6{
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}
strong, em, i{
    font-family: inherit;
    font-weight: normal;
}
.norm_font{
    font-family: 'NNNouvelleGrotesk-Normal', sans-serif;
}

ol { 
    padding-left: 1em; 
}
ul {
	list-style: none;
    padding-left: 0.9em;
    margin-left: 0;
}
/* Der Gedankenstrich ist rein dekorativ.
   Der leere Alternativtext nach dem Slash verhindert, dass Screenreader
   vor jedem Listenpunkt "Strich" vorlesen. */
ul li:before {
    content: "–";
    content: "–" / "";
    position: absolute;
    margin-left: -0.8em;
}

p{ 
    word-break: break-word;
}

html, body, .FSD{ 
    font-size: var(--FSD);
    line-height: 1.5em;
}
.FSM{ 
    font-size: var(--FSM);
    line-height: 1.1em;
}
.FSM2{ 
    font-size: var(--FSM2);
    line-height: 1.3em;
}
.FSL{ 
    font-size: var(--FSL);
    line-height: 1em;
}
.FSXL{ 
    font-size: var(--FSXL);
    line-height: .9em;
}

/* GUI ---------------------------------------------------------------- */
svg path{
    fill: var(--dark);
}
button svg{
    width: 100%;
    height: auto;
}
button{
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--FSD);
}
button, .button{
    cursor: pointer;
}

.button{
    background-color: var(--dark);
    color: var(--light);
    height: 3.2rem;
    border-radius: var(--br);
    min-width: 5rem;
    padding: 0 1.8rem;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color .2s ease,
                color .2s ease;
    border: 1px solid var(--dark);
    font-family: 'NNNouvelleGrotesk-Bold', sans-serif;
    flex-shrink: 0;
}
.sec_button{
    background-color: transparent;
    border: 1px solid var(--dark) !important;
    color: var(--dark);
}
button:active, .filter_tag:active{
    transform: translateY(.1em);
}

@media (min-width: 1024px) {
    .button:hover{
        background-color: var(--light);
        color: var(--dark);
    }
    .sec_button:hover{
        background-color: var(--dark);
        color: var(--light);
    }
}


/* Grid ---------------------------------------------------------------- */
.header, .footer, main, section, .footer{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wrap{
    width: 1220px;
    gap: 2.22rem;
    display: flex;
}
.c2{
    width: 50%;
}
.c3{
    width: 33%;
}

@media (max-width: 1440px) {
    .wrap{
        width: 84.72vw;
    }
}
@media (max-width: 768px) {
    .footer .wrap, .footer div{
        justify-content: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
    .wrap{
        width: 96%;
        gap: 1.2rem;
        flex-direction: column;
    }
    .c2, .c3{
        width: 100%; 
    }
}

/* Header & Navi ------------------------------------------------------- */
.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--hh);
    background-color: rgba(255,255,255,.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    transition: transform .4s ease;
    z-index: 1;
}
.header .wrap{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.header .wrap .nb{
    grid-column: 2;
}
.header .wrap nav{
    grid-column: 3;
    justify-self: end;
}
.header img{
    width: 4.72rem;
}
nav ul, .footer ul{
	list-style: none;
    padding-left: 0;
    margin-left: 0;
}
nav ul li:before, .footer ul li:before{
    content: "";
}
nav a, .footer a{
    text-decoration: none;
}
nav a:hover, .footer a:hover{
    text-decoration: underline;
}

.hide{
    transform: translateY(calc(var(--hh)*-1));
}

@media (max-width: 768px) {
    .header img{
        width: 3.2rem;
    }
    .header .wrap nav{
        padding-right: 1rem;
    }
}


/* Footer -------------------------------------------------------------- */
.footer{
    margin-bottom: 5rem;
}
.footer .wrap{
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.footer ul{
    flex: 1 1 0;
}

@media (max-width: 768px) {
    .footer{
        margin-bottom: 3rem;
    }
    .footer .wrap{
        gap: 0;
    }
    .footer ul, .footer ul li{
        margin: .5rem 0;
    }
}


/* Home --------------------------------------------------------------- */
.slider{
    width: 100%;
    position: relative;
}
.imgs{
    width: 100%;
    overflow: scroll;
    display: flex;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.imgs figure{
    flex-shrink: 0;
    height: 740px;
}
.imgs figure img{
    height: 100%;
    width: auto;
}
.sl_cntr{
    display: flex;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    right: calc((100vw - 1220px) / 2 );
}

.sl_cntr button{
    width: 2.8rem;
    height: 2.8rem;
    border: 1.5px solid var(--dark);
    border-radius: 1.5rem;
    transition: background-color .2s ease,
                opacity .2s ease;
}
.sl_cntr button:hover{
    background-color: var(--bg);
}
.sl_cntr button img{
    width: 1.3rem;
    height: auto;
}
.inactive{
    opacity: .3;
}

.mid_mob{
    display: none;
}

.details{
    margin: -4rem 0 5rem 0;
}
.details h1{
    margin-bottom: 1rem;
    position: relative;
}
.einschub{
    padding-left: 1.5rem;
    padding-top: 1rem;
}
.einschub p{
    margin: 0 0 1rem 0;
}
/* Preis ist keine Überschrift mehr, behält aber exakt deren Box:
   h1–h6 haben margin: 0, ein <p> bringt eigene Abstände mit. */
.einschub p.preis{
    margin: 0;
    padding: 0;
}
dl{
    margin-top: 2rem;
}
dl div{
    display: flex;
    margin: .5rem 0;
}
dl dt{
    flex: 1 1 0;
    margin: 0;
}
dl dd{
    flex: 2 1 0;
    margin: 0;
}
dd p{
    margin: 0;
}

.stores{
    margin-bottom: 8rem;
}
.stores h2{
    margin-left: calc(50% + 1.11rem);
}
/* Händlername löst eine Kartenaktion aus: semantisch Button, optisch der
   frühere Link im <h3>. Überschreibt die button-Basis (display:flex,
   zentriert, eigene Schriftgröße) und den UA-Default für Buttons. */
.stores h3 .store_bt{
    display: inline;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font: inherit;
    letter-spacing: inherit;
    color: inherit;
    text-align: left;
    text-decoration: underline;
    text-decoration-thickness: .06em;
    text-underline-offset: .2em;
    cursor: pointer;
}
.stores h3 .store_bt:hover{
    text-decoration: none;
}
.stores h3 .store_bt:active{
    transform: none;
}
.stores p{
    margin: 0;
}
.stores svg{
    width: .7rem;
    height: auto;
}
#map, .ph_map{
    border-radius: var(--br);
    height: 450px;
    margin: 1rem 0;
}
.ph_map{
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 18rem;
    color: #777;
    gap: 1.5rem;
}
.ph_map p{
    margin: 0;
}

@media (min-width: 2100px) {
    .imgs{
        justify-content: center;
    }
    .sl_cntr{
        display: none;
    }
}
@media (max-width: 1440px) {
    .imgs figure{
        height: 51vw;
    }
    .sl_cntr{
        right: calc((100vw - 84.72vw) / 2 );
    }
}
@media (max-width: 768px) {
    .imgs figure{
        height: 120vw;
    }
    .sl_cntr{
        display: none;
    }
    .mid_desk{
        display: none;
    }
    .mid_mob{
        display: flex;
        width: 60vw;
    }
    .mid_mob img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .details{
        margin: -3rem 0 3rem 0;
    }
    .einschub{
        padding-left: .7rem;
        padding-top: 1rem;
    }

    .stores{
        margin-bottom: 5rem;
    }
    .stores h2{
        margin-left: 0;
    }
    #map{
        height: 100vw;
    }
    .ph_map{
        padding: 0 1rem;
    }
}


/* Default Template ---------------------------------------------------- */
.mthh{
    margin-top: var(--hh);
    margin-bottom: 5rem;
}
.big_hd .wrap{
    padding: 8rem 20% 10rem 0;
}

@media (max-width: 768px) {
    .big_hd .wrap{
        padding: 3.5rem 0 5rem 0;
    }
}


/* Legal Template ----------------------------------------------------- */
.c1{
    width: 100%;
}
.c1 h2{
    font-size: var(--FSM);
    margin-top: 3rem;
    line-height: 1.1em;
}
.w404{
    min-height: calc(100vh - var(--hh));
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .w404{
        min-height: calc(100vh);
        align-items: flex-start;
        justify-content: center;
    }
}


/* Editorial Struktur -------------------------------------------------- */
.editorial{
    gap: 5rem;
    margin-bottom: 8rem;
}
.editorial h2{
    margin-bottom: -.4rem;
}
.eL2{
    flex-direction: column;
}
.eRa{
    align-items: flex-end;
}
.eL2 .eTxt{
    width: calc(50% - 1.11rem);
    background-color: var(--light);
    padding: 3.5rem 3.5rem 0 3.5rem;
}

.eL1 figure{
    width: 50%;
}
.eL1 .c2{
    padding: 0 3.5rem;
}
.eLa{
    flex-direction: row-reverse;
}
.eCa{
    align-items: center;
}
.x2t .c2{
    padding: 0 !important;
}

.mt-12{ margin-top: -12rem; }
.mt-15{ margin-top: -15rem; }
.mt-20{ margin-top: -20rem; }
.mt-25{ margin-top: -25rem; }
.mt-30{ margin-top: -30rem; }

@media (max-width: 768px) {
    .editorial{
        gap: 3rem;
        margin-bottom: 4rem;
    }
    .mt-12, .mt-15, .mt-20, .mt-25, .mt-30{ margin-top: 0; }
    .eL2 .eTxt, .eL1 .c2{
        width: 100%;
        padding: 0rem;
    }
    .eL1 figure{
        width: 100%;
    }
    .eLa{
        flex-direction: column;
    }
}


/* Teaser -------------------------------------------------------------- */
.teaser{
    margin-bottom: 3rem;
}
.teaser .c2{
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.2rem;
    gap: 3rem;
    border-radius: var(--br);
    hyphens: auto;
}
.teaser h2{
    hyphens: auto;
    margin-bottom: -.9rem;
}
.teaser .button{
    align-self: flex-start;
}

@media (max-width: 768px) {
    .teaser{
        margin-bottom: 0;
    }
    .teaser .c2{
        padding: 1.5rem;
    }
    .teaser .wrap{
        gap: 2vw;
    }
}