* 
:root {
    --primary-color: #2c5282;     /* Hauptblau */
    --text-color: #2d3748;        /* Standard Text */
    --soft-text: #4a5568;         /* weicher Text */
    --highlight-color: #7a3e6a;   /* sanftes Rosa/Lila */
    --warm-accent: #8a5a00;       /* warmes Gold/Beige */
}

{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--primary-color);
            background-color: #f0f4f8;
        }

        /* Molekül-Hintergrund für Hauptinhalt */
        .main-content {
            background-image: url('Screenshot_2025-12-03_125643.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
        }

        .main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.85);
            z-index: 1;
        }

        .main-content > * {
            position: relative;
            z-index: 2;
        }

.about-page .main-content::before {
    background-color: rgba(250, 243, 235, 0.88);
}

        /* Sprachumschalter oben rechts */
        .language-switch {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .language-selector {
            background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
            color: #1e293b;
            border: 2px solid #667eea;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.95em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%231e293b" d="M6 9L1 4h10z"/></svg>');
            background-repeat: no-repeat;
            background-position: right 10px center;
            padding-right: 35px;
        }

        .language-selector:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
            background: linear-gradient(135deg, #ddd6fe 0%, #d4d4fe 100%);
        }

        .language-selector option {
            background-color: white;
            color: #1e293b;
            padding: 10px;
        }
        
        .highlight-text {
            text-align: center;
            margin-bottom: 1.5em;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Überschriften */
        h1 {
            text-align: center;
            color: #1e4d7b;
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .subtitle {
            text-align: center;
            color: #2c5282;
            font-size: 1.4em;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .intro-text {
            text-align: center;
            color: #2c5282;
            font-size: 1.1em;
            max-width: 900px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        .description-text {
            text-align: center;
            color: #2c5282;
            font-size: 1.05em;
            max-width: 900px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        /* Video Sektion */
        .video-intro {
            text-align: center;
            color: #2c5282;
            font-size: 1.05em;
            max-width: 900px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        .video-section {
            text-align: center;
            margin: 40px 0;
        }

        .video-section h2 {
            color: #1e4d7b;
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .video-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
        .video-thumbnail img {
    width: 320px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.video-thumbnail img:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

        .video-item {
            text-align: center;
        }

        .video-item h3 {
            color: #1e4d7b;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .video-thumbnail {
            cursor: pointer;
            transition: transform 0.3s ease;
            display: block;
            position: relative;
        }

        .video-thumbnail:hover {
            transform: scale(1.05);
        }

        .video-thumbnail img {
            width: 100%;
            max-width: 350px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .video-thumbnail::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-thumbnail:hover::after {
            opacity: 1;
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, #e6f2ff 0%, #d4e8ff 100%);
            border-left: 5px solid #4299e1;
            padding: 25px;
            margin: 40px auto;
            max-width: 900px;
            border-radius: 10px;
            color: #2c5282;
            font-size: 1.05em;
            line-height: 1.8;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }

        .section {
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.story-box h2 {
    color: #3a6073;
}

.story-box ul {
    color: #4a5a63;
}

.two-column {
    align-items: center;
}

.two-column {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 0;
    flex-wrap: wrap;
}

.two-column > div:first-child {
    flex: 0 0 320px; /* Bildbereich feste Breite */
}

.two-column > div:last-child {
    flex: 1; /* Text nimmt den Rest */
}

.two-column img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
}

        .about-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap; /* wichtig für mobile */
}

.about-image img {
    width: 250px;
    border-radius: 15px;
}

.about-text {
    max-width: 500px;
}
        /* Auswahl Überschrift */
        .selection-title {
            text-align: center;
            color: #1e4d7b;
            font-size: 1.6em;
            margin: 50px 0 40px;
            font-weight: 600;
        }

        /* Button Grid - Zwei Spalten */
        .button-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin: 40px 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Linke Spalte - Produkte */
        .product-column {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .product-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .product-icon {
            width: 70px;
            height: 70px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .product-button-group {
            flex: 1;
        }

        .main-button {
            width: 100%;
            background: linear-gradient(135deg, #cfe8ff 0%, #b7dbff 100%);
            color: #2c5282;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(183, 219, 255, 0.5);
            margin-bottom: 10px;
        }

        .main-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(183, 219, 255, 0.7);
        }

        .sub-buttons {
            display: flex;
            gap: 10px;
        }

        .sub-button {
            flex: 1;
            padding: 10px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 0.9em;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .bot-button {
            background: linear-gradient(135deg, #f7d6f0 0%, #f3c4e8 100%);
            color: #7a3e6a;
        }

        .bot-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(243, 196, 232, 0.6);
        }

        .read-button {
            background: linear-gradient(135deg, #ffe3b3 0%, #ffd699 100%);
            color: #8a5a00;
        }

        .read-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(255, 214, 153, 0.6);
        }

        /* Rechte Spalte - Geschäft */
        .business-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .business-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .business-button-group {
            flex: 1;
        }

        .club-icon {
            width: 90px;
            height: 90px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .business-info {
            color: #2c5282;
            font-size: 1.05em;
            line-height: 1.8;
        }

        .business-info p {
            margin-bottom: 12px;
        }

        .business-info strong {
            color: #1e4d7b;
            font-weight: 700;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: #fff5f5;
            border-left: 4px solid #e53e3e;
            padding: 20px;
            margin: 50px auto;
            max-width: 900px;
            border-radius: 8px;
            color: #c53030;
            font-size: 1em;
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
            padding: 50px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
        }

        .footer-left {
            text-align: center;
        }

        .footer-profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 5px solid white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .footer-left h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .footer-left p {
            margin-bottom: 8px;
            font-size: 1em;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icons a {
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .social-icons a:hover {
            transform: scale(1.2);
        }

        .social-icon {
            width: 40px;
            height: 40px;
        }

        .footer-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .footer-right h3 {
            font-size: 1.4em;
            margin-bottom: 25px;
            color: #e2e8f0;
        }

        .arrow-button {
            background: linear-gradient(135deg, #f5c6c6 0%, #efb1b1 100%);
            color: #7a2e2e;
            text-decoration: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1em;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
            align-self: flex-start;
        }

        .arrow-button:hover {
            transform: translateX(8px);
            box-shadow: 0 7px 20px rgba(229, 62, 62, 0.5);
        }

        .arrow-icon {
            width: 35px;
            height: 35px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 50px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            text-align: center;
        }

        .impressum {
            margin-bottom: 30px;
        }

        .impressum h4 {
            font-size: 1.3em;
            margin-bottom: 15px;
        }

        .impressum p {
            margin-bottom: 5px;
            font-size: 0.95em;
        }

        .datenschutz {
            background-color: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: 10px;
            text-align: left;
        }

        .datenschutz h4 {
            font-size: 1.3em;
            margin-bottom: 20px;
            color: #e2e8f0;
        }

        .datenschutz p {
            font-size: 0.9em;
            line-height: 1.7;
            margin-bottom: 15px;
            color: #cbd5e0;
        }

        .shop-button-kunde {
    background: linear-gradient(135deg, #f7d6f0 0%, #f3c4e8 100%);
    color: #7a3e6a;
    padding: 14px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.shop-button-kunde:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(240, 147, 251, 0.4);
}

.shop-button-berater {
    background: linear-gradient(135deg, #ffe3b3 0%, #ffd699 100%);
    color: #8a5a00;
    padding: 14px 30px;
    border-radius: 25px;
    border: none;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.shop-button-berater:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 167, 38, 0.4);
}

.shop-section {
    text-align: left;
    padding: 1.5em 0 0 0;
    margin-top: 1em;
}

.shop-section h3 {
    color: white;
    font-size: 1em;
    margin-bottom: 0.3em;
}

.shop-section p {
    color: #ccc;
    font-size: 0.9em;
    margin-bottom: 1em;
}

.shop-buttons-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start; /* linksbündig! */
}

/* Mobile: Buttons untereinander */
@media (max-width: 600px) {
    .shop-button-kunde,
    .shop-button-berater {
        width: 100%;
        text-align: center;
    }
}

        /* Responsive */
        @media (max-width: 968px) {
            .button-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .arrow-button {
                align-self: center;
            }

            h1 {
                font-size: 2em;
            }

            .subtitle {
                font-size: 1.2em;
            }

            .video-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .video-links {
                grid-template-columns: 1fr;
            }
        }
/* Mobile Optimierung About-Seite */
@media (max-width: 768px) {

    .mobile-columns {
        flex-direction: column;
    }

    .mobile-columns div {
        width: 100% !important;
    }

    .mobile-columns img {
        width: 100%;
        max-width: 320px;
        display: block;
        margin: 0 auto;
    }

}