@font-face {
    font-family: 'Roboto Condensed';
    src: url('./assets/fonts/RobotoCondensed-Regular.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    scroll-behavior: smooth;
}

.page-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

.header {
    background-color: #141D2F;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 100px;
    display: flex;
}

.header-name {
    font-weight: bold;
}

.header-left {
    color: white;
}

.header-right ul{
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    list-style: none;
}

a {
  text-decoration: none;
  color: #FFFFFF;
}

.header-right a {
    font-size: 16px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link.active {
    color: #3DCFB6; 
}

.language-pill {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.45);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.language-pill:hover {
    border-color: rgba(112,230,28,0.35);
    box-shadow: 0 0 14px rgba(112,230,28,0.15);
}

.language-pill.is-active {
    color: #70E61C;
    background: rgba(112,230,28,0.08);
    border-color: rgba(112,230,28,0.6);
    text-shadow:0 0 8px rgba(112,230,28,0.9),0 0 18px rgba(112,230,28,0.5);
    box-shadow:0 0 18px rgba(112,230,28,0.25);
}

.pages-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(75%);
}

.background-shadow{
    position: absolute;
    z-index: 1;
}

.test1 {
    width: 100%;
    background-color: #141D2F;
    margin: 0 auto;
    box-sizing: border-box;
}

.test2 {
    max-width: 1440px;
    margin: 0 auto; 
    position: relative;
    z-index: 1;
}

.test3 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1440px;
    width: 100%;
}

.first-page {
    min-height: 100vh;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-sizing: border-box;
}

.main-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 250px;
}

.my-image {
    height: 400px;
    z-index: 2;
}

.image-wrapper {
    width: 450px;
    position: relative;
}

.third-page {
    position: relative;
}

.front-image {
    margin-bottom: 200px;
    position: relative;
    z-index: 10;
    left: 0px;
    height: 700px;
}

.display {
    display: flex;
    justify-content: center;
    width: 100%;
}

.part1, .part2, .part3 {
    margin: 0;
    line-height: 1;
}

.part1 {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 48px;
    color: #FFFFFF;
    font-weight: 200;
}

.part2 {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: -5px;
    color: #FFFFFF;
}

.part3 {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: -5px;
    color: rgba(151, 71, 255, 1);
}

.first-page-h1 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    font-size: 70px;
}

.button {
    background-color: #70E61C;
    color: rgb(0, 0, 0);
    width: 180px;
    height: 40px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s ease;
}

.button:hover {
    transform: scale(1.05);
}

.button {
    width: 180px;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s ease;
}

/* deaktiviert */
.button.disabled {
    background-color: #5b5b5b;
    color: #cfcfcf;
    cursor: not-allowed;
    opacity: 0.7;
}

.button.active {
    background-color: #70E61C;
    color: black;
    cursor: pointer;
    box-shadow:0 0 12px rgba(112,230,28,0.5),0 0 22px rgba(112,230,28,0.25);
}

.button.active:hover {
    transform: translateY(-2px);
}

.main-right {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.first-page::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;    
    background: url("../assets/icon/Vector.png") no-repeat center bottom;
    background-size: 100% 100%;
    z-index: 50;
    height: 350px;
}

.line {
    background-color: #9747FF;
    width: 100px;
    height: 2px;
}

.references-line {
    bottom: 150px;
    display: flex;
    justify-content: space-between;
    z-index: 100;
}

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

.gap30 {
    gap: 30px;
}

.white {
    color: #FFFFFF
}

.scroll-down {
    position: absolute;
    writing-mode: vertical-lr;
    transition: all 0.3s ease;
    writing-mode: vertical-lr;
    right: 0;
    bottom: 100px;
}

.scroll-down:hover {
    transform: scale(1.05);
}

.scroll-down:hover img {
    transform: scale(1.1);
}

.scroll-down img {
    transition: transform 0.3s ease;
}

.text {
    font-weight: 400;
    font-size: medium;
    font-size: 16px;
}

.headline {
    position: relative;
    padding-bottom: 50px;
}

.second-page {
    padding-left: 50px;
    position: relative;
    z-index: 2;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 100px;
    display: flex;
    gap: 100px;
}

.about-img {
    height: autp;
    width: 25px;
}

.about-span {
    padding-bottom: 20px;
}

.circle {
    height: 400px;
}

.about-profil {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.potrait-img {
    position: absolute;
    top: 51%;
    left: 36%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 70%;
    height: 90%;
    z-index: 1;
}

.second-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.width150 {
    width: 150px;
}

.second-right {
    padding-top: 130px;
}
    
.padding-bt {
    padding-bottom: 50px;
}

.padding-top {
    padding-top: 50px;
}

.third-page {
    padding-left: 50px;
    position: relative;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 200px;
    display: flex;
    gap: 50px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
}

.skill-container {
    width: 500px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-container button {
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.2s ease;
}

.skill-container button:hover {
    transform: scale(1.05);
}

.container-first-span {
    font-size: 18px;
    font-weight: bolder;
}

.green {
    background-color: #70E61C;
}

.greenc {
    color: #70E61C;
}

.violet {
    background-color: rgba(151, 71, 255, 1);
}

.violet-color {
    color: rgba(151, 71, 255, 1);
}

.image-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

.third-page-right {
    width: min(700px, 100%);
}

.skills-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    gap: 10px;
}

.skills-line {
    position: relative;
    width: 50px;
}

.padding {
    padding-right: 100px;
}

.skills-box {
    padding-right: 50px;
}

h1{
    margin-block-start: 0;
    margin-block-end: 0;
    font-size: 78px;
}

.fourd-page {
    position: relative;
        padding-top: 200px;
}

.project-img {
    height: 140px;
    width: 260px;
}

.project-card {
    position: relative;
    width: 320px;
    padding: 28px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    z-index: 10;
}

.projects-container {
    z-index: auto;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.project-buttons {
    margin-top: auto;
}

.text-align-center {
    text-align: center;
}

.portfolio-title {
    padding-top: 25px;
}

.button-size {
    font-size: 16px;
    height: 40px;
    width: 125px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.button-size:hover {
    cursor: pointer;
     transform: scale(1.05);
}

.font-weight {
    font-weight: bolder;
    font-size: medium;
}

.five-page {
    position: relative;
    padding-top: 200px;
    padding-bottom: 150px;
}

.display-flex-start {
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: left;
}

.width {
    width: 600px;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 16px;
    color: white;
    font-size: 16px;
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    padding: 0px 50px;
}

.contact-left,
.contact-right {
    width: 50%;
}

.privacy {
    font-size: 14px;
}

.contact-span {
    font-size: 32px;
    font-weight: 600;
    padding: 15px 5px;

}

.contact-span-answer {
    font-size: 20px;
    font-weight: 500;
}

.large-size {
    font-weight: 700;
}

.footer {
    max-width: 1440px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: white;
    position: relative;
    height: 250px;
}

footer {
    background-color: #141D2F;
}

.footer-left,
.footer-center,
.footer-right {
    width: 33%;
}

.footer-left {
    display: flex;
    gap: 12px;
}

.footer-left a {
    text-decoration: none;
}

.footer-left a:hover, 
.text-decoration:hover {
    color: #70E61C;;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.copyright-circle {
    width: 15px;
    height: 15px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.footer-right img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: 0.2s ease;
}

.footer-right img:hover, .left-side a:hover img  {
    transform: scale(1.1);
}

.next-pages {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 75px;
}

.privacy-main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #141D2F;
    color: #FFFFFF;
}

.privacy-page {
    width: 100%;
    max-width: 1100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 32px;
    padding: 60px;
}

.text-decoration {
    text-decoration: underline;
}

.back-home-btn {
    align-self: flex-start;
    margin-bottom: 30px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.privacy-page h1 {
    font-size: 64px;
    margin-bottom: 60px;
}

.section_container {
    margin-bottom: 48px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.section_head {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section_container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.section_container ul {
    padding-left: 24px;
}

.section_container li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.mail-link {
    color: #00c3ff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.mail-link:hover {
    text-decoration: underline;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    margin-top: 40px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,195,255,0.35);
}

.privacy-main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background-color: #141D2F;
    color: #FFFFFF;
}

.privacy-page {
    width: 100%;
    max-width: 1100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 32px;
    padding: 15px;

}

.privacy-page h1 {
    font-size: 64px;
    margin-bottom: 50px;
}

.impressum-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.impressum-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.impressum-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.mail-link {
    color: #70E61C;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.mail-link:hover {
    text-decoration: underline;
}


.navbar {
    display: none;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(20, 29, 47, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 32px;
}

.mobile-menu a:hover {
    color: #70E61C;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.header-right a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-right a:hover,
.header-right a.active {
    color: #70E61C;
}

