@font-face {
    font-family: 'Outfit';
    src: url('../f/Outfit-Medium.woff2') format('woff2');
    font-weight: unset;
    font-style: unset;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
@font-face {
    font-family: 'Outfit Regular';
    src: url('../f/Outfit-Regular.woff2') format('woff2');
    font-weight: unset;
    font-style: unset;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
@font-face {
    font-family: 'Narly';
    src: url('../f/NarlyBoldBold.woff2') format('woff2');
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}
:root {
    --color-primary: #000;
    --color-secondary: #fff;
    --bg-color: #F1F1F1;
    --accent-color: #B8BCF9;
    --fontSize-copy: 16px;
    --fontSize-big: 20px;
    --fontSize-huge: 55px;
}
main {
    /* padding: 2rem;
    padding-top: 8rem; */
}
body {
    background-color: var(--bg-color);
}
img {
    display: block;
}
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: text-decoration 0.3s ease;
    font-family: 'Outfit', sans-serif;
}
a:hover {
    text-decoration: underline;
    transition: text-decoration 0.3s ease;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}
.headerlogo img {
    width: 20vw;
}
.menulinks {
    display: flex;
    gap: 2rem;
    font-size: var(--fontSize-big);
}

/* button styles */
.cta-button {
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.7rem 2rem;
    font-size: var(--fontSize-big);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -webkit-select: none;
    position: relative;
    height: fit-content;
}
.cta-button::before {
    opacity: 0;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(var(--accent-color), transparent, transparent, transparent);
    z-index: -1;
    scale: 0.5;
    transition: all 0.3s ease;
    
}
.cta-button:hover::before {
    opacity: 1;
    scale: 1;
}

/* footer styles */
footer {
    width: 100%;
    z-index: 1000;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    padding-top: 12rem;
    align-items: end;
}
.footerlinks {
    display: flex;
    gap: 2rem;
}
.footerlinks:last-of-type {
    margin-left: auto;
}
.footer-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
}
.footer-copyright {
    font-size: var(--fontSize-copy);
    color: var(--color-primary);
    font-family: 'Outfit', sans-serif;
    align-self: center;
    text-align: center;
}
.footerlogo {
    margin-left: auto;
}
.footerlogo img {
    width: 20vw;
}

/* Blocks Styling */

.videoheader-video {
    width: 100%;
    height: 100vh;
}
.videoheader-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.imageheader,
.imageheader-image {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.parallaxsection-container {
    display: flex;
    /* gap: 2rem; */
    height: 90vh;
}
.parallaxsection-image {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.parallaxsection-image .media-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.parallaxsection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
    .parallaxsection-image img {
        transform: none !important;
        will-change: auto;
    }
}
.parallaxsection-text {
    padding: 2rem;
    font-family: 'Outfit Regular', sans-serif;
    font-size: var(--fontSize-huge);
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project-teaser-slider {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 0.5rem;
    padding-top: 8rem;
    padding-left: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.project-teaser-slider > a {
    flex: 0 0 500px;
    width: 500px;
    aspect-ratio: 4/5;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    text-decoration: none;
}
.project-teaser-slider > a:hover {
    text-decoration: none;
}
.projectteaser_card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -webkit-select: none;
    cursor: pointer;
}
.projectteaser_card::before {
    content: 'See More';
    align-content: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    font-size: var(--fontSize-huge);
    font-family: 'Outfit Regular', sans-serif;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
    aspect-ratio: 1/1;
    background: radial-gradient(var(--accent-color), var(--accent-color), transparent, transparent, transparent);
    z-index: 1;
    scale: 0.5;
    opacity: 0;
    transition: all 0.3s ease;
}
.projectteaser_card:hover::before {
    scale: 1;
    opacity: 1;
    transition: all 0.3s ease;
}
.projectteaser_card_image {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
.projectteaser_card_image img,
.projectteaser_card_image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 2rem;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: var(--fontSize-copy);
}
.project-row-link:first-of-type {
    display: block;
    padding-top: 8rem;
}
.project-row-link:hover {
    text-decoration: none;
}
.projectrow_card {
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}
.projectteaser_card_content {
    display: flex;
    justify-content: space-between;
    flex-shrink: 0;
    width: 100%;
}
.projectteaser_card_number {
    width: fit-content;
}
.projectteaser_card_title {
    width: fit-content;
}
.project-split-screen {
    display: flex;
    gap: 0;
    width: 100%;
    height: 100vh;
    position: relative;
}
.project-split-screen-title {
    font-size: var(--fontSize-huge);
    font-family: 'Outfit Regular', sans-serif;
    width: 50%;
    height: 100%;
    text-align: center;
    color: var(--color-secondary);
    position: absolute;
    top: 0;
    left: 50%;
    align-content: center;
    background: rgba(0, 0, 0, 0.15);
}
.project-split-screen-image-left {
    flex: 1;
    overflow: hidden;
    height: 100%;
}
.project-split-screen-image-right {
    flex: 1;
    height: 100%;
    overflow: hidden;
}
.project-split-screen.is-fullscreen .project-split-screen-image-left {
    width: 100%;
    flex: 1 0 100%;
}
.project-split-screen.is-fullscreen .project-split-screen-title {
    width: 100%;
    left: 0;
}
.project-text-section {
    font-family: 'Outfit', sans-serif;
    font-size: var(--fontSize-copy);
    width: 100%;
    height: 50vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* padding: 10rem; */
}
.project-description-section {
    align-content: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.project-credits-section {
    align-content: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.project-bilderreihe {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 2rem;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: var(--fontSize-copy);
}
.project-bilderreihe:not(:first-of-type) {
    padding-top: 0;
}
.project-bilderreihe-row {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    align-items: stretch;
}
.project_card-bilderreihe {
    min-width: 0;
    overflow: hidden;
    cursor: pointer;
}
.project_card-bilderreihe .media-frame,
.projectteaser_card_image .media-frame,
.projectrow_card .media-frame {
    width: 100%;
    height: 100%;
}
.project_card-bilderreihe img,
.project_card-bilderreihe video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.abouttext {
    font-family: 'Outfit Regular', sans-serif;
    font-size: var(--fontSize-huge);
    width: 100%;
    position: relative;
    padding: 5rem;
    padding-top: 10rem;
    padding-bottom: 8rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.15);
}
em {
    font-family: 'Narly', sans-serif;
    font-size: calc(var(--fontSize-huge) * 0.9);
    font-style: normal;
    text-transform: uppercase;
}
.abouttext br {
    padding: 1rem;
}
.serviceslist {
    padding: 2rem;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
    font-family: 'Outfit Regular', sans-serif;
    font-size: var(--fontSize-huge);
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}
.serviceslist-items {
    column-count: 2;
}
.serviceslist-title {
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.15);
}
.selectedclients {
    padding: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    font-family: 'Outfit Regular', sans-serif;
    font-size: var(--fontSize-huge);
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}
.selectedclients-items {
    column-count: 2;
}
.selectedclients-title {
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.15);
}
/* MEDIA FRAME STYLES */
.media-frame {
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.media-frame img,
.media-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.45s ease;
}
.media-frame.is-loaded img,
.media-frame.is-loaded video {
    opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
    .media-frame img,
    .media-frame video {
        transition: none;
        opacity: 1;
    }
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(241, 241, 241, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lightbox-media {
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-media img,
.lightbox-media video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
@media (prefers-reduced-motion: reduce) {
    .lightbox {
        transition: none;
    }
}