/**********Variables**********/
:root {
    --font-main: "Cooper Hewitt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --fontColorBlack: #242424;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


/**********FONTS**********/
@font-face {
  font-family: 'Sequel';
  font-style: normal;
  font-weight: 900;
  src: url('/assets/fonts/Sequel95.woff') format('woff');
  font-display: swap;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

/* Firefox */
html, body {
    scrollbar-width: none;
}

/* IE / alte Edge */
html, body {
    -ms-overflow-style: none;
}

body {
    color: var(--fontColorBlack);
    overflow-x: hidden;
  font-family: 'Outfit', sans-serif;

}

a {
    text-decoration: none;
}
/* disable scroll while loading */
body.loading {
    overflow: hidden;
}

#fatkitchens p,
#dokumentation p,
#sponsoren p,
#kunden p,
#kontakt p,
#gewuerze p {
    font-size: 24px;
}

#dokumentation h2,
.sponsorenText strong {
    font-weight: 900;
    font-size: 32px;
}

/**********TITLE**********/

.sectionTitle {
    position: relative;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.sectionTitle h2 {
  font-family: "Outfit", sans-serif;
  font-weight: bolder;
    font-size: 300px;
    font-weight: 900;
}

.sectionTitleOverlay {
    background-color: white;
    padding: 10px 15px;
    font-size: 32px;
    position: absolute;
    display: flex;
    font-weight: 900;
}


/**********Loader**********/
#loader {
    width: 100svw;
    height: 100svh;
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loaderInner {
    text-align: center;
}

.loaderText {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 5px;
}

.loaderText span {
    font-size: 30px;
    font-weight: 100;
    color: #fff;
    opacity: 0;
}

.loaderBar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}

.loaderBarFill {
    width: 0%;
    height: 100%;
    background: #fff;
}

/**********NAV**********/


nav {
    background-color: white;
    position: relative;
    transform: translateY(-40px);
    opacity: 0;
}

.nav-link {
    position: relative;
    font-weight: 900;
    margin-left: 10px;
    color: var(--fontColorBlack);
    font-size: 15px;
}

.navLogo {
    position: absolute;
    top: 60px;
    width: 250px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px; /* dicke Linie */
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/**********HERO**********/

#hero {
    overflow: hidden;
    position: relative;
    height: 100svh;
    width: 100%;
    background: url(/assets/background/fatkitchens-background.jpg) center / cover no-repeat;
}

.heroText {
    position: absolute;
    right: 150px;
    bottom: 150px;
    background-color: white;
    padding: 30px 50px 15px 50px;
    transform: translateX(150%);
    opacity: 0;
}

.heroText h1 {
    font-weight: 900;
    font-size: 42px;
    line-height: 35px;
    margin: 0;
}

.heroText span {
    font-size: 24px;
    font-weight: 400;
}

.scrollDownButton {
    position: absolute;
    bottom: 15px;
    width: 100%;
    justify-content: centecr;
    align-items: center;
    display: flex;
    opacity: 0;
    flex-direction: column;
}

.scrollDownIcon {
    width: 35px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.4;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/**********FATKITCHENS**********/

.faceWrapper {
    width: 50%;
}

.faceWrapper img {
    width: 100%;
    display: block;
}

.teamContent,
.clientsContent{
    padding: 75px 25px;
}

.contactContent {
    padding-left: 25px;
    padding-right: 25px;
}

/**********DOKU**********/

#dokumentation {
    background: url(/assets/background/fatkitchens-background-adaywithfatkitchens.jpg) center / cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dokumentation iframe {
    width: 100%;
    height: 560px;
}

.dokuLogos img {
    height: 75px;
    width: auto;
    opacity: 0.6;
    transition: 0.3s all ease;
}

.dokuLogos img:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: 0.3s all ease;
}

/**********SPONSOREN**********/

.sponsorenLogo {
    text-align: center;
}

.sponsorenLogo img {
    width: 250px;
}

.sponsorenText {
    text-align: center;
}

.sponsorenText strong {
    margin-bottom: 25px;
}

/**********PRESSE**********/

.pressItem {
    display: block;
    width: 100%;
    height: 50vh;
    background: center / cover no-repeat;
    transition: all 0.6s ease, opacity 0.6s ease;
    will-change: transform;
    opacity: 0.85;
}

.pressItem:hover {
    opacity: 1;
    transform: scale(1.01);
}

.blick {
    background: url(/assets/presse/fatkitchens-blick.jpg);
    background-size: cover;
    background-position: center;
}
.baz {
    background: url(/assets/presse/fatkitchens-baslerzeitung.jpg);
    background-position: center;
    background-size: cover;
}
.zwanzigmin {
    background: url(/assets/presse/fatkitchens-20min.jpg);
    background-position: center;
    background-size: cover;
}
.focus {
    background: url(/assets/presse/fatkitchens-focus.jpg);
    background-position: center;
    background-size: cover;
}
.watson {
    background: url(/assets/presse/fatkitchens-watson.jpg);
    background-position: center;
    background-size: cover;
}


/**SLIDER CLIENTS LOGOS**/

#kunden .sectionTitle {
    padding: 75px 0 25px 0;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
}

.logo-item img {
    height: 75px;
    width: auto;
    opacity: 0.75;
    transition: all 0.6s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
    transition: all 0.6s ease;
}

@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.short-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 9:16 */
}

.short-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/**********Kontakt**********/

#kontakt {
    padding-bottom: 100px;
}

#kontakt .sectionTitle {
    padding: 75px 0 0 0 ;
}

#kontakt p {
    font-size: 24px;
}

#kontakt a {
    color: #62883F;
    font-weight: bold;
    text-decoration: none;
}

.kontaktLogo {
    width: 150px;
    padding-bottom: 55px;
}

/**********GEWÜRZE**********/

#gewuerze {
    background: url(/assets/background/Fatkitchens-Gewuerze.jpg) center / cover no-repeat;
    height: 100vh;
    padding: 50px;
    color: white;
}

.gewuerzeWrapper {
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    flex-direction: column;
}

.gewuerzeTitle {
    background-color: white;
    color: var(--fontColorBlack);
    font-size: 32px;
    padding: 10px 25px;
}

.gewuerzeTitle h2 {
    font-weight: 700;
    margin: 0;
}

.gewuerzeContent {
    width: 50%;
}

.gewuerzButton {
    background-color: #62883F;
    color: white;
    text-decoration: none;
    font-weight: 900;
    padding: 15px 25px;
    font-size: 18px;
}

/**********FOOTER**********/

footer {
    padding: 25px 0;
    color: white;
    background-color: black;
}

.footerLogo img {
    width: 250px;
}

.footerSocial {
    margin: 50px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.footerSocial img {
    width: 35px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footerSocial a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.footerLinks a,
.canece a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.footerLinks a:hover,
.canece a:hover {
    text-decoration: underline;
}


/**********MOBILE**********/
@media (max-width: 993px) {
    #fatkitchens p,
    #dokumentation p,
    #sponsoren p,
    #kunden p,
    #kontakt p,
    #gewuerze p {
        font-size: 18px;
    }

    /**MOBILE NAV**/
    .mobileNav {
        position: fixed;
        inset: 0;
        z-index: 9999;
        pointer-events: none;
        transform: translateY(-40px);
        opacity: 0;
    }

    .mobileToggler,
    .mobileNavLogo {
        pointer-events: auto;
    }

    .mobileNavWrapper {
        position: absolute;
        inset: 0;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        pointer-events: none;
    }

    .mobileNav.active {
        pointer-events: auto;
    }

    .mobileNav.active .mobileNavWrapper {
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Menu */
    .mobileNav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobileNav ul li {
        margin: 10px 0;
    }

    .mobileNav ul li a {
        font-size: 32px;
        color: var(--fontColorBlack);
        text-decoration: none;
        font-weight: 900;
    }

    .mobileToggler {
        position: fixed;
        right: 15px;
        top: 15px;
        background: none;
        border: none;
        z-index: 10000;
        cursor: pointer;
    }

    .mobileToggler img {
        width: 25px;
    }

    /* Logo */
    .mobileNavLogo {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 15px;
        background-color: white;
        z-index: 10000;
        text-align: center;
    }

    .mobileNavLogo img {
        width: 150px;
    }
    .mobileNavFooter {
        position: fixed;
        bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .mobileNavFooter img {
        width: 25px;
    }

    #hero {
        height: 100vh;
        background: url(/assets/background/fatkitchens-background-mobile.jpg);
        background-size: cover;
    }

    .heroText {
        right: 15px;
        bottom: 100px;
        padding: 20px 40px 10px 40px;
    }

    .heroText h1 {
        font-size: 36px;
        line-height: 34px;
    }

    .heroText span {
        font-size: 18px;
    }

    .sectionTitle h2 {
        font-size: 130px;
        font-weight: 900;
        margin: 0;
    }

    .sectionTitleOverlay {
        background-color: white;
        padding: 5px 15px;
        font-size: 28px;
        position: absolute;
        display: flex;
    }

    .pressItem {
        height: 25vh;
    }

    .watson {
        background: url(/assets/presse/fatkitchens-watson-mobile.jpg);
        background-size: cover;
    }

    #dokumentation {
        padding: 100px 0;
        height: auto;
    }

    #dokumentation iframe {
        height: 220px;
    }

    .kontaktLogo {
        width: 100px;
    }

    .dokuText h2 {
        margin: 50px 0;
    }

    .sponsorenLogo img {
        width: 150px;
    }

    #gewuerze {
        background: url(/assets/background/Fatkitchens-Gewuerze-mobile.jpg) center / cover no-repeat;
        height: auto;
        padding: 75px 25px;
    }

    .gewuerzeContent {
        width: 100%;
        margin: 25px 0;
    }

    .dokuLogos {
        text-align: center;
    }

    .dokuLogos img {
        width: 75px;
        height: auto;
    }

    .logo-item {
        flex: 0 0 auto;
        padding: 0 10px;
        display: flex;
        align-items: center;
    }

    .logo-item img {
        height: 45px;
        width: auto;
        opacity: 0.75;
        transition: all 0.6s ease;
    }

    .footerLogo img {
    width: 150px;
}

}