
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            display: grid;
            grid-template-columns: 30% 1fr;
			grid-template-rows: 1fr;
        }

        .video-container {
            aspect-ratio: 16 / 9;   /* Seitenverhältnis festlegen */
            width: 100%;            /* passt sich der Elternbreite an */
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }


        /* Sidebar */

        .sidebar {
            width: 30vw;
			min-height: 100vh;
            background: rgba(20, 20, 40, 0.9);
            backdrop-filter: blur(5px);
            border: solid rgba(255, 255, 255, 0.1);
            border-width: 0px 1px 1px 0px;
            padding: 2rem;

            position: sticky;
            height: fit-content;
            bottom: 0;
            align-self: end;

        }

        .profile {
            text-align: center;
            margin-bottom: 3rem;
        }


        .profile-image {
            width: 100%;              /* passt sich an Container/Fenster an */
            aspect-ratio: 1 / 1;      /* hält es quadratisch */
            background-image: url(../gfx/zorryn_header.png);
            background-size: contain; /* Bild wird vollständig sichtbar skaliert */
            background-repeat: no-repeat;
            background-position: center;
            max-width: 280px;
            margin: 0 auto;
        }



         @keyframes profileGlow {
            0% { box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3); }
            50% { box-shadow: 0 8px 32px rgba(78, 205, 196, 0.3); }
            100% { box-shadow: 0 8px 32px rgba(69, 183, 209, 0.3); }
        }


        .bio {
            color: #b8b8b8;
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 2rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ffffff;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .menu-section {
            margin-bottom: 2rem;
        }

        .menu-item {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 0.5rem;
            margin-bottom: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        a {
            color: white;
            text-decoration: none;
        }

        ul, ol {
            margin: 0 0 1em 0;       /* Abstand nach außen */
            padding: 0 0 0 1.5em;    /* Einrückung nach innen */
            list-style-position: outside; /* Aufzählungszeichen hängen außerhalb */
        }

        .menu-item:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateX(5px);
        }

        /* Gallery */


        .gallery {
            padding: 2rem;
            overflow-y: auto;
        }

        @media (max-width: 768px) {
            .gallery {
                padding: 2rem;
                overflow-y: visible;
                margin-left: 0em;
            }

        }

        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .gallery-title {
            font-size: 4vw;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gallery-subtitle {
            color: #b8b8b8;
            font-size: 1.1rem;
        }

        .categories {
            margin-bottom: 2rem;
        }

        .category-nav {
            padding-top: 0,5em;
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .category-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            padding: 0.7rem 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #ffffff;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .category-btn:hover,
        .category-btn.active {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
        }

        .category-count {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 0.2rem 0.6rem;
            font-size: 0.8rem;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .image-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
        }

        .image-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .image-placeholder {
            width: 100%;
            height: 240px;
            background: linear-gradient(45deg, #EB6E74 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* fill, but may crop */
            object-position: top left;
            transition: object-position 0.3s ease; /* smooth movement */
            }

            /* Example: move image left, right, up, down */
            .image-placeholder:hover img {
            object-position: bottom right;  /* could be: top, bottom, left, right, 50% 20%, etc. */
            }

        .image-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            /* animation: shimmer 2s infinite; */
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .image-info {
            padding: 1rem;
        }

        .image-title {
            font-weight: 500;
            font-size: 0.6rem;
            margin-bottom: 0.5rem;
            color: #ffffff;
        }

        .image-category {
            color: #b8b8b8;
            font-size: 0.6rem;
            text-transform: uppercase;
            font-style: italic;
            letter-spacing: 0.5px;
        }

        .loading {
            text-align: center;
            padding: 3rem;
            color: #b8b8b8;
        }

        .no-images {
            text-align: center;
            padding: 3rem;
            color: #b8b8b8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
				grid-template-columns: 1fr;
				grid-template-rows: auto;
                font-weight: bold
            }

            .sidebar {
                padding: 1rem;
				height: auto;
				min-height: auto;
				width: 100%;
				position: static;
            }

            .image-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 1rem;
            }

            .category-nav {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 0.5rem;
            }
        }







            #ddCarouselWrapper {
                position: fixed;
                display: none;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                overflow: hidden;
            }

            #imgfront, #imgback {
                position: absolute;
                top: 0;
                left: 0px;
                width: 100%;
                height: 100vh;

                background-size: contain;
                background-color: rgba(0,0,0,0.8);
                background-repeat: no-repeat;
                background-position: center center;
                opacity: 1;
                transition: opacity 2s;
                /* animation: moveX 20.0s linear 0s infinite alternate;*/
            }

            #imgnav, #imgnavleft, #imgnavright {
                position: absolute;
                top: 0px;
                width: 100%;
                height: 100vh;
                z-index: 4;
            }

            #imgnavleft, #imgnavright { width: 35%; cursor: pointer; }
            #imgnavleft { left: 0px; } #imgnavright { right: 0px; }



            #imgnavinfo {
                position: absolute;
                bottom: 3vh;
                right: 3vw;
                width: 6em;
                height: 32px;
                padding: 5px 0px;
                text-align: center;
                background: rgba(255,255,255,0.6);
                color: #111;
                border-radius: 10px;
            }

            #imgnavclose {
                position: absolute;
                top: 2vh;
                right: 2vw;
                width: 50px;
                height: 50px;
                padding: 5px 0px;
                border-radius: 35px;
                cursor: pointer;
                font-size: 1.7em;
                text-align: center;
                background: rgba(255,255,255,0.6);
                color: #111;
                z-index: 5;
            }
            #imgnavclose:hover {
                background: rgba(255,255,255,0.3);
            }

            .naviconl, .naviconr {
                position: absolute;
                top: 40vh;
                font-size: 6em;
                background: rgba(255,255,255,0.4);
                padding: 0px 30px 27px;
                line-height: 1;
                border-radius: 44px;
                display: none;
            }
            .naviconl { left: 6vw; }
            .naviconr { right: 6vw; }

            #imgnavleft:hover .naviconl {display: block;}
            #imgnavright:hover .naviconr {display: block;}

            #imgfront {	z-index: 3;		}
            #imgfront.fadeOut {opacity: 0; }
            #imgback { z-index: 2;	}

            @keyframes moveX {
                from { left: -300px; } to { left: 0px; }
            }



/*         FORM            */

    form {
        max-width: 1100px;
        margin: auto;
        margin-bottom: 2em;
        background: #fff;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        color: #000000;
    }

    h1 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: #222;
    }

    fieldset {
        border: none;
        padding: 0;
        margin: 0;
    }

    .contentbox {
        max-width: 1100px;
        margin: auto;
        margin-bottom: 2em;
        background: #fff;
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        color: #000000;
    }

     .contentbox a {
            background: linear-gradient(135deg, #4e73df, #224abe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        font-weight: bold;
    }


    div.pricebox {
        background: linear-gradient(135deg, #4e73df, #224abe);
        border-radius: 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        max-width: 1100px;
        margin: auto;
        margin-bottom: 2em;
        padding: 2rem;

        font-size: 1.5em;
        font-weight: bold;
        font-style: italic;
        text-shadow: 0 2px 0 #000000;
        color: #ffffff;

        display: flex;
        justify-content: space-between; /* verteilt die Elemente */
    }


    .right  {

    }

    .left  {

    }



    hr {
        border: none;
        border-top: 1px solid #ddd;
        margin: 1.5rem 0;
    }

    /* Grid für 2-spaltige Bereiche */
    .grid-2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    label {
        display: block;
        margin-bottom: 0.4rem;
        cursor: pointer;
    }

    input[type="radio"], input[type="checkbox"] {
        margin-right: 0.5rem;
    }

    input[type="number"], select {
        padding: 0.5rem;
        border-radius: 0.5rem;
        border: 1px solid #ccc;
        width: 4rem;
    }

    select {
        width: 100%;
        max-width: 350px;
    }

    /* Tooltips */
    .tooltip {
        position: relative;
        display: inline-block;
        margin-bottom: 0.6rem;
    }

    .tooltiptext {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        left: 105%;
        top: 50%;
        transform: translateY(-50%);
        background-color: #333;
        color: #fff;
        padding: 0.5rem;
        border-radius: 0.5rem;
        transition: opacity 0.2s;
        z-index: 10;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

    /* Button */
    .commissionformbutton {
        display: inline-block;
        background: linear-gradient(135deg, #4e73df, #224abe);
        color: #fff;
        font-weight: bold;
        padding: 0.8rem 1.5rem;
        border-radius: 2rem;
        text-decoration: none;
        text-align: center;
        transition: background 0.3s;
    }

    .commissionformbutton:hover {
        background: linear-gradient(135deg, #224abe, #1a2d6b);
    }


