* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: monospace, sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

.boldonse-regular {
    font-family: "Boldonse", system-ui;
    font-weight: 400;
    font-style: normal;
}

nav {
    width: 100%;
    background: no-repeat url(../Sources/img/Pattern.png);
    background-size: 150%;
    background-color: rgba(255, 255, 255, 0.95);
    background-blend-mode: lighten;
    position: relative;
    background-position-x: 45%;
    background-position-y: 45%;
}

nav .nav-wrapper {
    width: 90vw;
    padding: 24px;
    margin: 0 auto;
}

nav .nav-wrapper .navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

nav .nav-wrapper .navigation .menu-toggle {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

nav .nav-wrapper .navigation .menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

nav .nav-wrapper .navigation .menu-toggle.open .bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}

nav .nav-wrapper .navigation .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

nav .nav-wrapper .navigation .menu-toggle.open .bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
}

nav .nav-wrapper .navigation .socials-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

nav .nav-wrapper .navigation .socials-list .socials {
    padding: 32px 16px;
}

nav .nav-wrapper .navigation .socials-list .socials img {
    width: 24px;
}

nav .nav-wrapper .navigation .socials-list .mailto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    position: relative;
}

nav .nav-wrapper .navigation .socials-list .mailto span {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 2px;
}

nav .nav-wrapper .navigation .socials-list .mailto img {
    width: 24px;
}

nav .nav-wrapper .navigation .logo {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 400px;
    text-align: center;
}

nav .nav-wrapper .navigation .logo img {
    width: 100%;
}

nav .nav-wrapper .navigation .links-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 24px;
}

nav .nav-wrapper .navigation .links-nav li {
    padding: 24px 16px;
    font-size: 16px;
    text-transform: uppercase;
}

nav .nav-wrapper .navigation .links-nav li a {
    font-size: 16px;
}

nav .nav-wrapper .navigation .links-nav li:hover {
    cursor: pointer !important;
}

nav .nav-wrapper .navigation .links-nav .commission-link {
    padding: 24px 32px;
    background-color: #6b0ae1;
    background-image: url(../Sources/img/Pattern.png);
    background-size: 200%;
    background-position-x: 45%;
    background-position-y: 45%;
    color: white !important;
    font-weight: bolder;
    letter-spacing: 2px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

nav .nav-wrapper .navigation .links-nav .commission-link:hover {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

nav .nav-wrapper .navigation .links-nav .commission-link a {
    color: white;
}

nav .nav-wrapper .navigation .links-nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.banner,
.pill-links {
    width: 100%;
    background: url(../Sources/img/blendBanner.png) no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    padding: 32px 0px;
    min-height: 80vh;
}

.pill-links {
    min-height: auto !important;
}

.pill-link-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 90vw;
    margin: 0 auto;
}

.pill-list {
    display: flex;
    flex-direction: row;
}

.pill-list a {
    background-color: #6b0ae1;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 24px;
    margin: 16px;
    text-transform: uppercase;
    font-size: 12px;
}

.hidden span {
    display: none !important;
}

.banner .banner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 90vw;
    margin: 0 auto;
}

.banner .banner-wrapper .banner-text {
    margin-top: 20vh;
}

.banner .banner-wrapper .banner-text b {
    display: block;
    font-size: 130px;
}

.banner .banner-wrapper .banner-text .commission-link {
    display: block;
    text-align: center;
    font-size: 20px;
    background-color: #6b0ae1;
    background-image: url(../Sources/img/Pattern.png);
    color: white;
    font-weight: bolder;
    letter-spacing: 2px;
    margin-bottom: 32px;
    padding: 24px 32px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-size: 200%;
    background-position-x: 45%;
    background-position-y: 45%;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    text-transform: uppercase;
}

.banner .banner-wrapper .banner-text .commission-link:hover {
    -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.banner .banner-wrapper .banner-text .banner-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.banner .banner-wrapper .banner-text .banner-links a {
    display: block;
    min-width: 50px;
}

.banner .banner-wrapper .banner-text .banner-links a img {
    width: 100%;
}

.banner .banner-wrapper .banner-img {
    position: relative;
}

.banner .banner-wrapper .banner-img img {
    height: calc(80vh - 64px);
    max-height: 800px;
}

.footer {
    background-color: #6b0ae1;
    padding: 32px 24px;
    text-align: center;
}

.footer .footer-wrapper {
    max-width: 80vw;
    margin: 0 auto;
}

.footer .footer-wrapper a,
.footer .footer-wrapper span {
    color: white;
    font-weight: bold;
}

.footer .footer-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .footer-wrapper ul li {
    padding: 16px 24px;
}

.section .wrapper {
    width: 90vw;
    padding: 42px;
    margin: 42px 0;
    margin: 0 auto;
}

.button-colorful {
    text-transform: uppercase;
    padding: 24px 32px;
    background-color: #6b0ae1;
    background-image: url(../Sources/img/Pattern.png);
    background-size: 200%;
    background-position-x: 45%;
    background-position-y: 45%;
    color: white !important;
    font-weight: bolder;
    letter-spacing: 2px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button-colorful:hover {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.flex-center-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-center-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-me {
    border-bottom: dotted 4px #6b0ae1;
}

.about-me .about-me-image {
    max-width: 600px;
    margin-bottom: -5px;
}

.about-me .about-me-image img {
    width: 100%;
}

.about-me p {
    margin: 8px 0;
}

.contact-me {
    background: no-repeat url(../Sources/img/Pattern.png);
    background-size: 150%;
    background-color: rgba(255, 255, 255, 0.95);
    background-blend-mode: lighten;
    position: relative;
    background-position-x: 45%;
    background-position-y: 45%;
}

.imprint .wrapper {
    width: 60vw;
}

.imprint h1,
.imprint h2 {
    margin-top: 42px;
    margin-bottom: 24px;
}

.imprint p {
    margin: 16px 0;
}

.imprint hr {
    margin: 42px 0;
    border-top: dotted 4px #6b0ae1;
}

:root {
    --bg: #f6f6f8;
    --text: #2b2b2b;
    --muted: #6b6b6b;
    --card: rgba(255, 255, 255, 0.85);
    --border: rgba(0, 0, 0, 0.14);
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    --accent: #b35cff;
    /* lila Rahmen */
    --radius: 14px;
}

.vtuber-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 42px 20px 64px;
    color: var(--text);
}

.vtuber-title {
    text-align: center;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: 0.5px;
    margin: 0 0 22px;
    font-weight: 800;
    color: #d3d3d5;
    margin-bottom: 42px !important;
}

.vtuber-carousel {
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 14px;
    margin: 0 auto 26px;
}

.carousel-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.carousel-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.9);
}

.chev {
    font-size: 22px;
    color: rgba(0, 0, 0, 0.55);
}

.carousel-viewport {
    overflow: hidden;
    padding: 0;
    outline: none;
}

.carousel-track {
    display: flex;
    gap: 42px;
    align-items: flex-start;
    padding: 6px 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* du hattest das früher schon ähnlich */
    scroll-snap-type: x mandatory;
    /* sorgt fürs Einrasten */
    /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.profile {
    min-width: 170px;
    display: grid;
    justify-items: center;
    gap: 10px;
    user-select: none;
    scroll-snap-align: start;
}

.profile-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.profile-thumb {
    width: 160px;
    height: 200px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    background: rgba(255, 255, 255, 0.7);
    transition: transform 140ms ease, border-color 140ms ease;
}

.profile.is-active .profile-thumb {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.profile-name {
    font-style: italic;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
}

.vtuber-bottom {
    display: grid;
    grid-template-columns: 2.4fr 0.9fr;
    gap: 26px;
    align-items: start;
    margin-top: 8px;
}

.vtuber-stage {
    position: relative;
    min-height: 420px;
}

.stage-image {
    width: 100%;
    height: auto;
    display: block;
}

.vtuber-review {
    position: relative;
    min-height: 420px;
    display: grid;
    align-content: start;
}

.review-watermark {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 34px;
    letter-spacing: 6px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.08);
    pointer-events: none;
    user-select: none;
}

.review-card {
    margin-top: 52px;
    background: var(--card);
    padding: 16px 16px 18px;
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: 14px;
    row-gap: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.review-avatar {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid var(--accent);
    background: rgba(255, 255, 255, 0.7);
}

.review-meta {
    display: grid;
    align-content: center;
    gap: 2px;
}

.review-name {
    font-weight: 800;
    font-size: 16px;
}

.review-handle {
    color: #6b0ae1;
    font-size: 13px;
}

.review-quote {
    grid-column: 1 / -1;
    margin: 6px 0 0;
    color: rgba(0, 0, 0, 0.70);
    font-style: italic;
    line-height: 1.35;
}

#chibi-model .vtuber-bottom {
    grid-template-columns: 0.9fr 2.4fr;
}


/* Responsive */

@media (max-width: 900px) {
    nav .nav-wrapper .navigation .menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    nav .nav-wrapper .navigation .links-nav {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: none;
        background-color: rgba(255, 255, 255, 0.95);
        margin-top: 16px;
        padding: 16px 0;
        border-top: 1px solid #ccc;
    }
    nav .nav-wrapper .navigation .links-nav.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    nav .nav-wrapper .navigation .socials-list {
        display: none;
    }
    nav .nav-wrapper .navigation .logo {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        width: 100%;
        padding: 0 24px;
    }
    .vtuber-bottom {
        grid-template-columns: 1fr !important;
    }
    .vtuber-review {
        min-height: auto;
    }
    .vtuber-stage {
        min-height: auto;
    }
    .links-nav.active .commission-link {
        all: unset !important;
    }
    .links-nav.active .commission-link a {
        font-size: 16px !important;
        color: black !important;
        text-transform: uppercase !important;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    .links-nav.active .links {
        padding: 24px 0 !important;
        width: 100% !important;
        border-bottom: solid 1px rgba(0, 0, 0, 0.08);
        text-align: center;
    }
    .links-nav.active {
        padding: 0 !important;
    }
    .banner .banner-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
    .banner .banner-wrapper .banner-text {
        margin-top: 10vh;
    }
    .banner .banner-wrapper .banner-text b {
        font-size: 60px;
    }
    .banner .banner-wrapper .banner-img img {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
    nav .nav-wrapper .navigation .links-nav {
        gap: 0 !important;
    }
    h1,
    h2 {
        font-size: 16px !important;
    }
    .imprint .wrapper {
        width: 100vw;
    }
    .flex-center-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .button-colorful {
        font-size: 14px;
    }
    .contact-me {
        background-size: 300%;
    }
    .vtuber-bottom {
        grid-template-columns: 1fr;
    }
    .vtuber-stage {
        width: 100%;
        min-height: auto;
    }
    .stage-image {
        width: 100%;
        height: auto;
        display: block;
    }
    .vtuber-review {
        width: 100%;
        min-height: auto;
    }
    .nav-wrapper {
        position: relative !important;
    }
    .links-nav {
        position: absolute !important;
        width: 100% !important;
        left: 0;
        bottom: -140px !important;
        z-index: 1000000 !important;
    }
    .profile {
        min-width: 208px !important;
    }
    .pill-links a {
        width: auto !important;
        font-size: 10px;
    }
}

@media (max-width: 520px) {
    .vtuber-carousel {
        grid-template-columns: 44px 1fr 44px;
    }
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    .carousel-viewport {
        padding: 0 24px;
    }
    .vtuber-title {
        font-size: 24px !important;
    }
    .hide-mobile {
        display: none !important;
    }
}


/*# sourceMappingURL=styles.css.map */