* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(var(--background), 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

header.scrolled {
    padding: 0.7rem 4rem;
    background-color: rgba(var(--background), 0.9);
    border-bottom: 1px solid rgba(232, 190, 250, 0.3);
    /* Lila aus dem Gradienten */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color-light);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9375rem;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    border-radius: 2px;
}

.nav-link {
    text-decoration: none !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    opacity: 0.7 !important;
    transition: all 0.3s ease !important;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1 !important;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    transition: width 0.3s ease;
}

.nav-link.active:after,
.nav-link:hover:after {
    width: 100%;
}

.hero-new {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    background: #050505;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, rgba(232, 190, 250, 0.2) 0, transparent 50%),
        /* Lila */
        radial-gradient(at 100% 0%, rgba(171, 191, 255, 0.2) 0, transparent 50%),
        /* Blau */
        radial-gradient(at 50% 100%, rgba(187, 243, 192, 0.15) 0, transparent 70%);
    /* Grün */
    filter: blur(40px);
    z-index: 1;
    animation: meshFlow 20s ease-in-out infinite alternate;
}

@keyframes meshFlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(20px, 10px);
    }
}

.hero-content {
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    line-height: 0.95;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-content .subheading {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.6;
}

.hero-new .btn {
    text-decoration: none !important;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
}

.button-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.primary-btn {
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%) !important;
    color: var(--text-color-invert) !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(232, 190, 250, 0.3);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(232, 190, 250, 0.5);
}

.scroll-jump {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.4;
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-12px) translateX(-50%);
    }

    60% {
        transform: translateY(-6px) translateX(-50%);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(var(--background), 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px);
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    color: var(--text-color-invert);
    border-color: rgba(232, 190, 250, 0.5);
    box-shadow: 0 15px 40px rgba(232, 190, 250, 0.4);
}

section {
    padding: 6rem 2rem;
}

.features {
    background-color: var(--secondary-bg);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-description {
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(232, 190, 250, 0.15);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(232, 190, 250, 0.25);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.parallax {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -0.5;
}

.parallax-bg {
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url('../img/location.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
}


.parallax-content {
    text-align: center;
    padding: 2rem;
    background-color: rgba(var(--background-color), 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    max-width: 600px;
    color: #f1f1f1;
}


.gallery {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    background: var(--card-bg);
    padding: 10px 0;
    width: 100%;
}

.about-container p {
    width: 75%;
    margin: 0 12.5%;
    white-space: pre-wrap;
    text-align: center;
}

.about-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.about-col1 {
    width: 40%;
    text-align: center;
    padding: 10px;
}

.about-col2 {
    width: 60%;
    padding-bottom: 25px;
}

.about-col1 img {
    max-width: 80%;
    height: auto;
    margin: 0 10%;
    display: block;
    border-radius: 20px;
}

.about-container p {
    width: 100%;
    margin: 0;
    white-space: pre-wrap;
    text-align: left;
}

.about-container h3 {
    width: 100%;
    text-align: center;
    padding: 25px 0 12px;
}

#about {
    width: 100%;
    padding: 0;
    min-height: 100%;
    background: var(--card-bg);
}

.about-subhead {
    font-size: 1.25em;
    text-align: center;
    width: 100%;
}



header {
    background-color: rgba(var(--background), 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(var(--text), 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
}

.logo img {
    max-width: 200px;
}

.logo-highlight {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    border-radius: 50%;
    right: -12px;
    top: 0;
    box-shadow: 0 0 10px rgba(232, 190, 250, 0.8);
    animation: pulse 2s infinite;
}

.nav-link {
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    transition: width 0.3s;
    opacity: 0;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
    opacity: 1;
}

/* Theme Switch & Cart */
.theme-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.theme-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(232, 190, 250, 0.3);
}

.theme-switch svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: all 0.3s;
}

.theme-switch:hover svg {
    stroke: rgba(232, 190, 250, 1);
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-container:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(232, 190, 250, 0.3);
    transform: scale(1.05);
}

.cart-icon-container i {
    font-size: 1.25rem;
    color: var(--text-color);
}

.cart-icon-container:hover i {
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sun-icon,
.moon-icon {
    color: var(--text-color);
    opacity: 0.7;
}

/* Enhanced Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(var(--background), 1) 0%, rgba(var(--background), 1) 80%);
}

.hero:before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(232, 190, 250, 0.4) 0%, transparent 70%);
    /* Lila */
    opacity: 0.5;
    filter: blur(60px);
    animation: float 10s ease-in-out infinite;
    z-index: 0;
}

.hero:after {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(187, 243, 192, 0.4) 0%, transparent 70%);
    /* Grün */
    opacity: 0.5;
    filter: blur(60px);
    animation: float 15s ease-in-out infinite reverse;
    z-index: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 4rem;
    z-index: 5;
}

.hero-title-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.gradient-text {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    max-width: 600px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animated-underline {
    position: relative;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    margin-top: 10px;
    animation: expandWidth 1.5s forwards 0.5s;
}

.subheading {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 500px;
    margin-bottom: 2rem;
}

.button-container {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    color: var(--text-color-invert);
    box-shadow: 0 5px 15px rgba(232, 190, 250, 0.3);
}

.primary-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 190, 250, 0.5);
}

.primary-btn:hover:before {
    left: 100%;
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(var(--text), 0.2);
}

.secondary-btn:hover {
    background-color: rgba(var(--text), 0.05);
    border-color: rgba(var(--text), 0.3);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.floating-device {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(232, 190, 250, 0.15);
    animation: floatAnimation 6s ease-in-out infinite;
}

.device-1 {
    width: 220px;
    height: 440px;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    animation-delay: 0.5s;
}

.device-2 {
    width: 380px;
    height: 280px;
    right: 30%;
    top: 35%;
    transform: rotate(-5deg);
    z-index: 2;
    animation-duration: 7s;
}

.device-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: rgba(232, 190, 250, 0.2);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.6;
}

.floating-device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orbiting-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    pointer-events: none;
}

.orbit-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(232, 190, 250, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(232, 190, 250, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(232, 190, 250, 0.3);
}

.orbit-icon {
    font-size: 20px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.elem-1 {
    top: 20%;
    right: 10%;
    animation: orbitAnimation 20s linear infinite;
}

.elem-2 {
    top: 10%;
    right: 40%;
    animation: orbitAnimation 25s linear infinite reverse;
}

.elem-3 {
    top: 20%;
    right: 60%;
    animation: orbitAnimation 30s linear infinite;
}

.glow-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(232, 190, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s;
    animation: fadeIn 1s forwards 2s;
    opacity: 0;
    z-index: 5;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-color);
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
}

.mouse-wheel {
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--text-color);
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    border-radius: 4px;
    animation: scrollWheel 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 1px;
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s forwards;
}

.reveal-text img {
    max-width: 100%;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
    margin: auto;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 15px rgba(232, 190, 250, 1);
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(-45%);
    }
}

@keyframes orbitAnimation {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 16px;
        opacity: 0;
    }

    51% {
        top: 6px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 1;
    }
}

@keyframes expandWidth {
    0% {
        width: 0;
    }

    100% {
        width: 100px;
    }
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 0.6;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5%, 5%);
    }
}

/* Responsive Anpassungen */
@media screen and (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding: 6rem 2rem 0;
        align-items: center;
    }

    .hero-visual {
        height: 500px;
        margin-top: 3rem;
    }

    .floating-device {
        position: relative;
        display: inline-flex;
        transform: none !important;
    }

    .device-1 {
        right: auto;
        top: auto;
        margin-right: 20px;
    }

    .device-2 {
        right: auto;
        top: auto;
        transform: rotate(-5deg) !important;
    }

    .orbiting-elements,
    .glow-circle {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .gradient-text {
        font-size: 2.5rem;
    }

    .button-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .floating-device {
        transform: scale(0.8);
    }

    .device-1,
    .device-2 {
        position: absolute;
    }

    .device-1 {
        left: 0;
        z-index: 3;
    }

    .device-2 {
        right: 0;
        z-index: 2;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    color: var(--text-color-invert);
    border-radius: 50px;
    padding: 20px;
    z-index: 10;
    box-shadow: 0px 0px 10px rgba(232, 190, 250, 0.7);
}

/* CARD */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.column {
    flex: 1;
    padding: 15px;
    min-width: 300px;
    margin-bottom: 30px;
}

.card {
    background-color: var(--secondary-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(232, 190, 250, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(232, 190, 250, 0.2);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--accent);
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-tag {
    align-items: center;
    margin-bottom: 15px;
    background: linear-gradient(90deg, rgba(252, 244, 201, 0.2) 0%, rgba(254, 227, 226, 0.2) 20%, rgba(251, 205, 242, 0.2) 40%, rgba(232, 190, 250, 0.2) 60%, rgba(171, 191, 255, 0.2) 80%, rgba(187, 243, 192, 0.2) 100%);
    color: var(--accent);
    border-radius: 20px;
    padding: 2px 15px 5px 7px;
    width: fit-content;
}

.card-tag span {
    font-weight: bold;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mehr-erfahren {
    text-align: center;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

h3 span.gradient-text {
    font-size: 2.8rem;
}

.lightbox-text p {
    padding-top: 15px;
}

.lightbox-text h3 {
    width: 100%;
    text-align: center;
}

.lightbox-content {
    background-color: var(--card-bg);
    max-width: 1000px;
    width: 90%;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

.lightbox-image {
    flex: 0 0 50%;
    background-position: center;
    background-size: cover;
    min-height: 400px;
    padding: 5px 0 0 5px;
}

.lightbox-image img {
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 3px;
}

.lightbox-text {
    flex: 0 0 50%;
    padding: 30px;
    overflow-y: auto;
    max-height: 90vh;
}

.close-lightbox {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(text-color);
    z-index: 1010;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .column {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .column {
        flex: 0 0 100%;
    }

    .lightbox-content {
        flex-direction: column;
        overflow-y: auto;
    }

    .lightbox-image {
        flex: 0 0 300px;
        width: 100%;
    }

    .lightbox-image img {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 5px;
        padding: 0 5px 0 0;
    }

    .lightbox-text {
        flex: 1;
        width: 100%;
        max-height: none;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, rgba(252, 244, 201, 1) 0%, rgba(254, 227, 226, 1) 20%, rgba(251, 205, 242, 1) 40%, rgba(232, 190, 250, 1) 60%, rgba(171, 191, 255, 1) 80%, rgba(187, 243, 192, 1) 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .nav-link {
        font-size: 1.5rem !important;
        opacity: 1 !important;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    header {
        padding: 1rem 1.5rem;
    }
}