html, body {
    min-height: 100%;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-image: url("Images/Logo/MasterBackground.jpg");
}
*, *::before, *::after {
    box-sizing: border-box;
    user-select: none;
}

#scrollpage {
    margin-left: 5%;
    margin-right: 5%;
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------- */
/* Scroll reveal animation */

.scroll-section {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 300ms ease-out,
        transform 300ms ease-out;
    will-change: opacity, transform;
}

.scroll-section.in-view {
    transform: translateY(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ------------------------------------------------------------- */
/* Landing Page */

#landing {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    margin-top: 64px;
}
#main-title {
    margin-top: 5%;
}
#sub-title {
    margin-top: 1%;
}

.scroll-cue {
    position: relative;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 8%;
    height: 10%;
    border-radius: 999px;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition:
            background-color 0.5s ease,
            transform 0.5s ease,
            box-shadow 1s ease;
}
.scroll-cue:hover {
    transform: scale(1.08);
    box-shadow: 0 0 12px rgba(0, 153, 255, 0.6),
                0 0 24px rgba(0, 153, 255, 0.4),
                0 0 36px rgba(0, 153, 255, 0.2);
}

.scroll-cue:focus-visible {
    outline: 2px solid #6aa2ff;
    outline-offset: 4px;
}
.scroll-cue img {
    display: block;
    width: 70%;
    height: auto;
    user-select: none;
    pointer-events: none;
    animation: cue-bob 2s ease-in-out infinite;
}
#landing .scroll-cue {
    margin-top: 10%;
}

@keyframes cue-bob {
    0% { transform: translateY(0); opacity: 0.9; }
    50% { transform: translateY(10px); opacity: 1; }
    100% { transform: translateY(0); opacity: 0.9;}
}

/* ------------------------------------------------------------- */
/* Introduction */

#introduction {
    height: 40vh;
    margin: 5%;
}
#introduction h3 {
    text-align: center;
    line-height: 1.6;
}

/* ------------------------------------------------------------- */
/* Services Page */

#services {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#services .bg-title {
    position: relative;
    width: 100%;
    height: 0;
}
#services .bg-title span {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    font-family: SFMono-Regular, monospace;
    font-size: clamp(1rem, 16vw, 20vw);
    font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(150, 0, 0, 0.05);
    white-space: nowrap;
}
#services h1 {
    margin-bottom: 2%;
}

.service-slider {
    --split-position: 50%;
    --label-left-progress: 0;
    --label-right-progress: 0;
    position: relative;
    width: 100%;
    min-width: 800px;
    min-height: 380px;
    height: 380px;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.3);
    background: #F5F5F5;
}
.service {
    position: absolute;
    inset: 0;
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    transition: color 0.2s ease;
}
.service h2 {
    margin: 0;
    letter-spacing: 0.03em;
}
.service p {
    margin: 0;
    font-size: clamp(0.8rem, 1.2vw, 1.2vw);
}
.service-right {
    background:
            radial-gradient(circle at 0 0, #22c55e40, #020617),
            radial-gradient(circle at 100% 100%, #22d3ee2e, #020617 55%);
    color: #e5e7eb;
    text-align: right;
}
.service-left {
    background: linear-gradient(135deg, #f9fafb, #e5e7eb);
    color: #111827;
    border-right: 1px solid #d1d5db;
    z-index: 2;
    clip-path: polygon(
        0 0,
        var(--split-position) 0,
        var(--split-position) 100%,
        0 100%
    );
    text-align: left;
}
.service-left p {
    color: #374151;
    padding-left: 6rem;
    padding-right: 6rem;
}
.service-right p {
    padding-right: 6rem;
    padding-left: 6rem;
}
.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 3;
}
.slider-handle-line {
    position: absolute;
    width: 2px;
    top: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #0f172a, #9ca3af, #0f172a);
    opacity: 0.85;
}
.slider-handle-knob {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.45);
    background: radial-gradient(circle at 30% 0, #fff, #e5e7eb);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.slider-handle-knob::before,
.slider-handle-knob::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 2px solid #6b7280;
    margin: 0 2px;
}
.slider-handle-icon {
    position: absolute;
    font-size: 0.78vw;
    color: #4b5563;
    display: flex;
    gap: 0.15rem;
}
.slider-handle-icon span {
    transform: translateY(-1px);
}
.service-label {
    position: absolute;
    top: 2vw;
    font-size: clamp(1.5rem, 2vw, 2vw);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.75;
    font-family: SFMono-Regular, sans-serif;
    transform-origin: center;
    transition: opacity 0.2s ease;
}
.service-label-left {
    left: calc(2rem - var(--label-left-progress) * 2rem);
    top: calc(
        2rem + (50% - 2rem) * var(--label-left-progress)
    );
    transform:
        rotate(calc(var(--label-left-progress) * -90deg));
}
.service-label-right {
    right: calc(2rem - var(--label-right-progress) * 6rem);
    top: calc(2rem + (50% - 2rem) * var(--label-right-progress));
    transform:
        rotate(calc(var(--label-right-progress) * 90deg));
}

#services .scroll-cue {
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 80px;
}

/* ------------------------------------------------------------- */
/* Block Quote */

.quote-block {
    max-width: 80%;
    margin: 6rem auto;
    text-align: left;
    line-height: 1.75;
}
.quote-block blockquote {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    font-family: SFMono-Regular, sans-serif;
    position: relative;
    padding: 0 3rem;
}
.quote-block blockquote::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.2;
}
.quote-block blockquote::after {
    content: "“";
    position: absolute;
    right: -10px;
    bottom: -15px;
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.2;
}
.quote-block figcaption {
    margin-top: 1.4rem;
    text-align: left;
    font-family: SFMono-Regular, monospace;
    display: flex;
    flex-direction: column;
    gap: 1.5%;
    opacity: 0.95;
}
.quote-block .quote-name {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}
.quote-block .quote-role {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.55;
    letter-spacing: 0.05em;
}

/* ------------------------------------------------------------- */
/* Projekte Page */

#clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 10vh;
}

#clients > h1 {
    width: 100%;
    margin-bottom: 6vh;
}

#clients .bg-title {
    position: relative;
    width: 100%;
    height: 0;
}
#clients .bg-title span {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(92%) translateX(-1%);
    font-family: SFMono-Regular, monospace;
    font-size: 16vw;
    font-weight: 700;
    letter-spacing: 0.11em;
    color: rgba(150, 0, 0, 0.05);
    white-space: nowrap;
}

.client-faeze {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.client-faeze-images {
    position: relative;
    width: 40%;
    min-height: 35vh;
}
.client-faeze-card {
    position: absolute;
    width: 65%;
    border-radius: 1.5vh;
    box-shadow: 0 1.2vh 3vh rgba(0, 0, 0, 0.18);
    transition: transform 1s ease-in-out;
}
.client-faeze-card-main {
    top: 4vh;
    left: 0;
    transform: rotate(2deg);
}
.client-faeze-card-secondary {
    bottom: -7vh;
    left: 28%;
    transform: rotate(4deg);
    transition-delay: 0.1s;
}
.client-faeze-text {
    width: 50%;
    transition: transform 1s ease-in-out;
}
.client-faeze-text h2 {
    font-size: 5vw;
    font-family: SFMono-Regular, monospace;
    margin-bottom: 2vh;
    font-weight: 400;
}
.client-faeze-text h3 {
    font-size: 2vw;
    font-family: SFMono-Regular, monospace;
    margin-bottom: 3vh;
    font-weight: 400;
}
.client-faeze-text p {
    font-family: SFMono-Regular, monospace;
    font-size: clamp(0.7rem, 1.2vw, 1.2vw);
    line-height: 3vh;
    margin-bottom: 4vh;
    max-width: 90%;
}
.client-faeze-link {
    font-family: SFMono-Regular, monospace;
    font-size: clamp(0.7rem, 1.2vw, 1.2vw);
    text-decoration: none;
    border-bottom: 0.2vh solid currentColor;
    padding-bottom: 0.5vh;
}
#clients .scroll-cue {
    margin-top: 5%;
}

/* ------------------------------------------------------------- */
/* Über uns */

#about {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
    width: 100%;
    margin-bottom: 20vh;
}

#about .bg-title {
    position: relative;
    height: 0;
    width: 100%;
}
#about .bg-title span {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(50%);
    font-family: SFMono-Regular, monospace;
    font-size: 14vw;
    font-weight: 700;
    letter-spacing: 0.11em;
    color: transparent;
    overflow: visible;
    -webkit-text-stroke: 2px rgba(79, 75, 75, 0.15);
}
#about .bg-title span.stroke-pulse {
    animation: strokePulse 1.2s ease-out;
}
@keyframes strokePulse {
    0% {
        -webkit-text-stroke: 2px rgba(0, 0, 0, 0.15);
    }
    40% {
        -webkit-text-stroke: 4px rgba(32, 30, 30, 0.55);
    }
    100% {
        -webkit-text-stroke: 2px rgba(0, 0, 0, 0.15);
    }
}

#team-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5%;
    width: 100%;
    margin: 0 auto;
}
.team-member {
    text-align: left;
    width: 100%;
    height: 50vh;
}
.team-member img {
    width: 100%;
    height: 40vh;
    border-radius: 12px;
    object-fit: cover;
}
.team-member h2 {
    font-family: SFMono-Regular, monospace;
    font-size: 2rem;
}
.team-member p {
    font-family: SFMono-Light, monospace;
    color: #222222;
    font-size: 1rem;
}
.team-member p a {
    font-family: SFMono-Light, monospace;
    text-decoration: none;
    color: #222222;
}

/* ------------------------------------------------------------- */
/* Kontakt */

#contact {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#contact .bg-title {
    position: relative;
    width: 100%;
    height: 0;
}
#contact .bg-title span {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(45%) translateX(-1%);
    font-family: SFMono-Regular, monospace;
    font-size: 16vw;
    letter-spacing: 2rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px rgba(79, 75, 75, 0.15);
}
#contact .bg-title span.stroke-pulse {
    animation: strokePulse 1.2s ease-out;
}
.contact-container {
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding-left: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition:
            background-color 0.5s ease,
            transform 0.5s ease,
            box-shadow 1s ease;
}
.contact-container:hover {
    transform: scale(1.005);
    box-shadow: 0 0 12px rgba(0, 153, 255, 0.6),
    0 0 24px rgba(0, 153, 255, 0.4),
    0 0 36px rgba(0, 153, 255, 0.2);
}
.contact-container h6 {
    margin: 0;
    color: #222222;
}
.contact-container p {
    margin: 0;
    font-family: SFMono-Regular, monospace;
    font-size: 30px;
}
#contact a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* ------------------------------------------------------------- */
/* Impressum / Infos */

#infos {
    margin-top: 10%;
    background: #000;
    min-height: 300px;
    max-height: 50%;
    color: #e5e7eb;
    display: flex;
    padding: 0 5%;
    border-radius: 12px;
}
#infos a {
    text-decoration: none;
    color: #e5e7eb;
}

#infos > div {
    width: 50%;
    text-align: left;
}
#infos-left img {
    width: 4vw;
    max-width: 60px;
    height: auto;
    margin-right: 1.5vw;
    cursor: pointer;
    transition: transform 0.2s ease;
}
#infos-left img:hover {
    transform: scale(1.1);
}
#infos-left h5 {
    font-weight: 300;
    font-size: clamp(1.5rem, 2vw, 2vw);
}

#infos-right h5 {
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.5vw);
}

/* ------------------------------------------------------------- */
/* Element Settings */

h1 {
    font-family: 'SF Mono', sans-serif;
    font-size: clamp(3rem, 4vw, 4vw);
    color: #222222;
    margin-bottom: 1%;
    margin-top: 1%;
}
h2 {
    font-family: SFMono-Regular, sans-serif;
    font-size: clamp(3rem, 4vw, 4vw);
    font-weight: 500;
}
h3 {
    text-align: justify;
    font-family: SFMono-Regular, sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 3vw, 3vw);
}
h4 {
    text-align: justify;
    font-family: SFMono-Regular, monospace;
    font-weight: 100;
    font-size: clamp(1rem, 2vw, 2vw);
}
h5 {
    text-align: justify;
    font-family: SFMono-Regular, sans-serif;
}
h6 {
    text-align: justify;
    font-family: SFMono-Light, monospace;
    font-size: 15px;
    font-weight: 100;
}
p {
    font-size: clamp(0.8rem, 1vw, 1vw);
    line-height: 1.6;
    opacity: 0.9;
    font-family: SFMono-Regular, sans-serif;
}

/* ------------------------------------------------------------- */
/* C3D Leistungen */
.content__general {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70vh;
}
.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    height: 100%;
}
.container-carrossel {
    --widthItem: 200px;
    --heightItem: 150px;
    width: var(--widthItem);
    height: var(--heightItem);
    perspective: 1000px;
}
.carrossel {
    --rotatey: 2;
    font-size: 4rem;
    position: relative;
    transform: rotatey(var(--rotatey));
    transform-style: preserve-3d;
    user-select: none;
    cursor: grab;
}
.carrossel-item {
    opacity: 0.5;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 3%;
    border-radius: 2%;
    transition: opacity 0.5s;
}
.carrossel-item:hover {
    opacity: 1;
}
.carrossel,
.carrossel-item {
    width: 100%;
    height: 100%;
}
.carrossel-item:nth-child(1) {
    --rotatey: 0;
    transform: rotatey(var(--rotatey)) translatez(var(--tz));
    background: linear-gradient(-229deg, #fbd52d, #ef3a7b);
}
.carrossel-item:nth-child(2) {
    --rotatey: 0;
    transform: rotatey(var(--rotatey)) translatez(var(--tz));
    background: linear-gradient(-229deg, #ff70af, #5fa8f5);
}
.carrossel-item:nth-child(3) {
    --rotatey: 0;
    transform: rotatey(var(--rotatey)) translatez(var(--tz));
    background: linear-gradient(-229deg, #0cebeb, #29ffc6);
}
.carrossel-item:nth-child(4) {
    --rotatey: 0;
    transform: rotatey(var(--rotatey)) translatez(var(--tz));
    background: linear-gradient(-229deg, #88f7f9, #048fff);
}
.carrossel-item:nth-child(5) {
    --rotate: 0;
    transform: rotatey(var(--rotatey)) translatez(var(--tz));
    background: linear-gradient(-229deg, #0093e9, #80d0c7);
}
.carrossel-item:nth-child(6) {
    --rotatey: 0;
    transform: rotatey(var(--rotatey)) translatez(var(--tz));
    background: linear-gradient(-229deg, #cf91ff, #5782f5);
}
@media (min-width: 576px) {
    .container-carrossel {
        --widthItem: 45%;
        --heightItem: 55%;
    }
}
.carrossel-item h2 {
    font-size: clamp(1vw, 2vw, 2vw);
    margin: 2%;
    font-family: SFMono-Regular, monospace;
}
.carrossel-item p {
    font-size: clamp(0.5vw, 1vw, 0.8rem);
    margin: 2%;
}



























