/* ============================================
   BASIS & VARIABLEN
   ============================================ */

:root {
    /* Container & Abstände */
    --container-max: 1100px;
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;

    /* Farben */
    --border-color: #e5e7eb;
    --muted: #696666;
    --primary-color: #4da3ff;
    --background-light: #f8f8f8;
}

/* ============================================
   RESET & GRUNDLEGENDE ELEMENTE
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: #EAE9E7;
    background: linear-gradient(to bottom, #EAE9E7 0%, #C6C6C6 100%);
    color: #000;
    font-family: Baghdad, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


/* ============================================
   UTILITY & ACCESSIBILITY CLASSES
   ============================================ */

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

:target {
    outline: none;
    outline-offset: 0;
    scroll-margin-top: 0;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   MEDIEN & INTERAKTIVE ELEMENTE
   ============================================ */

img, iframe, video {
    max-width: 100%;
    height: auto;
}

iframe {
    display: block;
    border: 0;
}

a {
    text-decoration: none;
    color: #000;
    transition: color .2s ease;
    font-size: 20px;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-skip-ink: auto;
}

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    background: #EAE9E7;
    border-bottom: 2px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    z-index: 100;
}

.header-top {
    border-bottom: 1px solid #f0f0f0;
    background: #EAE9E7;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.title-row h1 {
    font-family: Kokonor, cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
}
.title-row a:hover{
    text-decoration: none;
}

.main-nav {
    background: #EAE9E7;
}

.nav-container {
    display: flex;
    justify-content: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-content > li {
    margin: 0;
    padding: 0;
}

.nav-content a {
    display: inline-block;
    padding: 1.2rem 0.5rem;
    color: #555;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    white-space: nowrap;
}

.nav-content a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-content a.active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 3px solid var(--primary-color);
}

.nav-content a.active:focus-visible {
    outline: none;
}

.nav-content a:not(.active):hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.7;
}

/* ============================================
   HAUPINHALT (MAIN CONTENT)
   ============================================ */

main {
    padding-top: 2rem;
}

/* Studio Übersicht */
.main-content-studio-uebersicht {
    padding-top: 2rem;
    justify-content: center;
}

.main-content-studio-uebersicht h4 {
    margin-top: 40px;
}

.main-content-studio-uebersicht article {
    padding: 0 100px;
}

.studio-banner {
    display: flex;
}

.studio-banner img {
    width: 50%;
}

/* Galerie */
.main-content-galerie {
    text-align: center;
    padding-top: 2rem;
}

/* Bewertungen */
#review-container {
    padding-top: 2rem;
    width: 100%;
    text-align: center;
}

/* Team Seite */
.team-grid {
    padding-top: 1rem;
}

/* Preisliste */
body.preisliste-seite .preise {
    padding-top: 1rem;
}

/* ============================================
   SEITENSPEZIFISCHE LAYOUTS
   ============================================ */

/* GALERIE */
.bilder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 70%;
    margin: 0 auto;
}

.bilder img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bilder img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* BEWERTUNGEN */
.reviews-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: min(70%, var(--container-max));
    margin: auto;
    padding: 5px;
    align-items: start;
    gap: var(--space-4);
}

.review {
    max-width: 100%;
    text-align: left;
    margin: 0;
    padding: var(--space-3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.review-text {
    font-style: italic;
    margin: 0 0 8px;
}

.review-name {
    font-family: "Arial Unicode MS", Arial, sans-serif;
}

.rating-stars {
    color: #d4af37;
}
/* ============================================
   RECHTLICHE SEITEN STYLES
   ============================================ */

body.rechtliche-seite main {
    padding-top: 2rem;
}

.rechtliche-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem 4rem;
}

.rechtlicher-block {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.rechtlicher-block h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.rechtlicher-block h3 {
    color: #333;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.rechtliche-kategorie {
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.adresse-block,
.kontakt-block,
.rechtliche-details {
    margin-bottom: 1.5rem;
}

.datenschutz-abschnitt {
    margin-bottom: 2rem;
}

.datenschutz-abschnitt:last-child {
    margin-bottom: 0;
}

.rechte-liste {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.rechte-liste li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.external-link {
    word-break: break-all;
}


/* TEAM SEITE */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    width: min(90%, var(--container-max));
    margin: 2rem auto 4rem;
    padding: 1rem;
}

.page-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
    margin-bottom: 1rem;
}

.page-header h2 {
    margin-bottom: var(--space-3);
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.team-media {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.team-media img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
    background-color: var(--background-light);
}

.team-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.team-role {
    font-size: .95rem;
    color: var(--muted);
    margin: 0;
}

.team-bio {
    font-size: .9rem;
    color: #444;
    line-height: 1.5;
    margin-top: .5rem;
}

.team-cta {
    background-color: var(--background-light);
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.team-cta p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

/*!* PREISLISTE *!*/
/*body.preisliste-seite .preise {*/
/*    max-width: 1000px;*/
/*    margin: 28px auto 80px;*/
/*    padding: 0 16px;*/
/*}*/

/*body.preisliste-seite .preise h3,*/
/*body.preisliste-seite .preise h4,*/
/*body.preisliste-seite .preise h5 {*/
/*    text-align: center;*/
/*    margin: 0 0 .75rem 0;*/
/*}*/

/*body.preisliste-seite main li {*/
/*    text-align: left;*/
/*}*/

/*body.preisliste-seite .preise ul {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*body.preisliste-seite .preise li {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr auto;*/
/*    column-gap: 12px;*/
/*    align-items: baseline;*/
/*    padding: 6px 0;*/
/*}*/

/*body.preisliste-seite .preise .preisliste-beschreibung-text {*/
/*    min-width: 0;*/
/*}*/

/*body.preisliste-seite .preise .preisliste-preis {*/
/*    text-align: right;*/
/*    white-space: nowrap;*/
/*    font-variant-numeric: tabular-nums;*/
/*    color: inherit;*/
/*}*/

/*body.preisliste-seite {*/
/*    --preis-indent: 1.1rem;*/
/*}*/

/*body.preisliste-seite .preise li > ul {*/
/*    grid-column: 1 / -1;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*body.preisliste-seite .preise ul > ul {*/
/*    grid-column: 1 / -1;*/
/*}*/

/*body.preisliste-seite .preise ul ul li {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr auto;*/
/*    column-gap: 12px;*/
/*    align-items: baseline;*/
/*}*/

/*body.preisliste-seite .preise ul ul .preisliste-beschreibung-text {*/
/*    position: relative;*/
/*    padding-left: var(--preis-indent);*/
/*}*/

/*body.preisliste-seite .preise ul ul .preisliste-beschreibung-text::before {*/
/*    content: "•";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: .2em;*/
/*    color: #6b7280;*/
/*    font-size: .9em;*/
/*}*/

/*body.preisliste-seite .preise ul > li + li {*/
/*    border-top: 1px dashed var(--border-color);*/
/*}*/

/*body.preisliste-seite .preise > div {*/
/*    margin: 1.25rem 0 2rem;*/
/*}*/
/* ============================================
   PREISLISTE GRID STYLES
   ============================================ */

.preise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 2rem auto;
    padding: 0 1rem;
}

.preis-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.preis-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.preis-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-light);
}

.preis-card-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.preis-kategorie-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.preis-card-subtitle {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.4;
    border-left: 3px solid var(--border-color);
}

.preis-card-subtitle p {
    margin: 0;
}

/* Preis Liste */
.preis-liste {
    list-style: none;
    margin: 0;
    padding: 0;
}

.preis-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
    gap: 1rem;
}

.preis-item:hover {
    background-color: var(--background-light);
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 6px;
}

.preis-item:last-child {
    border-bottom: none;
}

.dienstleistung {
    flex: 1;
    color: #333;
    line-height: 1.4;
    font-size: 0.95rem;
}

.preis {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

.mit-zuschlag .preis {
    color: var(--muted);
    font-weight: 500;
    font-style: italic;
}

.preis-card-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--muted);
    border-left: 3px solid var(--border-color);
}

.preis-card-info.highlight {
    background: var(--background-light);
    border-left: 3px solid var(--primary-color);
}

.preis-card-info p {
    margin: 0.5rem 0;
}

.preis-card-info p:first-child {
    margin-top: 0;
}

.preis-card-info p:last-child {
    margin-bottom: 0;
}

/* Preis Optionen für Wimpern */
.preis-optionen {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.preis-option {
    flex: 1;
    min-width: 120px;
    background: var(--background-light);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.preis-option h4 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1rem;
    text-align: center;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.preis-option-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.preis-option-details:last-child {
    border-bottom: none;
}
/* Preis Tabelle Styles */
.preis-tabelle {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin: 1.5rem 0;
}

.preis-tabelle th {
    background: var(--background-light);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--border-color);
    font-size: 1rem;
}

.preis-tabelle td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.preis-tabelle tbody tr:last-child td {
    border-bottom: none;
}

.preis-tabelle td:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}

.preis-tabelle td:not(:first-child) {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Responsive für Mobile */
@media (max-width: 768px) {
    .preis-tabelle {
        font-size: 0.9rem;
    }

    .preis-tabelle th,
    .preis-tabelle td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .preis-tabelle {
        font-size: 0.85rem;
    }

    .preis-tabelle th,
    .preis-tabelle td {
        padding: 0.6rem 0.3rem;
    }
}

/* Info Bereich */
.preis-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-max);
    margin: 3rem auto;
    padding: 0 1rem;
}

.info-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.kontakt-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #333333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.button:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .preise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .preis-card {
        padding: 1.5rem;
    }

    .preis-card-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .preis-optionen {
        flex-direction: column;
        gap: 1rem;
    }

    .preis-option {
        min-width: auto;
    }

    .kontakt-links {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .preis-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .preis {
        margin-left: 0;
        align-self: flex-start;
        text-align: left;
    }

    .dienstleistung {
        font-size: 0.9rem;
    }

    .preis-card-subtitle,
    .preis-card-info {
        font-size: 0.85rem;
    }
}
/* ============================================
   FOOTER & KONTAKT
   ============================================ */

.footer-simple {
    width: min(100%, var(--container-max));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
}

.footer-section {
    width: 100%;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.contact-item {
    margin: 1rem 0;
    font-size: 1rem;
}

.contact-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #666;
}

.contact-link {
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-top: 0.25rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 300px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    text-align: left;
}

.time {
    color: var(--muted);
    text-align: right;
}

.hours-item.closed .time {
    font-style: italic;
    color: #999;
}

.footer-map {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: none;
}

.footer {
    text-align: center;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
    font-family: Kokonor, cursive;
}

.datenschutz {
    width: 100%;
    background-color: var(--muted);
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

.datenschutz p {
    margin: 0;
    color: white;
    font-size: 0.9rem;
}
/* ============================================
   FOOTER LINKS STYLES
   ============================================ */

.datenschutz {
    width: 100%;
    background-color: var(--muted);
    padding: 1rem;
    margin-top: 2rem;
    color: white;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: center; /* sorgt für zentrierten Inhalt */
    position: relative; /* erlaubt exaktes Positionieren der Social Media-Icons */
}

/* Social Media linksbündig */
.social-media {
    position: absolute;
    right: 1rem;
    margin: 0;
}

.social-media img {
    width: 30px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Info-Text zentriert */
.footer-info {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
}

.datenschutz a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.datenschutz a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* RESPONSIVE Anpassungen */
@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        position: static;
        text-align: center;
        gap: 0.5rem;
    }

    .social-media {
        position: static;
        margin-bottom: 0.5rem;
    }

    .social-media img {
        width: 35px;
    }
}

/* ============================================
   GALERIE LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.mehr-button {
    display: block;
    margin: 40px auto;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 163, 255, 0.3);
}

.mehr-button:hover {
    background-color: #6ab5ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 163, 255, 0.4);
}

.mehr-button:active {
    transform: translateY(0);
}

.mehr-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================
   LAZY LOADING & PERFORMANCE
   ============================================ */

.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: #f8f8f8;
    border-radius: 6px;
}

.lazy-image.loaded {
    opacity: 1;
}

.lightbox-loading {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    z-index: 10002;
}

.lightbox-loading.active {
    display: block;
}

.lightbox-img.blur {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.lightbox-img.sharp {
    filter: blur(0);
}

/* Performance Optimierungen */
.bilder img {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.bilder img:hover {
    transform: scale(1.05) translateZ(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox-img {
    transform: translateZ(0);
    will-change: transform, opacity;
}

/* ============================================
   MODALS & OVERLAYS
   ============================================ */

.modal-backdrop[hidden] {
    display: none !important;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: grid;
    place-items: center;
    padding: 1rem;
    z-index: 9999;
}

.modal-window {
    width: min(940px, 100%);
    max-height: 90vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
    display: flex;
    flex-direction: column;
    outline: none;
}

.modal-header,
.modal-footer {
    padding: 1rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    border-bottom: none;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    margin-left: auto;
}

.modal-body {
    padding: 1rem;
    overflow: auto;
}

.modal-body h3 {
    margin: 1rem 0 .25rem;
    font-size: 1.1rem;
}

.modal-body p,
.modal-body li {
    color: var(--muted);
}

.modal-body ul {
    margin: .25rem 0 1rem;
    padding-left: 1.2rem;
}

.privacy-updated {
    margin-top: 1rem;
    font-size: .9rem;
    color: #888;
}

.button {
    display: inline-block;
    padding: .6rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--background-light);
    cursor: pointer;
}

.button:hover {
    background: #f1f5f9;
}

.button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 1rem;
    font-size: .9rem;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-banner button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-banner button:hover {
    background: #6ab5ff;
}

.site-legal {
    width: min(100%, var(--container-max));
    margin: 0.5rem auto 2rem;
    padding: 0 var(--space-4);
    text-align: center;
    color: #666;
}

.link-like {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
}

.link-like:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* HEADER RESPONSIVE */
@media (max-width: 900px) {
    .header-container {
        padding: 1.2rem 1.5rem;
    }

    .title-row h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-content {
        gap: 2rem;
    }

    .nav-content a {
        font-size: 1rem;
        padding: 1rem 0.3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .title-row h1 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-content {
        gap: 1.5rem;
        justify-content: center;
    }

    .nav-content a {
        font-size: 0.95rem;
        padding: 0.8rem 0.2rem;
    }
}

@media (max-width: 600px) {
    .nav-content {
        gap: 1rem;
    }

    .nav-content a {
        font-size: 0.9rem;
        padding: 0.7rem 0.1rem;
    }

    .title-row h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .nav-content {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-content li {
        width: 100%;
        text-align: center;
    }

    .nav-content a {
        display: block;
        padding: 0.8rem 0.5rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-content a.active {
        border-bottom: 3px solid var(--primary-color);
    }
}

/* STUDIOÜBERSICHT RESPONSIVE*/
@media (max-width: 480px) {
    .main-content-studio-uebersicht article {
        padding: 0 20px;
    }

}

/* GALERIE RESPONSIVE */
@media (max-width: 768px) {
    .bilder {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 96%;
    }
}

@media (max-width: 480px) {
    .bilder {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* BEWERTUNGEN RESPONSIVE */
@media (max-width: 760px) {
    .reviews-row {
        grid-template-columns: 1fr;
        width: min(92%, var(--container-max));
    }
}

/* TEAM RESPONSIVE */
@media (max-width: 600px) {
    .team-media img {
        width: 120px;
        height: 120px;
    }

    .team-name {
        font-size: 1.1rem;
    }

    .team-bio {
        font-size: .85rem;
    }
}

/* LIGHTBOX RESPONSIVE */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        width: 50px;
        height: 50px;
        font-size: 35px;
        top: 15px;
        right: 15px;
    }

    .mehr-button {
        padding: 12px 30px;
        font-size: 16px;
        margin: 30px auto;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .mehr-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* FOOTER RESPONSIVE */
@media (max-width: 800px) {
    .footer-container {
        flex-direction: column;
        gap: var(--space-6);
    }

    footer .left-side,
    footer .middle-side,
    footer .right-side {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .middle-side li {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .middle-side li div:last-child {
        justify-self: start;
        padding-left: .75rem;
    }
}

/* SIMPLE FOOTER RESPONSIVE */
@media (min-width: 768px) {
    .footer-simple {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: left;
    }

    .footer-section {
        text-align: left;
    }

    .opening-hours {
        margin: 0;
        max-width: none;
    }

    .footer-map {
        height: 200px;
    }

    .footer-section:last-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .footer-simple {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
    }

    .footer-section:last-child {
        grid-column: auto;
    }

    .footer-map {
        height: 250px;
    }
}

@media (min-width: 1024px) {
    .footer-simple {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
        align-items: start;
    }

    .footer-section:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-section:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        margin-top: 0;
    }

    .footer-section:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-section:nth-child(4) {
        grid-column: 3;
        grid-row: 1;
    }

    .opening-hours {
        margin: 0;
        max-width: none;
    }

    .footer-map {
        height: 300px;
    }

    .footer-section:nth-child(1),
    .footer-section:nth-child(2) {
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .footer-simple {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .footer-section:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .footer-section:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-section:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .footer-section:nth-child(4) {
        grid-column: 3 / span 2;
        grid-row: 1 / span 2;
    }

    .footer-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .footer-simple {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    .hours-item {
        font-size: 0.9rem;
    }

    .footer-map {
        height: 200px;
    }

    .footer {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.5rem 0;
    }
}

/* TABLET OPTIMIERUNG */
@media (max-width: 1100px) {
    .header-container {
        padding: 1rem;
    }
}
/* Responsive Design für rechtliche Seiten */
@media (max-width: 768px) {
    .rechtlicher-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .rechtliche-content {
        padding: 0 0.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .rechtlicher-block {
        padding: 1rem;
    }

    .rechtlicher-block h2 {
        font-size: 1.3rem;
    }
}