@font-face {
    font-family: 'Michroma';
    src: url('fonts/Michroma/Michroma-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DMSans';
    src: url('fonts/DMSans/DMSans-VariableFont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Saira';
    src: url('fonts/Saira/Saira-VariableFont_wdth\,wght.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Typografie-System*/
:root {
    --fs-hero: clamp(2rem, 5vw, 3.75rem);
    --fs-h2: clamp(1.5rem, 3vw, 3rem);
    --fs-h3: clamp(1rem, 1.5vw, 1.25rem);
    --fs-body: clamp(0.9rem, 1.2vw, 1.25rem);
    --fs-small: clamp(1rem, 1vw, 0.9rem);
    --fs-xsmall: clamp(1rem, 1vw, 0.9rem);
    --fs-nav: clamp(0.9rem, 1.2vw, 1.25rem);
    --fs-logo: clamp(1.2rem, 2vw, 1.8rem);

}


* {
    box-sizing: border-box;
    margin: 0;
    --bg-color: #2e3440;
    --contrast-color: #3B4252;
    --slate: #4C566A;
    --blue: #190482;
    --button_purple: #8b5cf6;
    --purple: #7752FE;
    --light-purple: #8e8ffa;
    --light-blue: #C2D9FF;
    --white-light: #f6f6f6c9;
    --white-opacity: #eceaeab1;
    --headings_gray: rgb(192, 192, 192);
    --darker-purple: rgb(107, 98, 174);
    --gradient: linear-gradient(rgb(157, 69, 181), rgb(72, 118, 170));
    --border-card: rgba(128, 128, 128, 0.5);
    --tl-card-border-hover: rgba(128, 128, 128, 1);
    --tl-card-bg: #363c4b;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    position: relative;
    height: 100%;
    font-family: 'Michroma';
}


.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}




.container_website {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
}


.hero-navbar-wrapper {
    position: relative;
    background-color: var(--bg-color);
}

/* Top Navbar Horizontal mit Logo und Navliste */

.navbar {
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.navliste {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}


.logoimg{
    height: auto;
    width: 400px;
    z-index: 999;
    padding: 4em;
}

/* .logo img {
    height: 80px;
    z-index: 111;
} */

.logo a {
    color: white;
    text-decoration: none;
    z-index: 999;
}


.navliste {
    white-space: nowrap;
    display: flex;
    list-style: none;
    justify-content: end;
    margin-right: 1em;
}

.navliste li {
    font-size: 1.25rem;
    margin-right: 2em;
}

.navliste li a {
    text-decoration: none;
    background-image: linear-gradient(rgb(255, 255, 255), rgb(192, 192, 192));
    color: transparent;
    background-clip: text;
    transition: 0.4s ease-in-out;
    position: relative;
}

.navliste li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: rgb(192, 192, 192);
    transition: all 0.4s;
}

.navliste li a:hover::before {
    width: 100%;
    left: 0;
}

.btn-menu,
.btn-close {
    display: none;
}

.burger-line {
    display: block;
    height: 2px;
    width: 30px;
    background-color: white;
    margin-top: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 5px;

}

.burger-line:first-child {
    margin-top: 0;
}

.btn-menu.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.btn-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.btn-menu.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}


/* Intro Header Section */

.hero {
    position: relative;
    background-color: var(--bg-color);
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 10%;
}

.hero-bg-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(180px, 20vw, 420px);
    opacity: 1;
    pointer-events: none;
    z-index: 11;
    filter: brightness(0.75);
}


.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: clamp(1.5rem, 4vw, 5rem);
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-left h1 {
    font-size: var(--fs-hero);
    color: white;
    margin: 20px 0;
}

.hero-left p {
    color: gray;
    font-size: var(--fs-h3);
}

.github_icon {
    width: 60px;
    margin-top: 1em;
    filter: brightness(0) invert(1) brightness(0.6);
    opacity: 1;
}



.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    color: gray;
}

.hero-right h3 {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.hero-right a {
    font-size: 0.75rem;
    text-decoration: none;
    color: white;
}



#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* LOGO Section Logo Slider */

.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 5vh; */
    margin-bottom: 5vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    display: flex;
    flex-direction: row;
    padding: 40px 0;
    background: var(--bg-color);
    position: relative;
    max-width: 700px;
    width: 80vw;
    min-width: 20vw;
    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 1) 85%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 1) 85%,
            rgba(0, 0, 0, 0) 100%);

}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logos:before {
    left: 0;
}

.logos:after {
    right: 0;

}

.logos:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: flex;
    align-items: center;
    animation: 10s slide infinite linear;
    flex-shrink: 0;
}

.logos-slide img {
    height: 60px;
    margin-right: 4em;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}


/* Latest Work Slider */
/* Latest Work Slider */


.ueberschrift_latest_work {
    font-weight: 600;
    /* background-image: linear-gradient(90deg, rgb(157, 69, 181), rgb(72, 118, 170)); */
    color: var(--headings_gray);
    /* background-clip: text; */
    font-size: var(--fs-h2);
    transform: skew(-15deg);
    margin-top: 5vh;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

/* &::after{
    content: '';
    height: 10px;
    width: 100px;
    background-color: #190482;
} */


.latest_work_slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
}

.swiper {
    width: min(90vw, 1600px);
    height: 100%;
}


.swiper-slide {
    font-size: 18px;
    color: #fff;
    padding: 40px 60px;
    background-color: var(--bg-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 2rem;
}


.image_wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex: 0 0 58%;
    height: 100%;
    align-items: center;
    overflow: hidden;
}

.slider_content_main_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 3%;
    transition: 0.3s;
}

.slider_content_main_image:hover {
    transform: scale(1.1);
}

.swiper-slide .title {
    font-size: var(--fs-h2);
    font-weight: 300;
    text-align: center;
    font-family: 'Michroma';
}

.swiper-slide .subtitle {
    font-size: var(--fs-h3);
    text-align: center;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    color: gray;
    font-family: 'Michroma';
}

.swiper-slide .text {
    font-size: var(--fs-small);
    max-width: 400px;
    line-height: 1.3;
    color: gray;

}

.swiper-slide .text ul {
    margin-top: 2em;
}

.swiper-slide .text ul li {
    line-height: 1.6;
}

.description_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.description_wrapper {
    flex: 1;
    height: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.info-card {
    height: max-content;
    background: var(--contrast-color);
    /* border: 0.5px solid rgba(255, 255, 255, 0.07); */
    border: 0.5px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 22px 22px;
    margin-bottom: 0.75em;
    font-family: 'Montserrat';
}


.info-card-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.2px;
    margin-bottom: 5px;
    font-family: system-ui, sans-serif;
}

.info-card-val {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-family: system-ui, sans-serif;
}

.stack-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px;
}

.pill {

    font-size: 0.75rem;
    background: var(--tl-card-bg);
    border: 0.5px solid var(--tl-card-border-hover);
    border-radius: 20px;
    padding: 4px 15px;
    font-size: 12px;
    color: var(--headings_gray);
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s, background 0.2s;
    line-height: 1.8;
}

.pill:hover {
    border: 1px solid var(--white-opacity);
}



.besuche_website_slider_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: em;
    padding: 1.5em;
    transition: 0.3s;
    width: auto;
    background: rgba(59, 66, 82, 0.6);
    /* border: 0.5px solid rgba(139, 92, 246, 0.9); */
    border: 0.5px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.85rem;
    font-family: 'Michroma';
}

.besuche_website_slider_button:hover .external_link_icon {
    transform: rotate(45deg);
}

.external_link_icon {
    width: 20px;
    height: 20px;
    transition: ease-in-out;
    transition: 0.3s;

}

/* SVG Waves*/

.wave-svg-top {
    height: 320px;
    width: 100%;
    display: block;
}

.wave-svg-bottom {
    transform: scale(-1, -1);
    height: 300px;
    width: 100%;
    display: block;
}

.wrapper-aboveme-section {
    background-color: #3B4252;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ===== Sektion Über Mich ===== */

/* ===== SEKTION ===== */
#ueber-mich {
    /* display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; */
    max-width: 900px;
    width: 100%;
    padding: 4rem 0;
}

.section-label {
    text-align: center;
    font-size: var(--fs-h3);
    letter-spacing: 4px;
    color: var(--headings_gray);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'DMSans', sans-serif;
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--light-purple);
    margin-bottom: 3rem;
    font-family: 'Michroma', sans-serif;
    letter-spacing: -0.5px;
}

/* ===== OBERER BEREICH: BIO + STATS ===== */
.ueber-mich-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.bio-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--light-purple);
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.bio-text {
    font-size: var(--fs-small);
    line-height: 1.8;
    text-align: center;
    color: var(--headings_gray);
    font-family: 'Michroma', sans-serif;
    max-width: 500px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 0.25rem;
}

.tag {
    background: var(--tl-card-bg);
    border: 0.5px solid var(--tl-card-border-hover);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--headings_gray);
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s, background 0.2s;
}

.tag:hover {
    border-color: var(--tl-card-border-hover);
    background: var(--purple-dim);
    border: 1px solid;
}

/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card {
    background: var(--tl-card-bg);
    border: 0.5px solid var(--border-card);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-card:nth-child(3) {
    grid-column: 1 / -1;
    margin: auto;
    width: 50%;
}

.stat-card:hover {
    border-color: var(--tl-card-border-hover);
    transform: translateY(-2px);
}

.stat-card.accent {
    border-color: var(--border-card);
    background: var(--bg-hover);
}

.stat-card.accent:hover {
    border-color: var(--tl-card-border-hover);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-purple);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--light-purple);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== TRENNLINIE ===== */
.divider {
    display: none;
    border: none;
    border-top: 0.5px solid var(--headings_gray);
    margin: 0 0 2.5rem;
}

.section-label-tl {
    margin-top: 10vh;
}

/* ===== TIMELINE ===== */
.timeline {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: start;
    position: relative;

}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: var(--line-top, 0);
    bottom: var(--line-bottom, 0);
    width: 1.25px;
    background: var(--headings_gray);
    transform: translateX(-50%);

    z-index: 0;
}

.tl-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
    z-index: 1;
}

.tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--purple);
    border: 1px solid var(--bg-color);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.tl-card {
    background: var(--tl-card-bg);
    border: 0.5px solid var(--border-card);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    margin: 10px 8px;
    transition: border-color 0.2s;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.tl-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tl-card:hover {
    border: solid 1px;
    border-color: var(--tl-card-border-hover);

}

.tl-card.accent {
    border-color: var(--border-card);
    background: var(--tl-card-bg);
}

.tl-card.accent:hover {
    border: solid 1px;
    border-color: var(--tl-card-border-hover);
}

.tl-left {
    text-align: right;
    transform: translateX(-40px);
}

/* .tl-card:not(.tl-left) {
  transform: translateX(20px);
} */

.tl-left .tag {
    margin-left: 4px;
    margin-right: 0;
}

.tl-empty {
    margin: 10px 8px;
}

.tl-year {
    font-size: 11px;
    color: var(--headings_gray);
    letter-spacing: 1px;
    margin-bottom: 3px;
    display: block;
}

.tl-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-purple);
    margin-bottom: 4px;
}

.tl-desc {
    font-size: var(--fs-xsmall);
    color: var(--white-opacity);
    line-height: 1.6;
    margin-bottom: 6px;
    font-family: 'Montserrat';
}


/* Contact-Form styling */
.contact-section {
    position: relative;
    height: auto;
    width: 100%;
    /* overflow: hidden; */
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-heading {
    font-weight: 600;
    text-align: center;
    /* background-image: linear-gradient(90deg, rgb(157, 69, 181), rgb(72, 118, 170)); */
    /* color: transparent; */
    color: var(--headings_gray);
    background-clip: text;
    font-size: var(--fs-h2);
    margin-bottom: 1em;
}

.form-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    position: relative;
    width: 100%;
}

.form-submit {
    margin-top: 1em;

}

.form-group input,
.form-textarea {
    background-color: #4c566a9c;
    color: rgb(255, 255, 255);
    padding: 5px;
    border-radius: 5px;
    border-style: none;
    border: 2px solid #8e90fa97;
    font-family: 'Montserrat';
}

.form-textarea {
    width: 500px;
    height: 250px;
}

.form-input {
    width: 500px;
}


.form-group input:focus,
.form-textarea:focus {
    /* background-color: rgb(144, 33, 248); */
    outline-style: solid;
    outline-color: var(--light-purple);
}


.form-submit {
    position: relative;
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 22px 35px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 5px 2px #6D28D9;
    transform: translateY(0);
    transition: transform 0.1s, box-shadow 0.1s;
    border-radius: 5px;

}

.form-submit:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #6D28D9;
}

.form-submit:active {
    transform: translateY(5px);
    box-shadow: 0 0 0 #6D28D9;
}

#formResponse {
    font-size: var(--fs-xsmall);
    margin: 2em;
}

.container-paperplane-svg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.container-paperplane-svg img {
    max-width: 350px;
    height: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}

.wrapper-footer {
    width: 100%;
    padding: 2em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-left {
    color: white;
    padding-left: 1em;
    position: relative;
}

.footer-left::before {
    content: '';
    height: inherit;
    width: 10px;
    background-color: #8B5CF6;
    position: absolute;
    left: 0em;
    top: 0;
    bottom: 0;
}

.footer-left p:nth-child(1) {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-left p:nth-child(2) {
    font-size: var(--fs-xsmall);
}

.footer-right {
    margin-right: 5vw;
    display: flex;
    gap: 4rem;
}

.footer-right a {
    text-decoration: none;
    color: white;
}


#topButton {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #8b5cf6;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

footer button img {
    height: 30px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===BLOG Content ==== */
.wrapper-blog {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.blog {
    width: 1000px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-card {
    background-color: var(--slate);
    margin-bottom: 3em;
    padding: 2em;
    border-radius: 8px;
    color: white;
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    align-items: center;
}

.blog-card-img {
    width: 150px;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.blog-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.post-hero-img {
    width: 100%;
    max-height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1em 0;
}
.post-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
    display: block;
}


.blog h1 {
    color: var(--light-purple);
}

.blog-card a {
    list-style: none;
    color: var(--white-opacity);
}

.excerpt {
    margin-bottom: 2em;

}

.excerpt p {
    font-family: 'Montserrat';

}

.blog h2 {
    font-family: 'Michroma';
    color: var(--light-purple);
}

.date {
    color: var(--white-opacity);
    font-size: var(--fs-xsmall);
    font-family: 'DMSans';
}




/* Bilder zentrieren Post blog content */

.post-content {
    color: white;
    font-family: 'Montserrat';
}

.post-content figure {
    margin: 1em 0;
}

.post-content .aligncenter,
.post-content figure.aligncenter {
    display: flex;
    justify-content: center;
}

.post-content .alignright,
.post-content figure.alignright {
    display: flex;
    justify-content: flex-end;
}

.post-content .alignleft,
.post-content figure.alignleft {
    display: flex;
    justify-content: flex-start;
}

.post-content figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}



#post-container {
    background-color: var(--slate);
    padding: 2em;
    border-radius: 20px;
    
}


/* ===== DATENSCHUTZ & IMPRESSUM STYLING ===== */



.privacy-policy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 5vh;
    padding: 5em;
    color: var(--white-light);
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.privacy-policy article {
    width: 100%;
}


.privacy-policy h1 {
    font-size: var(--fs-logo);
    text-decoration: underline 4px var(--light-purple);
    color: var(--white-light);
    margin-bottom: 1.5em;
    font-family: 'Michroma', sans-serif;
}


.privacy-policy h2 {
    font-size: var(--fs-h3);
    color: var(--light-purple);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-family: 'Michroma', sans-serif;
    letter-spacing: -0.5px;
}


.privacy-policy p {
    font-size: var(--fs-small);
    color: var(--white-opacity);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    
}


.privacy-policy p strong {
    color: var(--headings_gray);
    font-family: 'DMSans', sans-serif;
    letter-spacing: 0.5px;
}


.privacy-policy address {
    background: var(--tl-card-bg);
    border: 0.5px solid var(--border-card);
    border-radius: 10px;
    padding: 1.5rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--white-light);
    font-family: 'Michroma', sans-serif;
    font-size: calc(var(--fs-xsmall) * 0.95);
    margin: 1.5rem 0;
    max-width: fit-content;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.privacy-policy address strong {
    color: var(--light-purple);
}


.privacy-policy a {
    color: var(--light-purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-policy a:hover {
    color: var(--white-light);
    text-decoration: underline;
}

.privacy-policy ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.privacy-policy li {
    font-size: var(--fs-small);
    color: var(--white-opacity);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}


.privacy-policy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
}

.privacy-policy li strong {
    color: var(--headings_gray);
    font-family: 'DMSans', sans-serif;
}



/* ===== RECHTLICHES: IMPRESSUM STYLING ===== */

.impressum {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 5vh;
    padding: 5em;
    color: var(--white-light);
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.impressum article {
    width: 100%;
}

/* Große Überschrift mit lila Unterstreichung */
.impressum h1 {
    font-size: var(--fs-logo);
    text-decoration: underline 4px var(--light-purple);
    color: var(--white-light);
    margin-bottom: 1.5em;
    font-family: 'Michroma', sans-serif;
}

/* Sektions-Überschriften */
.impressum h2 {
    font-size: var(--fs-h3);
    color: var(--light-purple);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-family: 'Michroma', sans-serif;
    letter-spacing: -0.5px;
}

/* Fließtext */
.impressum p {
    font-size: var(--fs-small);
    color: var(--white-opacity);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-family: 'Montserrat', sans-serif;
    width: 75%;
}

/* Bold-Texte hervorheben */
.impressum p strong {
    color: var(--headings_gray);
    font-family: 'DMSans', sans-serif;
    letter-spacing: 0.5px;
}

/* Die Adress-Box im Card-Style deiner Website */
.impressum address {
    background: var(--tl-card-bg);
    border: 0.5px solid var(--border-card);
    border-radius: 10px;
    padding: 1.5rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--white-light);
    font-family: 'Michroma', sans-serif;
    font-size: calc(var(--fs-xsmall) * 0.95);
    margin: 1.5rem 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.impressum address strong {
    color: var(--light-purple);
}

/* Links (z.B. Mailto und OS-Plattform) */
.impressum a {
    color: var(--light-purple);
    text-decoration: none;
    transition: color 0.2s ease;
}

.impressum a:hover {
    color: var(--white-light);
    text-decoration: underline;
}


/* Navliste mit responsive media Querys */

@media (max-width: 1000px) {

    .logoimg {
        width: 225px;
        padding: 0;
        margin: auto;
    }

    .logo-btn-menu-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 2em;
    }


    .navliste {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 200px;
        width: 100%;
        padding-top: 2em;
        background-color: var(--bg-color);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease;

    }

    .navbar {
        height: auto;
        min-height: max-content;
        width: 100%;
        flex-direction: column;
    }

    .navliste.active {
        max-height: 400px;
        opacity: 1;
    }

    .navliste li {

        margin-top: 0.25em;
        margin-bottom: 0.5em;
    }


    .btn-menu {
        display:block;
        border: none;
        background: none;
        cursor: pointer;
        z-index: 100;
    }


    /* Intro header section */

    .hero {
        padding: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
        padding: 2rem 1rem;
    }

    .hero-left {
        order: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-right {
        margin-left: 1em;
        margin-right: 1em;
        margin-bottom: 2em;
        order: 3;
        gap: 1.5rem;
    }

    .hero-bg-svg {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: clamp(180px, 45vw, 240px);
        margin: 0 auto;
        order: 2;
    }


    /* Above Me section */
    .aboveme_section {
        background-color: var(--contrast-color);
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2em 1em;
        gap: 1.5em;
    }


    /* Section Swiper Slider */

    .swiper {
        height: auto;
        width: 100vw;
    }

    .latest_work_slider {
        height: auto;
        width: 100vw;
    }

    .swiper-slide {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 1rem;
    }


    .description_wrapper {
        width: fit-content;
        padding: 1em;
        margin-top: 2em;
        margin-bottom: 2em;
    }

    .slider_content_main_image {
        width: 100%;
        max-width: 600px;
        min-width: 40vw;
        height: 100%;
    }



    .ueber-mich-top {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        margin-bottom: 3rem;
    }

    .bio-text {
        padding: 0.5em;
        max-width: 90vw;
    }

    .stats-grid {
        margin-left: 1em;
        margin-right: 1em;
    }

    .timeline {
        display: block;
        padding-left: 20px;
        position: relative;

    }

    .timeline::before {
        left: 20px;
        transform: none;
        top: var(--line-top, 0);
        bottom: var(--line-bottom, 0);
    }

    .tl-spacer,
    .tl-line {
        display: none;
    }

    .tl-card,
    .tl-card.left,
    .tl-card.right {
        display: block;
        grid-column: unset;
        text-align: left;
        margin-left: 20px;
        margin-right: 5vw;
        margin-top: 10px;
        margin-bottom: 10px;
        position: relative;
        transition: opacity 2s ease, transform 2s ease;
        transform: translateY(40px) !important;
        opacity: 0;
    }

    .tl-card.left.visible,
    .tl-card.right.visible {
        transform: translateY(0) !important;
        opacity: 1;
    }

    /* Purple Timeline Dots */
    .tl-card::before {
        content: '';
        position: absolute;
        left: -28px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--purple);
        border: 1px solid var(--bg-color);
        z-index: 2;

    }

    .tl-card.left .tag {
        margin-left: 0;
        margin-right: 4px;
    }

    .tl-card.left,
    .tl-card.right {
        transform: translateY(16px);
    }

    .tl-card.visible {
        opacity: 1;
        transform: translateY(0);
    }


    .form-group input,
    .form-textarea {
        background-color: #4c566a9c;
        color: rgb(255, 255, 255);
        padding: 5px;
        border-radius: 5px;
        border-style: none;
        border: 2px solid #8e90fa97;
        margin-left: 1em;
        margin-right: 1em;
    }

    .form-input {
        width: 90vw;
        max-width: 500px;
    }

    .form-textarea {
        width: 90vw;
        max-width: 500px;
    }





    #topButton {
        display: none;
        position: fixed;
        bottom: 10vh;
        right: 20px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: #8b5cf6;
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 10px;
    }


    footer button img {
        height: 15px;
        width: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .wrapper-footer {
        width: 100%;
        padding: 1em;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        position: relative;
        gap: 2rem;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        padding: 1em;
        margin-right: 0vw;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }



    .blog {
        width: 90vw;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 4em;
        margin-bottom: 4em;
    }


    .privacy-policy {
        padding: 0.5em;
        margin-top: 5vh;
    }

    .privacy-policy h1 {
        font-size: var(--fs-h2);
    }

    .privacy-policy address {
        padding: 1.3rem;
        max-width: fit-content;
    }

    .impressum {
        padding: 0.5em;
    }
    .impressum address{
        margin: 0em;
        width: fit-content;
        
    }

    .impressum-content h2 {
        margin-top: 2rem;
    }

}