* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #fdfbf9;
    max-width: 100%;
    overflow-x: hidden;
    font-family: Inter !important;
    text-rendering: optimizelegibility !important
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #fff5fa;
    border-bottom: 2px solid #f4e1ec;
    flex-shrink: 0;
}

.header-left img {
    height: 100px;
}

.header-right {
    text-align: right;
    color: #4a4a4a;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    transition: font-weight 0.4s cubic-bezier(0, 0, .2, 1);
}

.header-right p {
    margin: 5px 0;
}

.header-right a {
    color: #4a4a4a;
    text-decoration: none;
    margin-left: 5px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.header-right a:hover {
    font-weight: 600;
    color: #AF0A7F;
}

.visitenkarte {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #FF6B6B, #D8A9C4);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.visitenkarte:hover {
    background: linear-gradient(45deg, #D60B92, #FF6B6B);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.visitenkarte a {
    color: #f0f0f0;
    text-decoration: none;
}

/* Preis-Text Container */
.price-text {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
}

.welcome-text {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.welcome-text h2 {
    margin-bottom: 1.5rem;
    color: #AF0A7F;
    text-decoration: none;
}

.welcome-text h3 {
    margin-bottom: 1rem;
    color: #D8A9C4;
    text-decoration: none;
}

.welcome-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.material-icons {
    vertical-align: middle;
    font-size: 20px;
    color: #4a4a4a;
    margin-right: 5px;
    margin-left: 10px;
    user-select: none;
}

.material-icons:first-child {
    margin-left: 0;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 700,
  'GRAD' 0,
  'opsz' 24;
  color: #AF0A7F;
  margin-bottom: 1rem;
  font-size: 30px;
  user-select: none;
}

/* Signature */
.signature {
    position: relative;
    overflow: hidden;
}

.signature img {
    width: 400px;
    height: auto;
    border-radius: 50%;
    margin-right: 1rem;
    margin-bottom: 0;
    font-size: 1.2rem;
    clip-path: inset(0 0 15% 0);
    user-select: none;
}

.signature::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20%;
    height: 5px;
    background: linear-gradient(to right, transparent, #AF0A7F, transparent);
}

.signature p {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
}

/* Navigation styling */
nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D8A9C4;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5em;
    color: #fff;
    font-weight: bold;
}

/* Overlay für das Burger-Menü */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin: 0 0.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1rem;
    display: block;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    transition: font-weight 0.4s cubic-bezier(0, 0, .2, 1);
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-weight: 600;
}

.dropdown {
    position: absolute;
    background-color: #D8A9C4;
    top: 100%;
    left: 0;
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
}

.dropdown li {
    margin: 0;
    width: 100%;
}

.dropdown a {
    padding: 0.8rem 1rem;
    display: block;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.curious {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    text-align: center;
    padding: 0 20px;
}

.curious h1 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 700;
    min-height: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    background: linear-gradient(to right, #F2B9C0, #D8A9C4, #AF0A7F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.curious p {
    color: rgb(163 163 163);
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 75%;
    text-align: center;
}

/* Burger menu for mobile */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger .material-icons {
    color: white;
    font-size: 2rem;
}

/* Main content styling */
h1 {
    text-align: center;
    margin: 2rem 0;
    color: #4a4a4a;
}

h3 {
    color: #4a4a4a;
    margin-bottom: 1rem;
}

section {
    flex: 1 0 auto;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    flex-shrink: 0;
}

/* Erklärungsseite der Methoden */
main.procedure {
    flex: 1;
    padding: 20px;
}

.procedure {
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
}

.procedure h1 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 10px;
    margin-bottom: 1.5rem;
}

.procedure h2 {
    color: #D8A9C4;
    margin-bottom: 1rem;
}

.procedure p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.procedure ul {
    font-size: 1.1em;
    line-height: 1.6;
    list-style-type: disc;
    padding-left: 20px;
}

.procedure li {
    margin-bottom: 8px;
    color: #4a4a4a;
}

/* Maps-spezifische procedure */
.procedure-maps {
    margin: 3rem auto;
    padding: 1rem;
    background-color: #FFF5FA;
    border: 2px solid #FCD2DB;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(252, 210, 219, 0.3);
    overflow: hidden;
    width: 100%;
}

.procedure-maps h3 {
    color: #AF4A90;
    margin-bottom: 1rem;
    text-align: center;
}

/* Auflistung verschiener Dinge in Containern */

.procedure-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.procedure-list a {
    color: #D8A9C4;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.procedure-list li {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(33.333% - 1rem);
    text-align: center;
    list-style-type: none;
}

.procedure-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.procedure-list li h3 {
    color: #D8A9C4;
    margin-bottom: 0.5rem;
}

.procedure-list li p {
    color: #4a4a4a;
    font-size: 1rem;
    line-height: 1.6;
}

/* Akupunktur Abschnitt */
.acupuncture {
    padding: 2rem;
    background-color: #f0f0f0;
    max-width: 70%;
}

.acupuncture h1 {
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.acupuncture-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.acupuncture-type {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.acupuncture-type h2 {
    color: #D8A9C4;
    margin-bottom: 1rem;
}

.acupuncture-type p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

.acupuncture-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Kinesiologisches Tape Abschnitt */
.kinesiologische-tape {
    padding: 2rem;
    background-color: #f0f0f0;
}

.kinesiologische-tape h1 {
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.tape-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.tape-text {
    flex: 2 1 500px;
}

.tape-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.tape-text h2 {
    color: #D8A9C4;
    margin-bottom: 1rem;
}

.tape-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.tape-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.75rem;
    color: #333;
    transition: color 0.3s;
}

.tape-list li:hover {
    color: #D8A9C4;
}

/* Yoga specific styles */
.yoga-content {
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 5px;
    max-width: 70%;
    margin: 0 auto;
}

.yoga-content h1 {
    text-align: center;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.yoga-content h2 {
    color: #D8A9C4;
    margin-bottom: 1rem;
}

.yoga-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.phase-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.phase-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
}

.phase-card .material-icons {
    font-size: 3rem;
    color: #D8A9C4;
    margin-bottom: 1rem;
}

.phase-card h3 {
    color: #D8A9C4;
    margin-bottom: 1rem;
}

.benefits-section,
.mental-section {
    margin: 3rem 0;
}

.benefits-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.benefits-text {
    flex: 2;
}

.benefits-image {
    flex: 1;
    max-width: 300px;
    border-radius: 10px;
}

.note {
    text-align: center;
    margin: 3rem 0;
    font-style: italic;
}

.source {
    font-size: 0.9em;
    color: #666;
}

/* Bildercarousel */
.carousel {
    position: relative;
    width: 50%;
    max-width: 1200px;
    height: 800px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel img.active {
    opacity: 1;
}

/* Impressum styles */
.impressum {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.impressum h1 {
    color: #AF0A7F;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f4e1ec;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.impressum-section {
    background-color: #fff5fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #AF0A7F;
}

.impressum-section h2 {
    color: #8C085F;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.impressum-section p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.impressum-section p:last-child {
    margin-bottom: 0;
}

.impressum .material-icons {
    color: #AF0A7F;
    font-size: 24px;
}

.impressum-section ul {
    padding: 0;
}

.impressum-section ul li {
    margin-bottom: 0.5rem;
    margin-left: 1rem;
    color: #4a4a4a;
}

footer {
    background-color: #fff5fa;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid #f4e1ec;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #AF0A7F;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #4a4a4a;
    text-decoration: none;
    transition: font-weight 0.4s cubic-bezier(0, 0, .2, 1);
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.footer-section a:hover {
    font-weight: 600;
}

.footer-section p {
    color: #4a4a4a;
    line-height: 1.6;
}

.footer-section address {
    font-style: normal;
    color: #4a4a4a;
    line-height: 1.6;
}

.footer-section .material-icons {
    font-size: 18px;
    color: #AF0A7F;
}

.social-links {
    border-top: 1px solid #f4e1ec;
}

/* Preis Seite Styles */
.prices {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.prices h2 {
    color: #AF0A7F;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.price-card {
    background-color: #fff5fa;
    border: 1px solid #f4e1ec;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.price-card .material-icons {
    font-size: 40px;
    color: #AF0A7F;
    margin-bottom: 1rem;
}

.price-card h3 {
    color: #8C085F;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.price-card p {
    color: #4a4a4a;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.price-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #AF0A7F;
}

.gift-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background-color: #fdfbf9;
    border: 2px dashed #AF0A7F;
    border-radius: 8px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.gift-section .material-icons {
    font-size: 36px;
    color: #AF0A7F;
    margin-bottom: 1rem;
    display: block;
}

.gift-section p {
    color: #4a4a4a;
    font-size: 1.1rem;
}

/* Kontaktdaten */
.contact-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item p {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-item .material-icons {
    font-size: 2rem;
    color: #AF0A7F;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-method {
    padding: 1rem;
}

.contact-method .material-icons {
    font-size: 3rem;
    color: #AF0A7F;
    margin-bottom: 1rem;
}

.contact-link {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1.2rem;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    transition: font-weight 0.4s cubic-bezier(0, 0, .2, 1);
}

.contact-link:hover {
    font-weight: 600;
    color: #AF0A7F;
}

.copyright {
    text-align: center;
    padding: 1rem;
    background-color: #fff5fa;
    border-top: 2px solid #f4e1ec;
    color: #4a4a4a;
    opacity: 0;
    pointer-events: none;
}

.copyright a {
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Responsives Design */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .welcome-text {
        padding: 1rem;
        text-align: justify;
    }

    section {
        padding: 1rem;
    }

    nav {
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #D8A9C4;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #fff;
        position: relative;
    }

    .nav-links li a {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-links li .dropdown {
        display: none;
        flex-direction: column;
        background-color: #f9cbd9;
    }

    .nav-links li.active .dropdown {
        display: flex;
        animation: fadeIn 0.3s ease-in;
    }

    .burger {
        display: block;
        margin: 0.5rem 1rem;
    }

    /* Indikator für ein Untermenü */
    .nav-links li.has-dropdown>a::after {
        content: '▼';
        font-size: 0.8rem;
        margin-left: auto;
        transition: transform 0.3s;
    }

    .nav-links li.active>a::after {
        transform: rotate(180deg);
    }

    /* Dropdown Anpassungen */
    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #f9cbd9;
        box-shadow: none;
        padding: 0;
    }

    .dropdown li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown a {
        padding: 0.8rem 2rem;
        color: #4a4a4a;
    }

    .nav-links li.active .dropdown {
        display: block;
    }

    .nav-links li:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-right {
        margin-top: 1rem;
    }

    .header-right p {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header-right a {
        display: inline-block;
        margin-left: 0;
    }

    .header-left img {
        height: 80px;
    }

    .impressum {
        margin: 1rem;
        padding: 1rem;
    }

    .impressum h1 {
        font-size: 1.5rem;
    }

    .impressum-section {
        padding: 1rem;
    }

    .prices {
        padding: 0 1rem;
    }

    .price-card {
        padding: 1rem;
    }

    .price-card .material-icons {
        font-size: 30px;
    }

    .price-card h3 {
        font-size: 1.2rem;
    }

    .price-card .price {
        font-size: 1rem;
    }

    .tape-content {
        flex-direction: column;
        text-align: center;
    }

    .tape-text {
        flex: 1 1 100%;
    }

    .tape-list li {
        padding-left: 25px;
        text-align: left;
    }

    .benefits-content {
        flex-direction: column;
    }

    .benefits-image {
        width: 100%;
        max-width: 100%;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .carousel {
        width: 80%;
        height: 200px;
    }

    .signature img {
        width: 90%;
        max-width: 250px;
        margin: 0 auto -2rem;
        display: block;
    }

    .signature::after {
        bottom: 20%;
        height: 3px;
    }

    /* Animation */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            max-height: 0;
        }

        to {
            opacity: 1;
            max-height: 500px;
        }
    }
}

@media print {

    nav,
    footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Nur auf dem Desktop sichtbar */
@media screen and (min-width: 1024px) {

    body::before,
    body::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background-repeat: no-repeat;
        background-size: contain;
        opacity: 0.8;
        pointer-events: none;
    }

    /* Linker Baumzweig - nur auf der Hauptseite sichtbar */
    .home-page::before {
        background-image: url('/img/cherry-blossom-branch-left.svg');
        left: 110px;
        top: 0;
        opacity: 0.5;
        scale: 2.5;
        transform: translateY(650px);
    }

    /* Rechter Baumzweig im Header */
    body::after {
        background-image: url('/img/cherry-blossom-branch.svg');
        right: 40px;
        top: 160px;
        opacity: 0.6;
        scale: 2.5;
        z-index: 1000;
        max-width: 100vw;
    }

    .header-right {
        margin-right: 200px;
    }

    .copyright {
        opacity: 1;
        pointer-events: auto;
    }
}