.playball-regular {
        font-family: "Playball", cursive;
        font-weight: 400;
        font-style: normal;
        }

        #header-font {
            font-family: "Playball", cursive;
            font-size: xxx-large;
            color: #F9B233
        }

        .yellow-text {
            color: #F9B233
        }

        .blue-text {
            color: #00a6ff;
        }

        .red-text {
            color: #D41217;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Space Grotesk", sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }

        body.light-mode {
            background: #f8f8f8;
            color: #0a0a0a;
        }

        /* Theme Switch */
        .theme-switch-wrapper {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1001;
        }

        .switch {
            font-size: 17px;
            position: relative;
            display: inline-block;
            width: 4em;
            height: 2.2em;
            border-radius: 30px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #2a2a2a;
            transition: 0.4s;
            border-radius: 30px;
            overflow: hidden;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 1.2em;
            width: 1.2em;
            border-radius: 20px;
            left: 0.5em;
            bottom: 0.5em;
            transition: 0.4s;
            transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
            box-shadow: inset 8px -4px 0px 0px #fff;
        }

        .switch input:checked + .slider {
            background-color: #00a6ff;
        }

        .switch input:checked + .slider:before {
            transform: translateX(1.8em);
            box-shadow: inset 15px -4px 0px 15px #ffcf48;
        }

        .star {
            background-color: #fff;
            border-radius: 50%;
            position: absolute;
            width: 5px;
            transition: all 0.4s;
            height: 5px;
        }

        .star_1 {
            left: 2.5em;
            top: 0.5em;
        }

        .star_2 {
            left: 2.2em;
            top: 1.2em;
        }

        .star_3 {
            left: 3em;
            top: 0.9em;
        }

        .switch input:checked ~ .slider .star {
            opacity: 0;
        }

        .cloud {
            width: 3.5em;
            position: absolute;
            bottom: -1.4em;
            left: -1.1em;
            opacity: 0;
            transition: all 0.4s;
        }

        .switch input:checked ~ .slider .cloud {
            opacity: 1;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        body.light-mode nav {
            background: rgba(248, 248, 248, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 100px;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        .menu {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: opacity 0.3s;
        }

        body.light-mode .menu a {
            color: #0a0a0a;
        }

        .menu a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4B93FF;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .menu a.active::after {
            opacity: 1;
            animation: waveMove 2s ease-in-out infinite;
        }

        @keyframes waveMove {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .hero {
            height: 60vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            position: relative;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 400;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .section {
            padding: 8rem 4rem;
            position: relative;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 3rem;
            line-height: 1.2;
        }

        .gradient-text {
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-content {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #888;
            margin-bottom: 2rem;
        }

        body.light-mode .text-content {
            color: #555;
        }

        .text-content p {
            margin-bottom: 1.5rem;
        }

        .timeline {
            position: relative;
            padding: 4rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(75, 147, 255, 0.3);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 2rem;
            width: 20px;
            height: 20px;
            background: #4B93FF;
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 0 8px rgba(75, 147, 255, 0.2);
        }

        .timeline-item:nth-child(3n+1)::before {
            background: #D41217;
            box-shadow: 0 0 0 8px rgba(212, 18, 23, 0.2);
        }

        .timeline-item:nth-child(3n+2)::before {
            background: #00a6ff;
            box-shadow: 0 0 0 8px rgba(0, 166, 255, 0.2);
        }

        .timeline-item:nth-child(3n+3)::before {
            background: #F9B233;
            box-shadow: 0 0 0 8px rgba(249, 178, 51, 0.2);
        }

        .timeline-item:nth-child(3n+1) .timeline-year {
            background: linear-gradient(135deg, #D41217 0%, #a30e12 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timeline-item:nth-child(3n+2) .timeline-year {
            background: linear-gradient(135deg, #00a6ff 0%, #0080cc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timeline-item:nth-child(3n+3) .timeline-year {
            background: linear-gradient(135deg, #F9B233 0%, #e09a1a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 24px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.65);
            z-index: 1;
            border-radius: 10px;
        }

        body.light-mode .timeline-content::before {
            background: rgba(248, 248, 248, 0.85);
        }

        .timeline-content > * {
            position: relative;
            z-index: 2;
        }

        .timeline-item:nth-child(1) .timeline-content {
            background-image: url('/img/2022-Gründung.jpg');
        }

        .timeline-item:nth-child(2) .timeline-content {
            background-image: url('/img/2022-2023_session.jpg');
        }

        .timeline-item:nth-child(3) .timeline-content {
            background-image: url('/img/2023-probentag.jpg');
        }

        .timeline-item:nth-child(4) .timeline-content {
            background-image: url('/img/2023-2024_session.jpg');
        }

        .timeline-item:nth-child(5) .timeline-content {
            background-image: url('/img/2025-heute.jpg');
        }

        body.light-mode .timeline-content {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 2;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            grid-column: 1;
        }

        .timeline-year {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .timeline-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-text {
            color: #888;
            line-height: 1.6;
        }

        body.light-mode .timeline-text {
            color: #555;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.4s;
        }

        body.light-mode .team-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: rgba(75, 147, 255, 0.5);
        }

        .team-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-icon svg {
            width: 40px;
            height: 40px;
            fill: #fff;
        }

        .team-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: #4B93FF;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .team-card p {
            color: #888;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        body.light-mode .team-card p {
            color: #555;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 24px;
            transition: all 0.4s;
        }

        body.light-mode .value-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .value-card:nth-child(3n+1) .value-number {
            color: #00a6ff;
        }

        .value-card:nth-child(3n+2) .value-number {
            color: #F9B233;
        }

        .value-card:nth-child(3n+3) .value-number {
            color: #D41217;
        }

        .value-card:nth-child(3n+1):hover {
            background: rgba(0, 166, 255, 0.05);
            border-color: rgba(0, 166, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 166, 255, 0.2);
        }

        .value-card:nth-child(3n+2):hover {
            background: rgba(249, 178, 51, 0.05);
            border-color: rgba(249, 178, 51, 0.3);
            box-shadow: 0 10px 30px rgba(249, 178, 51, 0.2);
        }

        .value-card:nth-child(3n+3):hover {
            background: rgba(212, 18, 23, 0.05);
            border-color: rgba(212, 18, 23, 0.3);
            box-shadow: 0 10px 30px rgba(212, 18, 23, 0.2);
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .value-card p {
            color: #888;
            line-height: 1.6;
        }

        body.light-mode .value-card p {
            color: #555;
        }

        .social-bar {
            background: rgba(255, 255, 255, 0.03);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 4rem;
            backdrop-filter: blur(10px);
        }

        body.light-mode .social-bar {
            background: rgba(255, 255, 255, 0.8);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .social-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
        }

        .social-bar h3 {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .social-buttons {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .tooltip-container {
            position: relative;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 17px;
            border-radius: 10px;
        }

        .tooltip {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            border-radius: 15px;
            box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
                inset -5px -5px 15px rgba(255, 255, 255, 0.1),
                5px 5px 15px rgba(0, 0, 0, 0.3), 
                -5px -5px 15px rgba(255, 255, 255, 0.1);
        }

        .tooltip-container:hover .tooltip {
            top: -150px;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .profile {
            border-radius: 10px 15px;
            padding: 10px;
        }

        /* Instagram Profile */
        .tooltip-container:has(.instagramSVG) .profile {
            background: #2a2b2f;
            border: 1px solid #52382f;
        }

        /* Facebook Profile */
        .tooltip-container:has(.facebookSVG) .profile {
            background: #3b5998;
            border: 1px solid #29487d;
        }

        .user {
            display: flex;
            gap: 10px;
        }

        .img {
            width: 50px;
            height: 50px;
            font-size: 25px;
            font-weight: 700;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }

        /* Instagram Image Border */
        .tooltip-container:has(.instagramSVG) .img {
            border: 1px solid #e6683c;
        }

        /* Facebook Image Border */
        .tooltip-container:has(.facebookSVG) .img {
            border: 1px solid #1877f2;
        }

        .details {
            display: flex;
            flex-direction: column;
            gap: 0;
            color: #fff;
        }

        .name {
            font-size: 17px;
            font-weight: 700;
        }

        /* Instagram Name Color */
        .tooltip-container:has(.instagramSVG) .name {
            color: #e6683c;
        }

        /* Facebook Name Color */
        .tooltip-container:has(.facebookSVG) .name {
            color: #1877f2;
        }

        .username {
            font-size: 14px;
            color: #fff;
        }

        .about {
            color: #ccc;
            padding-top: 5px;
            font-size: 14px;
        }

        /* Icon Styles */
        .icon {
            text-decoration: none;
            color: #fff;
            display: block;
            position: relative;
        }

        .layer {
            width: 55px;
            height: 55px;
            transition: transform 0.3s;
            position: relative;
        }

        .icon:hover .layer {
            transform: rotate(-35deg) skew(20deg);
        }

        .layer span {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border: 1px solid #fff;
            transition: all 0.3s;
        }

        /* Instagram Layer */
        .tooltip-container:has(.instagramSVG) .layer span {
            border-radius: 15px;
            border-color: #e6683c;
        }

        /* Facebook Layer */
        .tooltip-container:has(.facebookSVG) .layer {
            border: 3px solid #1877f2;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(24, 119, 242, 0.7), 0 0 20px rgba(24, 119, 242, 0.5);
        }

        .tooltip-container:has(.facebookSVG) .icon:hover .layer {
            box-shadow: 0 0 30px rgba(24, 119, 242, 1), 0 0 40px rgba(24, 119, 242, 0.7);
        }

        .tooltip-container:has(.facebookSVG) .layer span {
            border-radius: 50%;
            border-color: #1877f2;
        }

        /* Instagram Hover Effects */
        .tooltip-container:has(.instagramSVG) .icon:hover .layer span {
            box-shadow: -1px 1px 3px #e6683c;
        }

        /* Facebook Hover Effects */
        .tooltip-container:has(.facebookSVG) .icon:hover .layer span {
            box-shadow: -1px 1px 3px #1877f2;
        }

        /* Text Below Icon */
        .icon .text {
            position: absolute;
            left: 50%;
            bottom: -5px;
            opacity: 0;
            font-weight: 500;
            transform: translateX(-50%);
            transition: bottom 0.3s ease, opacity 0.3s ease;
            white-space: nowrap;
        }

        .icon:hover .text {
            bottom: -35px;
            opacity: 1;
        }

        /* Instagram Text Color */
        .tooltip-container:has(.instagramSVG) .icon .text {
            color: #e6683c;
        }

        /* Facebook Text Color */
        .tooltip-container:has(.facebookSVG) .icon .text {
            color: #1877f2;
        }

        /* Layer Span Animation */
        .icon:hover .layer span:nth-child(1) {
            opacity: 0.2;
        }

        .icon:hover .layer span:nth-child(2) {
            opacity: 0.4;
            transform: translate(5px, -5px);
        }

        .icon:hover .layer span:nth-child(3) {
            opacity: 0.6;
            transform: translate(10px, -10px);
        }

        .icon:hover .layer span:nth-child(4) {
            opacity: 0.8;
            transform: translate(15px, -15px);
        }

        .icon:hover .layer span:nth-child(5) {
            opacity: 1;
            transform: translate(20px, -20px);
        }

        /* SVG Icons */
        .instagramSVG {
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                #f09433 0%,
                #e6683c 25%,
                #dc2743 50%,
                #cc2366 75%,
                #bc1888 100%
            );
            border-radius: 15px;
            width: 55px;
            height: 55px;
        }

        .facebookSVG {
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                #1877f2 0%,
                #3b5998 25%,
                #1877f2 50%,
                #3b5998 75%,
                #1877f2 100%
            );
            border-radius: 50%;
            width: 55px;
            height: 55px;
        }

        .svgIcon {
            width: 25px;
            height: 25px;
        }

        /* Footer */
        footer {
            padding: 6rem 4rem 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.light-mode footer {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: #888;
            line-height: 1.6;
        }

        body.light-mode .footer-desc {
            color: #555;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        body.light-mode .footer-links a {
            color: #555;
        }

        .footer-links a:hover {
            color: #4B93FF;
        }

        .footer-bottom {
            text-align: center;
            color: #555;
            padding-top: 3rem;
            font-size: 0.9rem;
        }

        body.light-mode .footer-bottom {
            color: #888;
        }

@media (max-width: 768px) {
    
    nav {
        padding: 1rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
    }
    
    body.light-mode nav {
        background: rgba(248, 248, 248, 0.98);
    }
    
    .logo {
        height: 50px;
        position: relative;
        z-index: 1002;
    }
    
    nav::after {
        content: '☰';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        cursor: pointer;
        z-index: 1002;
        color: #fff;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    body.light-mode nav::after {
        color: #0a0a0a;
    }
    
    /* Menu versteckt */
    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem 0;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    body.light-mode .menu {
        background: rgba(248, 248, 248, 0.98);
    }
    
    .menu.mobile-active {
        left: 0;
    }
    
    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body.light-mode .menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .menu a::after {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        height: 50vh;
        min-height: 400px;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    #header-font {
        font-size: xx-large;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .text-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .text-content p {
        margin-bottom: 1rem;
    }
    
    /* Timeline */
    .timeline {
        padding: 2rem 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 80px;
        margin-bottom: 3rem;
    }
    
    .timeline-item::before {
        left: 30px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        grid-column: 1 !important;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .timeline-year {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .team-card:hover {
        transform: none;
    }
    
    .team-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .team-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .team-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .team-role {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .team-card p {
        font-size: 0.9rem;
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .value-card:hover {
        transform: none;
    }
    
    .value-number {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Social Bar */
    .social-bar {
        padding: 2rem 1rem;
    }
    
    .social-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-bar h3 {
        font-size: 1.3rem;
    }
    
    .social-buttons {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .tooltip-container:hover .tooltip {
        display: none;
    }
    
    .icon .text {
        display: none;
    }
    
    .layer {
        width: 50px;
        height: 50px;
    }
    
    .instagramSVG,
    .facebookSVG {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    /* Footer */
    footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 2rem;
    }
    
    /* Theme Switch */
    .theme-switch-wrapper {
        bottom: 1rem;
        right: 1rem;
    }
    
    .switch {
        font-size: 14px;
        width: 3.5em;
        height: 2em;
    }
    
    .slider:before {
        height: 1em;
        width: 1em;
        left: 0.4em;
        bottom: 0.5em;
    }
    
    .switch input:checked + .slider:before {
        transform: translateX(1.5em);
    }
    
    .star {
        width: 4px;
        height: 4px;
    }
    
    .cloud {
        width: 3em;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    #header-font {
        font-size: x-large;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 1.5rem 1rem;
    }
    
    .timeline-year {
        font-size: 1.8rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .timeline-text {
        font-size: 0.9rem;
    }
    
    .team-card,
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    .social-bar h3 {
        font-size: 1.1rem;
    }
    
    .layer {
        width: 45px;
        height: 45px;
    }
    
    .instagramSVG,
    .facebookSVG {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}.playball-regular {
        font-family: "Playball", cursive;
        font-weight: 400;
        font-style: normal;
        }

        #header-font {
            font-family: "Playball", cursive;
            font-size: xxx-large;
            color: #F9B233
        }

        .yellow-text {
            color: #F9B233
        }

        .blue-text {
            color: #00a6ff;
        }

        .red-text {
            color: #D41217;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Space Grotesk", sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }

        body.light-mode {
            background: #f8f8f8;
            color: #0a0a0a;
        }

        /* Theme Switch */
        .theme-switch-wrapper {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1001;
        }

        .switch {
            font-size: 17px;
            position: relative;
            display: inline-block;
            width: 4em;
            height: 2.2em;
            border-radius: 30px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #2a2a2a;
            transition: 0.4s;
            border-radius: 30px;
            overflow: hidden;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 1.2em;
            width: 1.2em;
            border-radius: 20px;
            left: 0.5em;
            bottom: 0.5em;
            transition: 0.4s;
            transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
            box-shadow: inset 8px -4px 0px 0px #fff;
        }

        .switch input:checked + .slider {
            background-color: #00a6ff;
        }

        .switch input:checked + .slider:before {
            transform: translateX(1.8em);
            box-shadow: inset 15px -4px 0px 15px #ffcf48;
        }

        .star {
            background-color: #fff;
            border-radius: 50%;
            position: absolute;
            width: 5px;
            transition: all 0.4s;
            height: 5px;
        }

        .star_1 {
            left: 2.5em;
            top: 0.5em;
        }

        .star_2 {
            left: 2.2em;
            top: 1.2em;
        }

        .star_3 {
            left: 3em;
            top: 0.9em;
        }

        .switch input:checked ~ .slider .star {
            opacity: 0;
        }

        .cloud {
            width: 3.5em;
            position: absolute;
            bottom: -1.4em;
            left: -1.1em;
            opacity: 0;
            transition: all 0.4s;
        }

        .switch input:checked ~ .slider .cloud {
            opacity: 1;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        body.light-mode nav {
            background: rgba(248, 248, 248, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 100px;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        .menu {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: opacity 0.3s;
        }

        body.light-mode .menu a {
            color: #0a0a0a;
        }

        .menu a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4B93FF;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .menu a.active::after {
            opacity: 1;
            animation: waveMove 2s ease-in-out infinite;
        }

        @keyframes waveMove {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .hero {
            height: 60vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            position: relative;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 400;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        .section {
            padding: 8rem 4rem;
            position: relative;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 3rem;
            line-height: 1.2;
        }

        .gradient-text {
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-content {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #888;
            margin-bottom: 2rem;
        }

        body.light-mode .text-content {
            color: #555;
        }

        .text-content p {
            margin-bottom: 1.5rem;
        }

        .timeline {
            position: relative;
            padding: 4rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(75, 147, 255, 0.3);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 6rem;
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 2rem;
            width: 20px;
            height: 20px;
            background: #4B93FF;
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 0 8px rgba(75, 147, 255, 0.2);
        }

        .timeline-item:nth-child(3n+1)::before {
            background: #D41217;
            box-shadow: 0 0 0 8px rgba(212, 18, 23, 0.2);
        }

        .timeline-item:nth-child(3n+2)::before {
            background: #00a6ff;
            box-shadow: 0 0 0 8px rgba(0, 166, 255, 0.2);
        }

        .timeline-item:nth-child(3n+3)::before {
            background: #F9B233;
            box-shadow: 0 0 0 8px rgba(249, 178, 51, 0.2);
        }

        .timeline-item:nth-child(3n+1) .timeline-year {
            background: linear-gradient(135deg, #D41217 0%, #a30e12 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timeline-item:nth-child(3n+2) .timeline-year {
            background: linear-gradient(135deg, #00a6ff 0%, #0080cc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timeline-item:nth-child(3n+3) .timeline-year {
            background: linear-gradient(135deg, #F9B233 0%, #e09a1a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 24px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(10, 10, 10, 0.65);
            z-index: 1;
            border-radius: 10px;
        }

        body.light-mode .timeline-content::before {
            background: rgba(248, 248, 248, 0.85);
        }

        .timeline-content > * {
            position: relative;
            z-index: 2;
        }

        .timeline-item:nth-child(1) .timeline-content {
            background-image: url('/img/2022-Gründung.jpg');
        }

        .timeline-item:nth-child(2) .timeline-content {
            background-image: url('/img/2022-2023_session.jpg');
        }

        .timeline-item:nth-child(3) .timeline-content {
            background-image: url('/img/2023-probentag.jpg');
        }

        .timeline-item:nth-child(4) .timeline-content {
            background-image: url('/img/2023-2024_session.jpg');
        }

        .timeline-item:nth-child(5) .timeline-content {
            background-image: url('/img/2025-heute.jpg');
        }

        body.light-mode .timeline-content {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 2;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            grid-column: 1;
        }

        .timeline-year {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .timeline-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-text {
            color: #888;
            line-height: 1.6;
        }

        body.light-mode .timeline-text {
            color: #555;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.4s;
        }

        body.light-mode .team-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .team-card:hover {
            transform: translateY(-10px);
            border-color: rgba(75, 147, 255, 0.5);
        }

        .team-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-icon svg {
            width: 40px;
            height: 40px;
            fill: #fff;
        }

        .team-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: #4B93FF;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .team-card p {
            color: #888;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        body.light-mode .team-card p {
            color: #555;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem;
            border-radius: 24px;
            transition: all 0.4s;
        }

        body.light-mode .value-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .value-card:nth-child(3n+1) .value-number {
            color: #00a6ff;
        }

        .value-card:nth-child(3n+2) .value-number {
            color: #F9B233;
        }

        .value-card:nth-child(3n+3) .value-number {
            color: #D41217;
        }

        .value-card:nth-child(3n+1):hover {
            background: rgba(0, 166, 255, 0.05);
            border-color: rgba(0, 166, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 166, 255, 0.2);
        }

        .value-card:nth-child(3n+2):hover {
            background: rgba(249, 178, 51, 0.05);
            border-color: rgba(249, 178, 51, 0.3);
            box-shadow: 0 10px 30px rgba(249, 178, 51, 0.2);
        }

        .value-card:nth-child(3n+3):hover {
            background: rgba(212, 18, 23, 0.05);
            border-color: rgba(212, 18, 23, 0.3);
            box-shadow: 0 10px 30px rgba(212, 18, 23, 0.2);
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .value-card p {
            color: #888;
            line-height: 1.6;
        }

        body.light-mode .value-card p {
            color: #555;
        }

        .social-bar {
            background: rgba(255, 255, 255, 0.03);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 4rem;
            backdrop-filter: blur(10px);
        }

        body.light-mode .social-bar {
            background: rgba(255, 255, 255, 0.8);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .social-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 3rem;
        }

        .social-bar h3 {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .social-buttons {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .tooltip-container {
            position: relative;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 17px;
            border-radius: 10px;
        }

        .tooltip {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            border-radius: 15px;
            box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
                inset -5px -5px 15px rgba(255, 255, 255, 0.1),
                5px 5px 15px rgba(0, 0, 0, 0.3), 
                -5px -5px 15px rgba(255, 255, 255, 0.1);
        }

        .tooltip-container:hover .tooltip {
            top: -150px;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .profile {
            border-radius: 10px 15px;
            padding: 10px;
        }

        /* Instagram Profile */
        .tooltip-container:has(.instagramSVG) .profile {
            background: #2a2b2f;
            border: 1px solid #52382f;
        }

        /* Facebook Profile */
        .tooltip-container:has(.facebookSVG) .profile {
            background: #3b5998;
            border: 1px solid #29487d;
        }

        .user {
            display: flex;
            gap: 10px;
        }

        .img {
            width: 50px;
            height: 50px;
            font-size: 25px;
            font-weight: 700;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }

        /* Instagram Image Border */
        .tooltip-container:has(.instagramSVG) .img {
            border: 1px solid #e6683c;
        }

        /* Facebook Image Border */
        .tooltip-container:has(.facebookSVG) .img {
            border: 1px solid #1877f2;
        }

        .details {
            display: flex;
            flex-direction: column;
            gap: 0;
            color: #fff;
        }

        .name {
            font-size: 17px;
            font-weight: 700;
        }

        /* Instagram Name Color */
        .tooltip-container:has(.instagramSVG) .name {
            color: #e6683c;
        }

        /* Facebook Name Color */
        .tooltip-container:has(.facebookSVG) .name {
            color: #1877f2;
        }

        .username {
            font-size: 14px;
            color: #fff;
        }

        .about {
            color: #ccc;
            padding-top: 5px;
            font-size: 14px;
        }

        /* Icon Styles */
        .icon {
            text-decoration: none;
            color: #fff;
            display: block;
            position: relative;
        }

        .layer {
            width: 55px;
            height: 55px;
            transition: transform 0.3s;
            position: relative;
        }

        .icon:hover .layer {
            transform: rotate(-35deg) skew(20deg);
        }

        .layer span {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border: 1px solid #fff;
            transition: all 0.3s;
        }

        /* Instagram Layer */
        .tooltip-container:has(.instagramSVG) .layer span {
            border-radius: 15px;
            border-color: #e6683c;
        }

        /* Facebook Layer */
        .tooltip-container:has(.facebookSVG) .layer {
            border: 3px solid #1877f2;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(24, 119, 242, 0.7), 0 0 20px rgba(24, 119, 242, 0.5);
        }

        .tooltip-container:has(.facebookSVG) .icon:hover .layer {
            box-shadow: 0 0 30px rgba(24, 119, 242, 1), 0 0 40px rgba(24, 119, 242, 0.7);
        }

        .tooltip-container:has(.facebookSVG) .layer span {
            border-radius: 50%;
            border-color: #1877f2;
        }

        /* Instagram Hover Effects */
        .tooltip-container:has(.instagramSVG) .icon:hover .layer span {
            box-shadow: -1px 1px 3px #e6683c;
        }

        /* Facebook Hover Effects */
        .tooltip-container:has(.facebookSVG) .icon:hover .layer span {
            box-shadow: -1px 1px 3px #1877f2;
        }

        /* Text Below Icon */
        .icon .text {
            position: absolute;
            left: 50%;
            bottom: -5px;
            opacity: 0;
            font-weight: 500;
            transform: translateX(-50%);
            transition: bottom 0.3s ease, opacity 0.3s ease;
            white-space: nowrap;
        }

        .icon:hover .text {
            bottom: -35px;
            opacity: 1;
        }

        /* Instagram Text Color */
        .tooltip-container:has(.instagramSVG) .icon .text {
            color: #e6683c;
        }

        /* Facebook Text Color */
        .tooltip-container:has(.facebookSVG) .icon .text {
            color: #1877f2;
        }

        /* Layer Span Animation */
        .icon:hover .layer span:nth-child(1) {
            opacity: 0.2;
        }

        .icon:hover .layer span:nth-child(2) {
            opacity: 0.4;
            transform: translate(5px, -5px);
        }

        .icon:hover .layer span:nth-child(3) {
            opacity: 0.6;
            transform: translate(10px, -10px);
        }

        .icon:hover .layer span:nth-child(4) {
            opacity: 0.8;
            transform: translate(15px, -15px);
        }

        .icon:hover .layer span:nth-child(5) {
            opacity: 1;
            transform: translate(20px, -20px);
        }

        /* SVG Icons */
        .instagramSVG {
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                #f09433 0%,
                #e6683c 25%,
                #dc2743 50%,
                #cc2366 75%,
                #bc1888 100%
            );
            border-radius: 15px;
            width: 55px;
            height: 55px;
        }

        .facebookSVG {
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                #1877f2 0%,
                #3b5998 25%,
                #1877f2 50%,
                #3b5998 75%,
                #1877f2 100%
            );
            border-radius: 50%;
            width: 55px;
            height: 55px;
        }

        .svgIcon {
            width: 25px;
            height: 25px;
        }

        /* Footer */
        footer {
            padding: 6rem 4rem 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.light-mode footer {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: #888;
            line-height: 1.6;
        }

        body.light-mode .footer-desc {
            color: #555;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        body.light-mode .footer-links a {
            color: #555;
        }

        .footer-links a:hover {
            color: #4B93FF;
        }

        .footer-bottom {
            text-align: center;
            color: #555;
            padding-top: 3rem;
            font-size: 0.9rem;
        }

        body.light-mode .footer-bottom {
            color: #888;
        }

@media (max-width: 768px) {
    
    nav {
        padding: 1rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
    }
    
    body.light-mode nav {
        background: rgba(248, 248, 248, 0.98);
    }
    
    .logo {
        height: 50px;
        position: relative;
        z-index: 1002;
    }
    
    nav::after {
        content: '☰';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        cursor: pointer;
        z-index: 1002;
        color: #fff;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    body.light-mode nav::after {
        color: #0a0a0a;
    }
    
    /* Menu versteckt */
    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem 0;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    body.light-mode .menu {
        background: rgba(248, 248, 248, 0.98);
    }
    
    .menu.mobile-active {
        left: 0;
    }
    
    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body.light-mode .menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .menu a::after {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        height: 50vh;
        min-height: 400px;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    #header-font {
        font-size: xx-large;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .text-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .text-content p {
        margin-bottom: 1rem;
    }
    
    /* Timeline */
    .timeline {
        padding: 2rem 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 80px;
        margin-bottom: 3rem;
    }
    
    .timeline-item::before {
        left: 30px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-content {
        grid-column: 1 !important;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .timeline-year {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Team Grid */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .team-card:hover {
        transform: none;
    }
    
    .team-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .team-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .team-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .team-role {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .team-card p {
        font-size: 0.9rem;
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .value-card:hover {
        transform: none;
    }
    
    .value-number {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Social Bar */
    .social-bar {
        padding: 2rem 1rem;
    }
    
    .social-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-bar h3 {
        font-size: 1.3rem;
    }
    
    .social-buttons {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .tooltip-container:hover .tooltip {
        display: none;
    }
    
    .icon .text {
        display: none;
    }
    
    .layer {
        width: 50px;
        height: 50px;
    }
    
    .instagramSVG,
    .facebookSVG {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    /* Footer */
    footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 2rem;
    }
    
    /* Theme Switch */
    .theme-switch-wrapper {
        bottom: 1rem;
        right: 1rem;
    }
    
    .switch {
        font-size: 14px;
        width: 3.5em;
        height: 2em;
    }
    
    .slider:before {
        height: 1em;
        width: 1em;
        left: 0.4em;
        bottom: 0.5em;
    }
    
    .switch input:checked + .slider:before {
        transform: translateX(1.5em);
    }
    
    .star {
        width: 4px;
        height: 4px;
    }
    
    .cloud {
        width: 3em;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    #header-font {
        font-size: x-large;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 1.5rem 1rem;
    }
    
    .timeline-year {
        font-size: 1.8rem;
    }
    
    .timeline-title {
        font-size: 1.1rem;
    }
    
    .timeline-text {
        font-size: 0.9rem;
    }
    
    .team-card,
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    .social-bar h3 {
        font-size: 1.1rem;
    }
    
    .layer {
        width: 45px;
        height: 45px;
    }
    
    .instagramSVG,
    .facebookSVG {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}