html {
    background: #ffffff !important;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #ffffff !important;
    color: #333333;
    padding-top: 80px;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}



nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #ff1493, #00ffff) 1;
    padding: 1em 2em;
    box-sizing: border-box;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 1em;
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: logoShine 3s infinite;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.4);
}

@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5em;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1em;
        gap: 1em;
    }
    
    nav ul {
        gap: 1em;
        justify-content: center;
        width: 100%;
    }
    
    nav ul li a {
        padding: 0.8em 1.2em;
        font-size: 0.9em;
    }
    
    nav .logo {
        font-size: 1.5em;
        text-align: center;
    }
    
    body {
        padding-top: 120px;
    }
}

nav ul li a {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1em;
    position: relative;
    padding: 0.5em 1em;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

nav ul li a:hover {
    color: #000000;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

nav ul li a:hover::before {
    opacity: 1;
}

header {
    text-align: center;
    padding: 6em 2em 4em 2em;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    backdrop-filter: blur(20px);
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    background: linear-gradient(135deg, #ff1493, #00ffff, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 20, 147, 0.6);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1) drop-shadow(0 0 20px rgba(255, 20, 147, 0.5)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 30px rgba(0, 255, 255, 0.7)); }
}

header p {
    font-size: 1.3em;
    color: #b0b0b0;
    margin-bottom: 2em;
    letter-spacing: 1px;
}

.hero-img {
    width: 100%;
    max-width: 900px;
    height: 500px;
    object-fit: cover;
    margin: 3em auto 0 auto;
    border-radius: 25px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #ff1493, #00ffff) border-box;
    background-clip: padding-box;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 
                0 0 50px rgba(255, 20, 147, 0.3),
                inset 0 0 0 3px transparent;
    display: block;
    position: relative;
    filter: brightness(1.1) contrast(1.1);
}

.hero-img::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    border-radius: 25px;
    z-index: -1;
}

section {
    margin: 4em auto;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(255, 20, 147, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 3em;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff1493, #00ffff, #ff1493);
    animation: borderFlow 3s linear infinite;
}

@keyframes borderFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

section h2 {
    color: #333333;
    font-size: 2.5em;
    margin-bottom: 1em;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.animated-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-img {
    display: block;
    margin: 3em auto;
    border-radius: 20px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #ff1493, #00ffff) border-box;
    background-clip: padding-box;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 
                0 0 30px rgba(255, 20, 147, 0.4);
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: brightness(1.1) contrast(1.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(0, 255, 255, 0.6);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    margin-top: 3em;
    justify-content: center;
}

.step {
    background: linear-gradient(135deg, #ff1493, #00ffff);
    color: #000000;
    padding: 1.5em 2.5em;
    border-radius: 15px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    flex: 1 1 200px;
    text-align: center;
    transition: all 0.3s;
}

.step-btn {
    background: linear-gradient(135deg, #ff1493, #00ffff);
    color: #000000;
    border: none;
    padding: 1.5em 2.5em;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.2em;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    margin-bottom: 1em;
    flex: 1 1 200px;
    position: relative;
    overflow: hidden;
}

.step-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.step-btn:hover {
    background: linear-gradient(135deg, #00ffff, #ff1493);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
    color: #000000;
}

.step-btn:hover::before {
    left: 100%;
}

.gallery {
    display: flex;
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3em;
}

.gallery img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ff1493, #00ffff) border-box;
    background-clip: padding-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(255, 20, 147, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: brightness(1.1);
}

.gallery img:hover {
    transform: translateY(-10px) scale(1.1) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(0, 255, 255, 0.5);
    filter: brightness(1.2) contrast(1.1);
}

.team-logos {
    display: flex;
    gap: 3em;
    align-items: center;
    justify-content: center;
    margin-top: 3em;
    flex-wrap: wrap;
}

.team-logos img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    background: none;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: all 0.3s;
}

.team-logos img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(0, 255, 255, 0.6);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin-top: 2em;
}

form input, form textarea {
    padding: 1.2em;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-size: 1.1em;
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    outline: none;
}

form input:focus, form textarea:focus {
    border-color: #ff1493;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    background: rgba(255, 255, 255, 1);
}

form button {
    background: linear-gradient(135deg, #ff1493, #00ffff);
    color: #000000;
    border: none;
    padding: 1.5em 0;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.3em;
    letter-spacing: 2px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

form button:hover {
    background: linear-gradient(135deg, #00ffff, #ff1493);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

form button:hover::before {
    left: 100%;
}

form, form input, form textarea, form label,
#mailForm input, #mailForm textarea, #mailForm label {
    color: #333333;
}

#mailForm input::placeholder,
#mailForm textarea::placeholder {
    color: #666666;
    opacity: 1;
}

footer {
    text-align: center;
    padding: 3em 2em;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: #333333;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #ff1493, #00ffff, #ff1493) 1;
    margin-top: 4em;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff1493, #00ffff, #ff1493, transparent);
    animation: footerGlow 2s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Neue Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: linear-gradient(135deg, #00ffff, #ff1493);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, #00ffff, #ff1493);
    transform: translateY(-50%) scale(1.1);
}

.login-btn {
    background: linear-gradient(135deg, #ff1493, #00ffff);
    color: #000000;
    font-weight: bold;
    border-radius: 12px;
    padding: 0.8em 1.5em;
    text-decoration: none;
    font-size: 1em;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 1em;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.login-btn:hover {
    background: linear-gradient(135deg, #00ffff, #ff1493);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.login-btn:hover::before {
    left: 100%;
}

.user-icon {
    margin-right: 0.5em;
    font-size: 1.2em;
    color: #333333;
}

.logout-btn {
    background: linear-gradient(135deg, #ff1493, #ff6b6b);
    color: #000000;
    border: none;
    border-radius: 10px;
    padding: 0.6em 1.2em;
    font-size: 0.95em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.logout-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff1493);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Mehr erfahren Button */
.more-info-btn {
    display: block;
    margin: 2em auto 0 auto;
    padding: 1.2em 3em;
    background: linear-gradient(135deg, #ff1493, #00ffff);
    color: #000000;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    text-decoration: none;
    font-size: 1.2em;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: fit-content;
}

.more-info-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.more-info-btn:hover {
    background: linear-gradient(135deg, #00ffff, #ff1493);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
    color: #000000;
}

.more-info-btn:hover::before {
    left: 100%;
}