@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Paytone+One&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* -- Font Mulish auch gut ----- */
* {
	padding: 0; 
	margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 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-family: 'Poppins', sans-serif;
    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;
}
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;
}
.imgheader {
    width: 40%;
    margin: 10px 0 0 5px;
    border-radius: 20px 0;
    border: 1px hsla(0, 0%, 100%, 0.4) solid;
}
.ffm {
    display: none;
}
.lena-1 {
    display: none;
    position: fixed;
    top: 25px;
    left: 16px;
    margin: 0 auto;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: hsla(0, 1%, 27%, 0.2);
}
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, li.nav {
    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;
}
.h1-tel {
    margin-top: 10px;
    padding: 0 0 5px 0;
}
.h1-tel p {
    text-align: center;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.tel {
    font-size: 1rem;
    letter-spacing: 0.01rem;
    padding: 0 0 0 5px;
    font-weight: 500;
}

/* ------------- 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: 2rem 1rem;
    animation: fadeInUp 1.2s ease-out forwards;
}

/* --- Beginn Main Content Wrapper (Tausch-Logik) --- */
.main-content {
    display: flex;
    flex-direction: column; /* Mobile: Untereinander */
    gap: 2rem;
}

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


/* --- 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;
}
.snippet-box {
    padding: 20px 0; /* Abstand nach oben und unten für die Luft */
}
    /* 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);
    cursor: pointer;
}
.thum img {
    width: 100%;
    height: auto;
    padding: 0.6em;
    border-radius: 20px 0;
    box-shadow: 0 0 5px var(--bg-color-hellgrau);
}
.thum h3 {
    position: absolute;
    font-size: 30px;
    font-weight: 500;
    text-align: right;
    color: var(--bg-color-white);
    bottom: 5px;
    right: 5px;
}
.dest-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.location {
    width: 99%;
}
.location p {
    padding-left: 15px;
}
/* --- Ende artcontainer ---*/


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

#slider {
    overflow: hidden;
}
#slider figure {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500%;
    left: 0;
    animation: 20s slider infinite;
}
#slider figure img {
    width: 20%;
    float: left;
    margin: 0 0 auto 0;
}

@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 ------*/


/* ------------- Footer up to 1200px ---------------- */
footer {
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 20px var(--bg-color-hellgrau);
    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: 120% 100%;
    animation: colorFbg 10s ease-in-out infinite;
}
footer::before {
    position: inherit;
    content: "";
    height: 3px;
    width: 12rem;
    top: 0;
    background-color: var(--bg-color-grey);
    border-radius: 50%;
    margin: 30px auto;
}
.largeBox {
    display: none;
}
.keywords {
    text-align: center;
    font-size: 0.65rem; /* Rem ist oft stabiler als em */
    color: #b0b0b0;
    text-transform: uppercase; /* Wirkt wie ein Label oder eine Marke */
    letter-spacing: 2px;       /* Gibt der Schrift Luft zum Atmen */
    line-height: 2;
    max-width: 80%;            /* Damit es nicht an die Ränder klatscht */
    margin: 0 auto;
}
.row-footer{
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
}
.list {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 30px 0 0 0;
    align-items: center;
}
.p-footer {
    padding: 10px 0;
    text-align: center;
    line-height: 2;
}
.list ul.ul-footer {
    display: flex;
    flex-direction: column;
    padding: 0 0 1rem 0;
}
.list ul.ul-footer li {
    width: 100%;
    margin: 0 0 5px 0;
    text-align: center;
    transition: ease .3s;
}s
.copyright-p {
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8em;
}
.copyright-p::before {
    display: flex;
    position: relative;
    content: "";
    height: 3px;
    width: 8rem;
    top: 0;
    background-color: var(--bg-color-grey);
    border-radius: 50%;
    margin: 0 auto 30px auto;
}

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


.scrollTop {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 600px;
    right: 10px;
    border-radius: 0 50% 50% 50%;
    background: url(/bilder/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;
}
.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. */
}

/* -- Tabelle für mobile -- */

@media screen and (max-width: 768px) {
    /* Die Tabelle selbst versteckt ihre Rahmen */
    table, thead, tbody, th, td, tr {
        display: block;
        border: none;
    }

    /* Den echten Tabellenkopf (Motiv, Preis, Größe) verstecken wir */
    thead tr, th, .rad-oben-links {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    table {
        box-shadow: none;
    }

    tr {
        margin-bottom: 1.5rem;
        background: #fff;
        border-radius: 20px 0; /* Dein Stil! */
        border: 1px solid var(--color-lila) !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 10px;
    }

    td {
        /* Jede Zelle verhält sich wie eine Zeile in der Karte */
        position: relative;
        padding-left: 50% !important; /* Platz für das Label links */
        text-align: right !important;
        border-bottom: 1px solid #eee !important;
        width: 100% !important;
        text-indent: 0 !important;
    }

    td:last-child {
        border-bottom: none !important;
    }

    /* Hier kommt die Magie: Wir holen das data-label hervor */
    td::before {
        content: attr(data-label); /* Holt sich "Motiv", "Preis" etc. */
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        /* color: #FFAA66; */
    }
}

/* -- Ende Tabelle für mobile -- */



/* --- 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 */
        text-align: center;
    } 
}

/* --- 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 ---------------- */
    header {
        /* position: sticky; */
        flex-direction: row;
        justify-content: center;
        height: auto;
        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: 100%;
    width: 1200px; /* Exakt wie dein 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;
    }
    .imgheader {
        display: block;
        width: 100%;
        max-width: 250px;
        height: 100%;
    }
    .ffm {
        position: relative;
        left: 0;
        font-size: var(--h1-font);
        font-weight: 300;
        padding: 15px 0 0 0;
        margin: 0 auto;
        letter-spacing: 1.7pt;
	}
    .lena-1 {
        display: none;
    }
    nav {
        display: flex;
        width: 75%;
        flex-direction: column;
        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;
        border-radius: 0;
        box-shadow: none;
        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;
        transition: ease .3s;
    }
    li {
        margin: 1rem 0 0 0;
        border-radius: 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;
        margin: 10px 0;
        padding: 5px 0;
    }
    .tel {
        display: flex;
        position: relative;
        text-align: right;
        padding-right: 40px;
        font-size: var(--h1-font);
    }

    /* -------------  Wrapper ---------------- */

     .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(/bilder/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 {
        display: flex;
        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;
    }

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

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


@media only screen and (min-width: 1201px) {
/* Beginn artcontainer */    
    /* 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 */
    }

    .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;
        
        /* 1. Hardware-Vorbereitung */
        transform: translateZ(0); 
        backface-visibility: hidden;
        will-change: transform;

        /* 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; 
    }

    /* NUR transform und shadow im Hover ändern */
    .box:hover .thum {
        transform: scale(1.5);
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    }

    /* 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.67) translateY(15px);
    }

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

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


    table {
        width: 90%;
        margin: 0 auto 1.5rem auto;
    }
    th, td {
        padding-left: 20px;
    }

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


/*----- 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: right;
        padding: 0 0 1rem 0;
    }
    .angebot {
        display: flex;
        justify-content: end;
    }
    
/*----- Ende about (min-width: 1201px) ------*/


    
/* -------------  Footer ---------------- */

    @media only screen and (min-width: 1201px) {
    footer {
        /* Wir stoppen die Animation und nutzen einen fast weißen, edlen Look */
        background: #fdfdfd !important; /* Ein Hauch von Wärme, fast Weiß */  
        /* Statt Farben nutzen wir eine dezente Linie als Trennung */  
        padding-top: 0px;
        padding-bottom: 30px;
    }

    /* Optionale Idee: Nur eine ganz feine, bunte Linie ganz oben am Footer */
    footer::before {
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        border-radius: 0;
        background: linear-gradient(90deg, rgb(249, 186, 186), rgb(166, 166, 247));
        margin-top: 0;
        margin-bottom: 15px;
    }
    .largeBox {
        display: block;
        padding: 0;
        margin-bottom: 30px;
        }
    .largeBox ::after {
        display: flex;
        position: relative;
        content: "";
        height: 3px;
        width: 12rem;
        bottom: -20px;
        background-color: var(--bg-color-grey);
        border-radius: 50%;
        margin: 0 auto 30px auto;
    }
    .row-footer {
        flex-direction: row;
        justify-content: space-around;
        width: 90%;
        margin: 5px auto;
        padding: 10px 0;
        border-radius: 0;
        box-shadow: none;
    }
    .row-footer:last-child::before {
        content: "";
        position: absolute;
        height: 1px;
        width: 30rem;
        top: -5px;
        background: var(--text-color);
    }
    .list {
        width: 40%;
        padding: 0;
        box-shadow: none;
    }
    .list:first-child {
        width: 65%;
    }
    .list ul.ul-footer {
        flex-direction: row;
        width: 80%;
        padding: 0;
    }
    .list ul.ul-footer li {
        margin: 5px 5px 5px 0;
        padding: 0;
        letter-spacing: 1px;
    }
    .h4-footer {
        padding: 0 0 0 50px;
    }
    .p-footer {
        padding: 0;
        /* color: var(--text-color); */
        font-size: var(--p-font);
    }
    .list ul.ul-footer a {
        width: 100%;
        color: var(--text-color);
    }
    .list ul.ul-footer li a:is(:hover, :focus) {
        border-radius: 60px 0 100px 0;
        box-shadow: 5px 1px 13px var(--bg-color-grey);;
        transition: ease .3s;
    }
    .copyright-p {
        padding-bottom: 20px;
        font-weight: 400;
        font-size: 0.9em;
        letter-spacing: 0.05em;
        text-align: left;
    }
    .copyright-p::before {
        display: flex;
        position: relative;
        content: "";
        height: 3px;
        width: 12rem;
        top: 0;
        border-radius: 50%;
        margin: 0 auto 30px auto;
    }
}

/* 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%;
    }
}

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