@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
	padding: 0; 
	margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    list-style-type: none;
    text-decoration: none;
}
:root {
    --bg-color-white: white;
    --bg-color-grey: #a6a6a6;
    --bg-color-hellgrau: oklab(81.254% 0.00214 0.00057 / 0.454);
    --text-color: hsl(0, 0%, 13%);
    --menu-icon-color: hsl(0, 100%, 50%);
    --color-lila: hsla(267, 78%, 75%, 0.445);
    --h1-font: 0.9rem;
    --h2-font: 1.2rem;
    --h3-font: 1.1rem;
    --h4-font: 1.1rem;
    --p-font: 0.9rem;
    --p-font-big: 1.2em;
    --p-color-dunkelgrau: #666;
    --bar-width: 35px;
    --bar-height: 3px;
    --hamburger-gap: 8px;
    --hamburger-margin: 8px;
    --animation-timing: 200ms ease-in-out;
    --hamburger-height: calc(var(--bar-height)
    * 3 + var(--hamburger-gap) * 2);
    --border-radius-10: 10px 10px 0 0;
    --border-radius-30: 30px 0 30px 30px;
    --bold: 500;
}
html {
    scroll-behavior: smooth;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-color-white);
	margin: 0 auto;
    color: var(--text-color);
}

h1 {
    padding-top: 5px;
    font-size: var(--h1-font);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5pt;
}
h2 {
    font-weight: 500;
    color: #444; /* Dein edles Dunkelgrau */
    text-align: center;
    padding-top: 1em;
    margin-bottom: 2.5em; /* Genug Platz für die Ellipse */
    position: relative;
}

h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 12rem;
    background-color: var(--bg-color-grey);
    border-radius: 50%;
    margin: 1.5rem auto 0 auto;
}
h3 {
    font-size: var(--h3-font);
    font-weight: 500;
    text-align: center;
    margin: 1rem 0;
}
h4 {
	font-weight: 500;
	font-size: var(--h4-font);
	padding: 1.5rem 0;
}
p {
    font-size: var(--p-font);
    padding: 0.5rem 0;
    font-weight: 400;
    line-height: 1.6em;
    hyphens: auto; /* Erlaubt dem Browser, Wörter automatisch zu trennen */
    word-wrap: break-word; /* Verhindert das Überlaufen */
}
.pcenter {
    text-align: center;
}
a {
    font-size: var(--p-font);
    color: var(--text-color);
}
img {
    margin: 0 auto;
}
b, strong {
    letter-spacing: 0.2pt;
    font-weight: 600;
}
.bold {
    font-weight: var(--bold);
}

/* ------------- Header up to 1200px ---------------- */
header {
    position: fixed;
    width: 100%;
    height: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    background: 
    linear-gradient(50deg, rgba(255, 0, 0, 0.951), hsla(0, 100%, 50%, 0) 5%), 
    linear-gradient(117deg, hsla(55, 98%, 50%, 1), hsla(49, 98%, 50%, 0) 5%),
    linear-gradient(178deg, rgba(4, 133, 2, 0.561), hsla(195, 15%, 95%, 0) 8%),
    linear-gradient(217deg, hsla(120, 100%, 50%, 1), hsla(120, 100%, 50%, 0) 5%),
    linear-gradient(290deg, rgb(6, 182, 231), hsla(195, 15%, 95%, 0) 4%),
    linear-gradient(358deg, hsla(258, 96%, 42%, 0.998), hsla(195, 15%, 95%, 0) 8%);
    transition: ease 0.2s;
    background-color: var(--bg-color-white);
    box-shadow: 0 0 15px rgb(144, 144, 241);
}
.sticky {
    position: fixed;
    top: 0;
    background-color: var(--bg-color-white);
}  
.sticky + .wrapper {
padding-top: 102px;
}
#left {
    width: 100%; /* Nutzt die Breite aus */
    margin: 5px 0; /* Weniger Abstand oben/unten */
}

.logo-container {
    display: flex;
    flex-direction: row; /* Nebeneinander */
    align-items: end; /* Vertikal mittig zueinander */
}

.imgheader {
    width: auto;         /* Nicht mehr 40% Breite erzwingen */
    height: 50px;        /* Fixe Höhe reduziert den Platzverbrauch enorm */
    margin: 5px;
}

.artist-name-bg {
    font-size: 0.9rem;   /* Etwas kleiner für Mobilgeräte */
    padding-bottom: 0.7em;
    letter-spacing: 1px; /* Dein angepasstes Spacing */
    white-space: nowrap; /* Verhindert Zeilenumbruch des Namens */
}
/* Der Ort kann mobil oft ganz weg oder sehr klein sein */
.ffm {
    display: none;       /* Hast du ja bereits im CSS, spart viel Platz! */
}

nav {
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 5px green;
    background: linear-gradient(45deg, rgb(249, 186, 186), rgb(247, 224, 182),rgb(247, 247, 173), white, rgb(212, 251, 212), rgb(166, 166, 247));
    background-size: 110% 100%;
    animation: colorFbg 10s ease-in-out infinite;
}
.hamburger-menu {
    --x-width: calc(var(--hamburger-height) * 1.41421356237);
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    width: max-content;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    cursor: pointer;
}
.hamburger-menu::before,
.hamburger-menu::after,
.hamburger-menu input {
    content: "";
    width: var(--bar-width);
    height: var(--bar-height);
    background-color: var(--menu-icon-color);
    border-radius: 100px;
    transform-origin: right;
    transition: opacity var(--animation-timing), 
        width var(--animation-timing), 
        rotate var(--animation-timing), 
        translate var(--animation-timing),
        background-color var(--animation-timing);
}
.hamburger-menu input {
    appearance: none;
    padding: 0;
    margin: 0;
    outline: none;
    pointer-events: none;
}
.hamburger-menu:has(input:checked)::before {
    rotate: -45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / -2);
}
.hamburger-menu:has(input:checked)::after {
    rotate: 45deg;
    width: var(--x-width);
    translate: 0 calc(var(--bar-height) / 2);
}
.hamburger-menu input:checked {
    opacity: 0;
    width: 0;
}
.sidebar {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    padding: 0 10px 10px 10px;
    padding-top: calc(var(--hamburger-height) 
        + var(--hamburger-margin) + 1rem);
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(5px);
    z-index: 8;
    background-color: #30909f9f;
    transition: translate var(--animation-timing);
    translate: 100%;
}
.hamburger-menu:has(input:checked) 
+ .sidebar {
    translate: 0;
}
nav li {
    width: 100%;
    margin: 25px 0 0 0;
    text-align: center;
    background-color: var(--bg-color-white);
    border-radius: 100px 0;
    box-shadow: 2px 15px 20px rgba(0, 225, 255, 0.205);
    transition: ease .3s;
}
nav li.active {
    box-shadow: -1px 1px 2px var(--menu-icon-color) inset;
}
.sidebar a {
    width: 100%;
    display: block;
    padding: 1.5rem 0;
    font-weight: 500;
    letter-spacing: 0.5pt;
}
/* Der Container für den Sprachschalter */
.lang-switch {
    display: flex;          /* Macht den Container flexibel */
    align-items: center;    /* Zentriert den Inhalt EXAKT vertikal */
    list-style: none;
}

/* Der Standard-Look für beide Sprachen */
.lang-switch a {
    display: inline !important; /* Verhindert den Umbruch */
    white-space: nowrap;       /* Verhindert, dass bei Platzmangel umgebrochen wird */

    text-decoration: none;
    color: #888; /* Etwas blasser für die nicht aktive Sprache */
    font-weight: normal;
    transition: all 0.3s ease;
}

/* Die aktive Sprache wird hervorgehoben */
.lang-switch a.active-lang {
    color: #000;      /* Schwarz oder deine Akzentfarbe */
    font-weight: bold; /* Fett markiert */
}

/* Der Trennstrich */
.lang-switch .sep {
    padding: 0 5px;
    color: #ccc;
}

.lang-switch a:hover {
    color: #333;
}

.h1-tel {
    padding: 0 0 5px 0;
}

.tel {
    font-size: 1rem;
    letter-spacing: 0.01rem;
    padding: 0 0 0 5px;
    font-weight: 500;
}

/* ------------- Ende Header up to 1200px ---------------- */

/* ------------- Beginn Wrapper up to 1200px ---------------- */
.wrapper {
    display: flex;
    flex-direction: column-reverse;
    padding-top: min(22vh, 14rem);
    padding-inline: 2rem;
    padding-bottom: 4rem;
    margin: 0 auto;
    background-color: var(--bg-color-white);
    
    /* NEU: Stabilitäts-Anker */
    width: 100%;
    max-width: 1200px;
    align-items: center; /* Zentriert alle Kinder (article, section etc.) */
    box-sizing: border-box;
}

    /* Damit die Inhalts-Elemente innerhalb des Flex-Wrappers stabil bleiben */
.wrapper > article, 
.wrapper > section, 
.wrapper > main {
    width: 100%; 
    max-width: 1050px; /* Oder die Breite, die mir für den Text am besten gefällt */
}

.grad2 {
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
}

.card2 {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 2rem auto 1rem auto;
}

    /* --- Basis & Animation --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    animation: fadeInUp 1.2s ease-out forwards;
}

/* --- Beginn Main Content Wrapper (Tausch-Logik) --- */
.main-content {
    display: flex;
    flex-direction: column; /* Mobile: Untereinander */
    gap: 1rem;    
    /* FIX 3: Ausrichtung */
    align-items: flex-start; /* Verhindert, dass sich Spalten unnötig dehnen */
}

    /* Mobile: Slider (visual) zuerst anzeigen */
.visual-column { order: 1; margin-top: 0;}
.text-column { order: 2; margin-top: 0;}

.pcenter-italic {
    text-align: center;
    font-style: italic;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Ende Main Content Wrapper (Tausch-Logik) --- */

/* --- Beginn Footer Content Wrapper (Immer unten) --- */
.footer-content {
    margin-top: 4rem;
    clear: both;
}

.cta-text {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.3rem;
    color: #444;
    line-height: 1.5;
}

/* --- Ende Footer Content Wrapper (Immer unten) --- */

/* Beginn snippets  */
.snippets {
    /* Kein display: flex hier! */
    border-top: 1px solid rgba(0,0,0,0.5);
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin: 2rem 0;
    text-align: center;
}
.snippet-box {
    padding: 20px 0; /* Abstand nach oben und unten für die Luft */
    margin: 0 auto;
}
    /* Die magische Zwischenlinie: 
   Jede Box außer der letzten bekommt eine Linie unten */
.snippet-box:not(:last-child) {
    border-bottom: 1px solid #f0f0f0; 
}

.snippet-box h4 {
    color: #444;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
/* --- Ende snippets ---*/


/* Beginn artcontainer */

.artcontainer {
    padding-block: 2rem;
    columns: 1;
}
.box {
    position: relative;
    background-color: var(--bg-color-white);
    border: 1px solid hsla(0, 1%, 64%, 0.927);
    padding: 20px 10px;
    margin-bottom: 1em;
    break-inside: avoid;
    border-radius: 20px 0;
    transition: all 1s ease 0s;
    cursor: pointer;
}
.thum {
    position: relative;
    background-color: var(--bg-color-white);
    border-radius: 20px 0;
    padding-bottom: 0;
    transition: all .3s cubic-bezier(.445, .05, .55, .95);
 
}
.thum img {
    width: 100%;
    height: auto;
    padding: 0.6em;
    border-radius: 20px 0;
    box-shadow: 0 0 5px var(--bg-color-hellgrau);
}
.dest-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
/* --- Ende artcontainer ---*/


/* ----- Beginn slider small --- */

#slider {
    position: relative;
    overflow: hidden; /* Versteckt die anderen 4 Bilder */
    width: 100%;      /* Sichtbarer Bereich (z.B. 600px) */
    background-color: var(--bg-color-white); /* Oder ein ganz helles Grau */
}

#slider figure {
    display: flex;
    flex-direction: row;
    align-items: center; /* Das zentriert das kleine Bild vertikal */
    width: 500%;         /* Der Container ist 5x so breit wie der Slider */
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    left: 0;
    animation: 20s slider infinite;
}

#slider figure img {
    /* Jedes Bild muss exakt 1/5 der figure-Breite einnehmen, 
       was genau 100% der #slider-Breite entspricht. */
    width: 20%; 
    min-width: 20%; /* Zwingt das Bild, nicht zu schrumpfen */
    
    height: auto;
    max-height: 100%; /* Verhindert, dass hohe Bilder oben/unten rausgehen */
    
    object-fit: contain; /* Erhält Proportionen bei kleineren Bildern */
    display: block;

    padding: 10px;
    box-shadow: 0 1px 10px var(--bg-color-grey) inset;
    border-radius: 30px 0;
}

#slider::after {
    content: attr(data-watermark); 
    position: absolute;
    top: 10px; /* Oder unten, je nach Wunsch */
    right: 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    pointer-events: none; 
    z-index: 100;
}


@keyframes slider {
    0% {
        left: 0;
    }
    20% {
        left: 0;
    }
    25% {
        left: -100%;
    }
    45% {
        left: -100%;
    }
    50% {
        left: -200%;
    }
    70% {
        left: -200%;
    }
    75% {
        left: -300%;
    }
    95% {
        left: -300%;
    }
    100% {
        left: -400%;
    }
}

/* ----- Ende slider small --- */


/*----- Beginn about small ------*/

.lena {
    display: none;
}
.imgaside {
    display: flex;
    flex-direction: row-reverse;
    padding: 1rem;
}
.portrait2 {
    margin-right: 0;
    border-radius: 50px 0;
    box-shadow: 1px 3px 30px var(--bg-color-grey);
    margin-bottom: 1.5rem;
}
.statement {
    text-align: left;
    padding: 0 0 0 1em;
    margin: auto 0;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1pt;
}

/*----- Ende about small ------*/

/* --- Beginn tanzcontainer ---*/

.tanzcontainer {
    padding-block: 2rem;
    columns: 1;
}
.tanzbox {
    width: 100%;
    transition: all 1s ease 0s;
    border-radius: 15px 0;
    break-inside: avoid;
}
.tanzbox img {
    width: 100%;
    border-radius: 15px 0;
}
.tanzbox p {
    padding: 0 0 2rem 0;
}
/* --- Ende tanzcontainer ---*/


/* ------------- Footer up to 1200px ---------------- */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 5%;
    text-align: center;
    box-shadow: 0 -1px 20px var(--bg-color-hellgrau);
    background: linear-gradient(45deg, rgb(249, 186, 186), rgb(247, 224, 182), white, rgb(212, 251, 212), rgb(166, 166, 247));
    background-size: 200% 200%;
    animation: colorFbg 10s ease infinite;
}

/* Die Linien-Elemente (Separator) */
footer::before, .footer-bottom::before {
    content: "";
    height: 3px;
    width: 8rem;
    background-color: var(--bg-color-grey);
    border-radius: 50%;
}

.footer-keywords {
    display: none; /* Mobile versteckt, wie im Original */
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap; /* Erlaubt Umbruch auf kleinen Handys */
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px; /* Rundes Button-Design */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Farben für die Dienste */
.wa { background-color: #25D366; }    /* WhatsApp Grün */
.viber { background-color: #7360F2; } /* Viber Lila */
.mail { background-color: #3498db; }  /* E-Mail Blau */

.btn-contact i {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-top: 0.5rem;
    gap: 30px;
}

@media (max-width: 600px) {
    .contact-buttons {
        flex-direction: column; /* Buttons untereinander auf dem Handy */
        width: 100%;
    }
    .btn-contact {
        justify-content: center;
    }
}


/* ------------- Ende Footer up to 1200px ---------------- */


.scrollTop {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    bottom: 600px;
    right: 10px;
    border-radius: 0 50% 50% 50%;
    background: url(/gallery-h/up.png) var(--bg-color-white);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        inset -3px -6px 20px 0 var(--bg-color-hellgrau),
        inset -5px -8px 5px 0 var(--menu-icon-color),
        8px 3px 15px grey;
    cursor: pointer;
    transform: rotate(45deg);
    z-index: 20;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    
}
.scroll-text {
    position: absolute;
    top: 0;  /* Schiebt den Text über die Spitze */
    left: -88px; /* Gleicht die Verschiebung durch die Drehung aus */
    right: 50px; /* Abstand zum Button */
    width: 100px; /* Genug Platz für "Nach oben" / "Нагоре" */
    text-align: center;
    background-color: var(--bg-color-white);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-family: 'Comfortaa', cursive; /* Deine neue Lieblingsschrift */
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    
    /* WICHTIG: Da der Parent .scrollTop um 45 Grad gedreht ist, 
       müssen wir den Text um -45 Grad drehen, damit er waagerecht ist! */
    transform: rotate(45deg);
    
    /* Standardmäßig unsichtbar */
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
    pointer-events: none; /* Text stört nicht beim Klicken */
}

/* Beim Hovern auf den Button wird der Text sichtbar */
.scrollTop:hover .scroll-text {
    opacity: 1;
    visibility: visible;
    right: 55px; /* Kleiner Bewegungseffekt nach links */
    top: -50px; /* Kleiner Animationseffekt nach oben */
}
.scrollTop.active {
    bottom: 20px;
    visibility: visible;
    opacity: 1;
}
.scrollTop::before {
    content: "";
    position: absolute;
    border-radius: 46% 46% 37% 54%;
    background: white;
    transform: rotate(279deg);
    width: 7px;
    height: 3px;
    top: 21px;
    right: 1px;
}
.scrollTop::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: white;
    transform: rotate(-120deg);
    width: 5px;
    height: 3px;
    top: 12px;
    right: 2px;
}
.scrollTop:is(:hover, :focus) {
    background-color: cyan;
}

/* .girlande {
    pointer-events: none;
    z-index: 10;
    width: 100%;
    height: 150px;
    position: absolute;
    top: 150px;
    left: 0;
}
.girlande1 {
    height: 150px;
    background: url(/bilder/girlande1.png);
    top: -50px;
}
.girlande2 {
    background: url(/bilder/girlande2.png);
    top: -80px;
}
.girlande3 {
    background: url(/bilder/girlande3.png);
    top: -50px;
    background-repeat: no-repeat;
} */

@keyframes colorFbg {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

/* Ignoriere Dark Mode Abfrage */
@media (prefers-color-scheme: dark) {
    /* Hier könnten normalerweise Anpassungen für den Dark Mode stehen, aber wir lassen diesen Block leer. */
}


/* --- For medium screens from 481px --- */
@media only screen and (min-width: 481px) {
    .tanzcontainer {
        width: calc(100% - 1em);
        column-gap: 0.5em;
        columns: 2;
    }
}


/* --- For medium screens from 769px --- */
@media only screen and (min-width: 769px) {

    .snippets {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        padding: 25px 0;
    }
    .snippet-box {
        flex: 1;
        padding: 0; /* Padding auf Desktop entfernen, da sie nebeneinander stehen */
        border-bottom: none !important; /* Die Linie von Mobile ausschalten */
        
    }
    .tanzcontainer {
        columns: 3;
    }
}

/* --- For medium screens and desktop from 1201px up ---- */
@media only screen and (min-width: 1201px) {
    :root {
        --h1-font: 1.3rem;
        --h2-font: 0.9rem; letter-spacing: 0.2pt;
        --h3-font: 1.2rem;
        --h4-font: 1rem;
        --p-font: 0.9rem;
    }
    body {
        background: #fcfcfc !important; /*Ein fast weißes, sehr edles Grau */
        animation: none !important;     /* Stoppt die Farbbewegung */
    }
    h1 {
        padding-top: 0;
        text-align: left;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.758);
    }
    h3 {
        display: block;
        margin: 0 0 15px 0;
        text-align: center;
        letter-spacing: 0.4pt;

    }
    a {
        font-size: var(--p-font);
    }
    

/* -------------  Header from 1201px up  ---------------- */
    header {
        /* position: sticky; */
        flex-direction: row;
        justify-content: center;
        margin: 0 auto 30px auto;
        padding-top: 0;
        background: #ffffff !important;
        border-bottom: 1px solid #eeeeee;
        box-shadow: 0 2px 10px rgba(0,0,0,0.02); /* Minimaler Schatten für Tiefe */
    }

/* 2. Der innere Container (Zähmung der Breite) */
.header-inner {
    width: 1200px; /* Exakt wie content-wrapper */
    margin: 0 auto;    /* Das A und O: Zentriert den Block auf dem Bildschirm */
    display: flex;
    justify-content: space-between; /* Schiebt Logo nach links, Nav nach rechts */
    align-items: center; /* Zentriert alles vertikal */
    height: auto;
    min-height: 80px;  /* Verhindert, dass der Header zu flach wird */
}
    #left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 20%;
        height: 100%;
        margin: 20px 0 0 0;
        background-color: transparent;
    }
    /* ------------- Desktop Header (1201px+) ---------------- */
    .logo-container {
        display: flex;
        flex-direction: column; /* Name unter das Logo auf Desktop */
        align-items: flex-start;
        width: 100%;
    }

    .imgheader {
        width: 100%;
        max-width: 250px; /* Deine ursprüngliche Wunschgröße */
        height: auto;     /* Wichtig: Höhe auf auto, damit es nicht schrumpft */
        display: block;
    }

    .artist-name-bg {
        font-size: 1.2rem;
        margin-left: 18px;
        padding-bottom: 0;
        letter-spacing: 4px; /* Dein angepasstes Spacing für bündigen Look */
        white-space: nowrap;
    }
    
    .ffm {
        display: block; /* Ort auf Desktop wieder einblenden */
        margin-left: 18px;
        letter-spacing: 0.35em;
        padding: 0;
    }
    nav {
        width: 75%;
        align-items: flex-start;
        justify-content: flex-start;
        box-shadow: none;
        background: transparent;
    }
    /* Die Navigation auf Desktop dezenter gestalten */
    nav a {
        color: #444 !important;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-size: 0.85rem;
    }
    .hamburger-menu {
        display: none;
    }
    .sidebar {
        position: relative;
        flex-direction: row;
        justify-content: space-evenly;
        gap: 1rem;
        height: auto;
        margin-top: 0;
        padding: 0 0 0 1.5rem;
        border-bottom: solid 1px var(--menu-icon-color);
        background: transparent;
        transition: none;
        translate: 0;
    }
    nav li {
        width: 20%;
        margin: 5px 0 0 0;
        text-align: left;
        text-wrap: nowrap;
        border-radius: 30px 0;
        box-shadow: none;
    }
    nav li.active {
        height: auto;
        text-align: left;
        border-radius: 30px 0;
        transition: ease .3s;
    }
    .sidebar a {
        height: 4rem;
        padding: 20px 0 0 10%;
    }
    .sidebar a:is(:hover, :focus) {
        transition: ease .3s;
        border-radius: 30px 0;
        box-shadow: 3px -2px 2px var(--bg-color-grey) inset;
    }
    .h1-tel {
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 5px 0;
    }
    .tel {
        display: flex;
        position: relative;
        text-align: right;
        padding-right: 40px;
        font-size: var(--h1-font);
    }

    /* ------------- Ende Header from 1200px up ---------------- */

    /* -------------  Wrapper from 1201px up  ---------------- */

     .wrapper {
        flex-direction: row !important; /* Horizontale Ausrichtung */
        justify-content: center;
        gap: 60px; /* Großzügiger Abstand zwischen Text und Bild */
        align-items: flex-start; /* Verhindert, dass das Bild gestreckt wird */
    }
    .scrollTop {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 600px;
        right: 40px;
        border-radius: 0 50% 50% 50%;
        background: url(/gallery-h/up.png) rgb(4, 241, 8);
        background-size: 40px;
        background-position: center;
        background-repeat: no-repeat;
        box-shadow:
            inset -3px -6px 20px 0 rgba(128, 128, 128, 0.228),
            inset -5px -8px 5px 0 red,
            8px 3px 15px grey;
        cursor: pointer;
        transform: rotate(45deg);
        z-index: 20;
        visibility: hidden;
        opacity: 0;
        transition: 0.5s;
    }
    .scrollTop.active {
        bottom: 40px;
        visibility: visible;
        opacity: 1;
    }
    .scrollTop::before {
        content: "";
        position: absolute;
        border-radius: 37% 54% 46% 46%;
        transform: rotate(-75deg);
        width: 10px;
        height: 4px;
        top: 33px;
        right: 1;
    }
    .scrollTop::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        transform: rotate(-115deg);
        width: 5px;
        height: 4px;
        top: 20px;
        right: 4px;
    }

    .main-content {
        flex-direction: row; /* Nebeneinander */
        align-items: center; /* Zentriert den Slider vertikal zur Texthöhe */
        gap: 4rem;
    }

    /* Desktop: Text nach links, Slider nach rechts */
    .text-column { 
        order: 1; 
        flex: 1.2; /* Text bekommt etwas mehr Raum */
    }

    .visual-column { 
        order: 2; 
        flex: 1;
    }

    .snippets {
        width: 60%;
    }

    .cta-text {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .grad2 {
        margin: 0;
        width: 80%;
    }

/* Beginn slider from 1201px up */ 
    #slider::after {
    top: 20px;
    }
    #slider figure img {
        padding: 15px;
        box-shadow: 0 1px 10px var(--bg-color-grey) inset;
        border-radius: 50px 0;
}
/* Ende slider from 1201px up*/ 

/* Beginn artcontainer from 1201px up*/    
    /* Die Box als ruhiger Anker */
    .artcontainer {
        width: 100%;
        columns: 4;
        padding-block: 3rem;
    }
    .box {
        position: relative;
        break-inside: avoid;
        display: inline-block; /* Verhindert Spalten-Zittern */
        width: 100%;
        margin-bottom: 2.5em;
        z-index: 1;
        /* Wir ändern den Z-Index OHNE Transition, damit er sofort da ist */
        cursor: pointer;
    /* Hier keine Scale-Regel, damit das Layout nicht springt */
    }

    .box:hover {
        z-index: 999;
    }

    /* Das Thumbnail - HIER liegt die ganze Magie */
    .thum {
        position: relative;
        background-color: var(--bg-color-white);
        border-radius: 20px 0;
        padding: 10px;
        overflow: hidden; /* Wichtig für die abgerundeten Ecken und den Guard */
        
        /* 1. Hardware-Vorbereitung */
        transform: translateZ(0); 
        backface-visibility: hidden;
        will-change: transform;

        /* Hardware-Beschleunigung */
    transition: transform 0.6s ease-in-out;

        /* 2. Die EINE zentrale Transition-Regel für ALLES */
        /* Wir nutzen 'all', aber mit einer sehr sicheren Zeit
        transition: all 0.7s ease-in-out;  */
       
    }

    .thum::after {
    content: attr(data-watermark); 
    position: absolute;
    top: 20px; /* Oder unten, je nach Wunsch */
    right: 30px;
    font-family:'Comfortaa', cursive;
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    pointer-events: none; 
    z-index: 40;
}

.overlay-guard {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 30; /* Dein hoher Wert ist super */
    
    /* WICHTIG: Wir brauchen eine "echte" Fläche */
    background-color: rgba(255, 255, 255, 0.01); 
    
    
    /* Verhindert, dass der Browser das Bild darunter "sieht" */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* Deaktiviert das Standard-Kontextmenü für dieses Element */
    -webkit-touch-callout: none; 
}

    /* NUR transform und shadow im Hover ändern */
    .box:hover .thum {
        transform: scale(1.65);
        box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);

        /* WICHTIG: Damit das Bild beim Skalieren nicht "zittert", da es jetzt mehr Pixel hat */
        image-rendering: -webkit-optimize-contrast; 
    }

    /* Der Text - wir nutzen hier NUR transform */
    .dest-content {
        /* WICHTIG: Die Transition muss dieselbe Zeit wie .thum haben! */
        transition: all 0.7s ease-in-out;
        transform-origin: top center;
        transform: scale(1); /* Startwert */
    }

    .box:hover .dest-content {
        /* Gegen-Skalierung */
        transform: scale(0.6) translateY(20px);
    }

    /* Optionaler Blur-Effekt (sehr dezent, um CPU zu schonen) */
    .artcontainer:hover .box:not(:hover) .thum {
        filter: blur(1px);
        opacity: 0.7;
    }
} 
/* Ende artcontainer from 1201px up */ 


/*----- Beginn about (min-width: 1201px) ------*/

    /* Damit Name und Statement unter/über dem Bild im rechten Block bleiben */
    .imgaside {
        display: flex;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .lena {
        display: none;
        text-align: right;
        margin: 0;
        padding: 0 0 10px 0;
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #88000040;
    }
    .portrait2 {
    
        height: 70%;     
        border-radius: 50px 0;
        box-shadow: -5px -1px 30px hsla(186, 72%, 35%, 0.27);
    }
    .statement {
        text-align: center;
        padding: 0 0 1rem 0;
    }
    .angebot {
        display: flex;
        justify-content: end;
    }
    .tanzcontainer {
        width: 100%;
        columns: 4;
        padding-block: 3rem;
    }
    
/*----- Ende about (min-width: 1201px) ------*/


/*----- Beginn Footer (min-width: 1201px) ------*/

@media (min-width: 1201px) {
    footer {
        background: #fdfdfd !important;
        animation: none;
        padding-top: 0;
    }

    footer::before {
        width: 100%;
        height: 4px;
        border-radius: 0;
        background: linear-gradient(90deg, rgb(249, 186, 186), rgb(166, 166, 247));
    }

    .footer-keywords {
        display: block;
        font-size: 0.3rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #b0b0b0;
    }

    .footer-content {
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 20px;
    }

    .footer-bottom {
        width: 90%;
        border-top: 1px solid var(--bg-color-grey);
        padding-top: 20px;
    }

    .contact-links {
        flex-direction: row; /* Auf Desktop nebeneinander */
        gap: 40px;
    }

}    

/*----- Ende Footer (min-width: 1201px) ------*/

/* For large devices (desktops from 1500px) */
@media only screen and (min-width: 1500px) {
    .wrapper, .row-footer {
        width: 75%;
    }
    .artcontainer {
        columns: 5;
    }
    .card2 {
        margin-left: 5rem;
    }
}

/* For extra large devices (desktops from 1900px) */
@media only screen and (min-width: 1900px) {
    .wrapper, .row-footer {
        width: 60%;
    }
    .tanzcontainer {
        columns: 5;
    }
}

/* For super large devices (desktops from 2200px) */
@media only screen and (min-width: 2200px) {
    .wrapper {
        width: 50%;
    }
}