body {
    background-color: white;
    color: black;
    padding: 0;
    margin: 0;
}

header {
    width: 100%;
    box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}
.header-content {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 50px;
    position: relative;
}
.logo-wrapper {
    flex: 0 0 auto;
}
.website-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    cursor: pointer;
}
.link-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.link-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.link-wrapper > div {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}
.link-wrapper i {
    transition: 0.5s ease;
}

.about-me {
    position: relative;
}
.about-popup {
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.1);
    z-index: 999;
}
.about-popup-content {
    padding: 20px;
    border-radius: 18px;
    text-align: center;
}
.about-popup-content div {
    padding: 8px 18px;
    margin: 5px 0;
    border-radius: 16px;
}
.about-popup-content div:hover {
    background: rgba( 0, 0, 0, 0.05);
}

.recent-projects {
    position: relative;
}
.projects-popup {
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.1);
    z-index: 999;
}
.projects-popup-content {
    padding: 20px;
    border-radius: 18px;
    text-align: center;
}
.projects-popup-content div {
    padding: 8px 18px;
    margin: 5px 0;
    border-radius: 16px;
}
.projects-popup-content div:hover {
    background: rgba( 0, 0, 0, 0.05);
}

.prices-time {
    position: relative;
}
.prices-time-popup {
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.1);
    z-index: 999;
}
.prices-time-popup-content {
    padding: 20px;
    border-radius: 18px;
    text-align: center;
}
.prices-time-popup-content div {
    padding: 8px 18px;
    margin: 5px 0;
    border-radius: 16px;
}
.prices-time-popup-content div:hover {
    background: rgba( 0, 0, 0, 0.05);
}

.contact {
    position: relative;
}
.contact-popup {
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.1);
    z-index: 999;
}
.contact-popup-content {
    padding: 20px;
    border-radius: 18px;
    text-align: center;
}
.contact-popup-content div {
    padding: 8px 18px;
    margin: 5px 0;
    border-radius: 16px;
}
.contact-popup-content div:hover {
    background: rgba( 0, 0, 0, 0.05);
}

.more {
    position: relative;
}
.more-popup {
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.1);
    z-index: 999;
}
.more-popup-content {
    padding: 20px;
    border-radius: 18px;
    text-align: center;
}
.more-popup-content div {
    padding: 8px 18px;
    margin: 5px 0;
    border-radius: 16px;
}
.more-popup-content div a {
    color: black;
}

.hero-section {
    margin: 80px 0;
    text-align: center;
}
.hero-section h1, .hero-section p {
    margin: 28px 0;
}
.start-btn {
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0),  rgb(255, 0, 149));
    color: black;
    border: none;
    padding: 10px 25px;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    font-size: 28px;
    transition: 0.3s ease;
    position: relative;
    z-index: 5;
}
.start-btn::before {
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0),  rgb(255, 0, 149));
    border-radius: 999px;
    filter: blur(15px);
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
    opacity: 0;
    transition: 0.3s ease;
}
.start-btn:hover {
    transform: translateY(-5px) scale(1.05);
}
.start-btn:hover::before {
    opacity: 1;
}

.about-me-section {
    margin: 80px 0;
    text-align: center;
}
.about-intro {
    max-width: 820px;
    margin: 0 auto;
}

.recent-projects-section {
    margin: 80px 0;
    text-align: center;
}
.projects-intro {
    max-width: 520px;
    margin: 0 auto;
}
.project-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 120px;
    gap: 24px;
    flex-wrap: wrap;
}
.project-img {
    height: 130px;
    width: 220px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba( 0, 0, 0, 0.2);
    cursor: pointer;
}
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba( 0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.lb-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
}
.close-box {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    user-select: none;
}

.prices-time-section {
    margin: 80px 0;
    text-align: center;
}
.prices-time-intro {
    max-width: 820px;
    margin: 0 auto;
}
.bundle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
.bundle {
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba( 0, 0, 0, 0.1);
    cursor: pointer;
}
.fa-circle-exclamation {
    color: black;
    cursor: pointer;
    margin-left: 10px;
    font-size: 28px;
    transition: 0.3s ease;
}
.fa-circle-exclamation:hover {
    transform: scale(1.05);
}
.basic {
    color: rgb(0, 255, 75);
}
.pro {
    color: rgb(255, 208, 0);
}
.elite {
    color: red;
}
.bundle-content div {
    margin: 5px 0;
}
.bundle-name {
    font-size: 28px;
}
.bundle-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba( 0, 0, 0, 0.7);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bundle-popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: black;
    max-width: 550px;
    text-align: center;
    position: relative;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: black;
}
.bundle-popup-content div {
    margin: 10px 0;
}

.contact-section {
    margin: 80px 0;
    text-align: center;
}
.contact-intro {
    max-width: 820px;
    margin: 0 auto;
}
.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.discord-btn {
    background: linear-gradient(135deg, rgb(0, 51, 255), rgb(29, 0, 159), rgb(190, 0, 211));
    padding: 10px 25px;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 28px;
    transition: 0.3s ease;
    position: relative;
    z-index: 5;
    display: inline-block;
    white-space: nowrap;
}
.discord-btn::before {
    content: "";
    border-radius: 999px;
    filter: blur(15px);
    background: linear-gradient(135deg, rgb(0, 51, 255), rgb(29, 0, 159), rgb(190, 0, 211));
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    transition: 0.3s ease;
    cursor: pointer;
    z-index: -1;
    opacity: 0;
}
.discord-btn:hover {
    transform: translateY(-5px) scale(1.05);
}
.discord-btn:hover::before {
    opacity: 1;
}
.youtube-btn {
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0), rgb(255, 0, 149));
    padding: 10px 25px;
    border-radius: 999px;
    color: black;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 28px;
    transition: 0.3s ease;
    position: relative;
    z-index: 5;
    display: inline-block;
    white-space: nowrap;
}
.youtube-btn::before {
    content: "";
    border-radius: 999px;
    filter: blur(15px);
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0), rgb(255, 0, 149));
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    transition: 0.3s ease;
    cursor: pointer;
    z-index: -1;
    opacity: 0;
}
.youtube-btn:hover {
    transform: translateY(-5px) scale(1.05);
}
.youtube-btn:hover::before {
    opacity: 1;
}
.email-btn {
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0), rgb(255, 0, 149));
    padding: 10px 25px;
    border-radius: 999px;
    color: black;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 28px;
    transition: 0.3s ease;
    position: relative;
    z-index: 5;
    display: inline-block;
    white-space: nowrap;
}
.email-btn::before {
    content: "";
    border-radius: 999px;
    filter: blur(15px);
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0), rgb(255, 0, 149));
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    transition: 0.3s ease;
    cursor: pointer;
    z-index: -1;
    opacity: 0;
}
.email-btn:hover {
    transform: translateY(-5px) scale(1.05);
}
.email-btn:hover::before {
    opacity: 1;
}

footer {
    text-align: center;
    background: rgb(0, 0, 20);
    color: white;
    font-size: 18px;
    padding: 15px 0;
}
footer a {
    color: white;
}

.condition-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: popupFadeIn 0.3s ease;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba( 0, 0, 0, 0.7);
    z-index: 999;
}
.condition-popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: black;
    max-width: 550px;
    text-align: center;
    position: relative;
}
.condition-popup-content p {
    margin: 10px 0;
}
.condition-popup-content a {
    color: black;
}
.close-condition-popup {
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0), rgb(255, 0, 149));
    padding: 10px 25px;
    border-radius: 999px;
    color: black;
    cursor: pointer;
    border: none;
    font-weight: bold;
    font-size: 28px;
    transition: 0.3s ease;
    position: relative;
    z-index: 5;
    margin-top: 30px;
}
.close-condition-popup::before {
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0), rgb(255, 0, 149));
    border-radius: 999px;
    filter: blur(15px);
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    z-index: -1;
    opacity: 0;
    transition: 0.3s ease;
}
.close-condition-popup:hover {
    transform: translateY(-5px) scale(1.05);
}
.close-condition-popup:hover::before {
    opacity: 1;
}


.section-hr {
    background: linear-gradient(135deg, rgb(255, 208, 0), rgb(255, 77, 0),  rgb(255, 0, 149));
    height: 3px;
    border: none;
}

.yes {
    color: lightgreen;
}
.no {
    color: red;
}
.demand {
    color: rgb(255, 191, 0);
}

.popup-fade-out {
    animation: popupFadeOut 0.3s ease;
}


@keyframes popupFadeOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-30px);
        opacity: 0;
    }
}

@keyframes popupFadeIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.hidden {
    display: none;
}


.hamburger {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba( 0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}
.hamburger-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.overlay-menu {
    padding: 0;
    text-align: center;
}
.overlay-menu div {
    margin: 0.8rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.overlay-menu a {
    margin: 0.8rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-size: 48px;
    color: white;
    text-decoration: none;
}
.hamburger-overlay.active .overlay-menu div:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}
.hamburger-overlay.active .overlay-menu div:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}
.hamburger-overlay.active .overlay-menu div:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}
.hamburger-overlay.active .overlay-menu div:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}
.hamburger-overlay.active .overlay-menu div:nth-child(5) {
    transition-delay: 0.5s;   /* <-- neu für den 5. Punkt */
    opacity: 1;
    transform: translateY(0);
}
.hamburger-overlay.active .overlay-menu a:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}
.overlay-menu div {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    cursor: pointer;
}

@media(min-width: 1440px) {
    .about-intro, .projects-intro, .prices-time-intro, .contact-intro {
        max-width: 1440px;
    }
} 

@media(max-width: 1150px) {
    .link-wrapper div {
        font-size: 20px;
    }
    .website-logo {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }
    .header-content {
        padding: 18px 0;
    }
}

@media(max-width: 1000px) {
    .link-wrapper div {
        font-size: 18px;
    }
    .website-logo {
        width: 34px;
        height: 34px;
        border-radius: 4px;
    }
    .header-content {
        padding: 14px 0;
    }
}

@media(max-width: 950px) {
    .link-wrapper div {
        font-size: 14px;
    }
    .website-logo {
        width: 24px;
        height: 24px;
        border-radius: 2px;
    }
    .header-content {
        padding: 10px 0;
    }
    .hero-section, .about-me-section, .recent-projects-section, .prices-time-section, .prices-time-section, .contact-section {
        padding: 0 50px;
    }
    .bundle-wrapper {
        flex-direction: column;
    }
}

@media(max-width: 768px) {
    .link-wrapper {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .website-logo {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }
    .header-content {
        padding: 20px 0;
    }
    .button-wrapper {
        flex-direction: column;
    }
}

@media(max-width: 420px) {
    .discord-btn {
        font-size: 24px;
    }
    .youtube-btn {
        font-size: 24px;
    }
    .email-btn { 
        font-size: 24px;
    }
    .discord-btn i, .youtube-btn i, .email-btn i {
        display: none;
    }
}