:root {
    --bg: #000;
    --text: #fff;
    --muted: #e9e9e9;
    --pink: #f04be8;
    --pink-strong: #ff00dd;
    --panel: rgba(0, 0, 0, 0.86);
    --border: rgba(240, 75, 232, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at center, #000 0 42%, rgba(55, 0, 50, .95) 60%, #fa00dc 120%),
        #000;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 0 50%, rgba(240, 75, 232, .18) 78%, rgba(240, 75, 232, .4) 100%);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    min-height: 92px;
    padding: 14px clamp(18px, 5vw, 70px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(0,0,0,.88);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.brand img { width: 185px; max-width: 42vw; display: block; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: .25s;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--pink);
    text-shadow: 0 0 12px var(--pink);
}

.menu-toggle {
    display: none;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 24px;
}

main { padding: 135px clamp(22px, 7vw, 110px) 70px; min-height: calc(100vh - 80px); }

.hero {
    display: grid;
    place-items: center;
    text-align: center;
}

.hero-logo { width: min(720px, 88vw); margin-bottom: 55px; }
.hero h1 { font-size: clamp(48px, 9vw, 118px); line-height: .9; text-transform: uppercase; }
.hero .script { display: block; color: var(--pink); font-family: cursive; font-size: clamp(46px, 7vw, 90px); text-transform: none; text-shadow: 0 0 20px var(--pink); margin-top: -12px; }
.hero p { margin: 30px 0 10px; font-size: clamp(22px, 3vw, 34px); }
.hero small { color: var(--pink); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }

.actions { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.btn, button[type="submit"] {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 34px;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    border: 1px solid var(--pink);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: .25s;
}
.btn.primary, button[type="submit"] { background: linear-gradient(90deg, #7d0b6f, var(--pink-strong)); box-shadow: 0 0 18px rgba(240,75,232,.75); }
.btn:hover, button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(240,75,232,.85); }

.page-logo { display: block; width: min(250px, 50vw); margin: 0 auto 70px; }
.page-title { text-align: center; margin-bottom: 60px; }
.page-title .overline { display: block; font-size: clamp(32px, 5vw, 60px); font-weight: 300; text-transform: none; }
.page-title h1, .page-title { font-size: clamp(48px, 8vw, 88px); line-height: 1; text-transform: uppercase; font-weight: 900; }

.black-card {
    width: min(1040px, 100%);
    margin: 0 auto;
    padding: clamp(34px, 6vw, 78px);
    background: var(--panel);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 36px;
    box-shadow: 0 0 70px rgba(0,0,0,.9), 0 0 60px rgba(240,75,232,.14);
}

.price-section { margin-bottom: 62px; }
.price-section:last-child { margin-bottom: 0; }
.price-section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 22px; }
.price-section h2 span { font-weight: 400; font-size: .78em; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: baseline; padding: 8px 0; font-size: clamp(23px, 3.2vw, 36px); }
.price-row .item::before { content: "•"; margin-right: 14px; }
.price-row .price { white-space: nowrap; }

.total-note { text-align: center; margin-top: 70px; font-size: clamp(24px, 3vw, 34px); }
.total-note strong { display: block; margin-bottom: 8px; }

.design-list { width: min(760px, 100%); margin: 0 auto; }
.design-list .price-row { font-size: clamp(24px, 3.5vw, 38px); }
.design-list .item::before { content: none; }

.service-list { text-align: center; font-size: clamp(31px, 4.3vw, 48px); line-height: 1.8; }
.service-list hr { width: min(460px, 75%); margin: 32px auto; border: 0; border-top: 2px solid var(--muted); }

.locations, .parking { text-align: center; }
.pin { color: var(--pink); font-size: 76px; line-height: 1; margin-bottom: 18px; }
.location-block, .parking-block { margin: 56px 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.35; }
.parking-block h2 { color: var(--pink); font-size: clamp(34px, 4vw, 48px); margin-bottom: 16px; }

.booking-form {
    width: min(620px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 16px;
}
input, select, textarea {
    width: 100%;
    padding: 16px;
    color: var(--text);
    background: #080808;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
}
textarea { min-height: 140px; resize: vertical; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid .placeholder {
    min-height: 250px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(240,75,232,.12), rgba(255,255,255,.04));
}
.about-text { max-width: 820px; margin: 0 auto; text-align: center; font-size: clamp(22px, 3vw, 32px); line-height: 1.65; }
.signature { margin-top: 28px; color: var(--pink); font-family: cursive; font-size: clamp(40px, 5vw, 62px); text-shadow: 0 0 14px var(--pink); }

.site-footer {
    position: relative;
    z-index: 10;
    padding: 22px clamp(22px, 5vw, 70px);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--border);
    color: #d8d8d8;
    background: rgba(0,0,0,.75);
}

@media (max-width: 950px) {
    .menu-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 18px 24px 26px;
        background: rgba(0,0,0,.96);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: center;
    }
    .main-nav.open { display: flex; }
    main { padding-top: 125px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .site-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
    .price-row { grid-template-columns: 1fr; gap: 2px; }
    .price-row .price { padding-left: 34px; }
    .black-card { border-radius: 24px; }
}

/* Responsive Ergänzungen */
img, svg, video {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
}

.main-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 1200px) {
    .site-header {
        gap: 16px;
    }

    .brand img {
        width: 160px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 11px;
    }
}

@media (max-width: 950px) {
    .site-header {
        min-height: 78px;
        padding: 12px 20px;
    }

    .brand img {
        width: 145px;
        max-width: 58vw;
    }

    .main-nav a {
        font-size: 14px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    main {
        padding: 112px 20px 55px;
    }

    .hero-logo {
        width: min(520px, 88vw);
        margin-bottom: 38px;
    }

    .page-logo {
        width: min(210px, 54vw);
        margin-bottom: 42px;
    }

    .page-title {
        margin-bottom: 42px;
    }

    .black-card {
        padding: 34px 24px;
    }

    .location-block,
    .parking-block {
        margin: 42px 0;
    }
}

@media (max-width: 700px) {
    .actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    button[type="submit"] {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .price-section {
        margin-bottom: 44px;
    }

    .service-list {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.65;
    }

    .gallery-grid .placeholder {
        min-height: 210px;
    }
}

@media (max-width: 620px) {
    .page-title .overline {
        font-size: clamp(26px, 8vw, 38px);
    }

    .page-title h1,
    .page-title {
        font-size: clamp(38px, 12vw, 56px);
    }

    .black-card {
        width: 100%;
        border-radius: 22px;
        padding: 30px 18px;
    }

    .price-row {
        font-size: clamp(19px, 6vw, 26px);
        padding: 10px 0;
    }

    .price-row .item::before {
        margin-right: 8px;
    }

    .price-row .price {
        padding-left: 25px;
        font-weight: 700;
        color: var(--pink);
    }

    .design-list .price-row {
        font-size: clamp(19px, 6vw, 27px);
    }

    .pin {
        font-size: 58px;
    }

    .location-block,
    .parking-block {
        font-size: clamp(24px, 7vw, 34px);
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .site-header {
        padding: 10px 14px;
    }

    .brand img {
        width: 125px;
    }

    .menu-toggle {
        font-size: 21px;
        padding: 7px 10px;
    }

    main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero h1 {
        font-size: clamp(42px, 15vw, 54px);
    }

    .hero .script {
        font-size: clamp(38px, 14vw, 50px);
    }

    .black-card {
        padding: 26px 14px;
    }

    .site-footer {
        font-size: 13px;
    }
}


/* Footer wie Referenzbild */
.footer-clean {
    margin-top: 95px;
    padding: 54px 0 28px;
    background: #000;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.07);
}

.footer-clean-inner,
.footer-clean-bottom {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

.footer-clean-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 10vw, 190px);
    align-items: start;
    min-height: 265px;
}

.footer-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3vw, 39px) !important;
    line-height: 1.05;
    font-weight: 900;
    color: #fff;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
}

.footer-cta p {
    margin: 0 0 38px;
    color: #fff;
    font-size: clamp(17px, 1.8vw, 23px) !important;
    line-height: 1.35;
    font-weight: 800;
}

.footer-clean-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 52px;
    padding: 0 34px;
    background: linear-gradient(90deg, #7d0b6f, #ff2bd6);
    border: 1px solid rgba(255,43,214,.85);
    border-radius: 7px;
    color: #fff;
    text-decoration: none;
    font-size: 15px !important;
    font-weight: 800;
    box-shadow: 0 0 16px rgba(255,43,214,.38);
    transition: .25s ease;
}

.footer-clean-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(255,43,214,.65);
}

.footer-contact {
    justify-self: start;
}

.footer-contact h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(18px, 2vw, 25px) !important;
    line-height: 1.2;
    font-weight: 900;
}

.footer-contact p,
.footer-contact a {
    color: rgba(255,255,255,.84);
    font-size: clamp(16px) !important;
    line-height: 1.42;
    text-decoration: none;
    margin: 0;
}

.footer-contact p + p {
    margin-top: 18px;
}

.footer-contact a:hover {
    color: #ff2bd6;
    text-shadow: 0 0 10px rgba(255,43,214,.7);
}

.footer-clean-bottom {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 58px);
    margin-top: 22px;
    color: rgba(255,255,255,.66);
}

.footer-icons,
.footer-legal {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 45px);
}

.footer-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 34px !important;
    line-height: 1;
    font-weight: 900;
}

.footer-icons a:hover,
.footer-legal a:hover {
    color: #ff2bd6;
    text-shadow: 0 0 10px rgba(255,43,214,.7);
}

.footer-legal a,
.footer-clean-bottom p {
    color: rgba(255,255,255,.66);
    text-decoration: none;
    font-size: clamp(14px, 1.4vw, 18px) !important;
    line-height: 1;
    margin: 0;
}

@media (max-width: 850px) {
    .footer-clean {
        padding: 44px 0 26px;
    }

    .footer-clean-inner {
        grid-template-columns: 1fr;
        gap: 42px;
        min-height: auto;
    }

    .footer-clean-bottom {
        margin-top: 48px;
        flex-wrap: wrap;
        gap: 24px 34px;
    }
}

@media (max-width: 520px) {
    .footer-clean-inner,
    .footer-clean-bottom {
        width: min(100% - 30px, 1180px);
    }

    .footer-clean-btn {
        width: 100%;
    }

    .footer-clean-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Termine Seite */
.page.compact-page,
.compact-page {
    min-height: auto;
}

.page-title {
    font-size: clamp(34px, 5vw, 52px) !important;
    line-height: 1.1;
}

.page-subtitle,
.intro,
.page p,
.page li {
    font-size: clamp(15px, 1.6vw, 18px) !important;
    line-height: 1.7;
}

.page h2,
.booking-box h2,
.contact-box h2 {
    font-size: clamp(22px, 2.5vw, 30px) !important;
    line-height: 1.2;
}

.termine-page {
    padding-top: 130px;
}

.termine-page .page-hero {
    text-align: center;
    padding: 30px 20px 20px;
}

.termine-page .page-logo {
    width: min(240px, 60vw);
    height: auto;
    margin: 0 auto 34px;
    display: block;
}

.termine-content {
    width: min(980px, calc(100% - 36px));
    margin: 35px auto 80px;
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 28px;
    align-items: start;
}

.booking-box,
.contact-box {
    padding: 34px;
    border: 1px solid rgba(255, 43, 214, .32);
    border-radius: 16px;
    background: rgba(255, 255, 255, .035);
    box-shadow: 0 0 24px rgba(255, 43, 214, .10);
}

.booking-box h2,
.contact-box h2 {
    color: #ff2bd6;
    margin-bottom: 24px;
    text-align: left;
}

.booking-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 18px;
}

.booking-step:last-child {
    margin-bottom: 0;
}

.booking-step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7d0b6f, #ff2bd6);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 13px rgba(255, 43, 214, .55);
}

.booking-step p,
.contact-box p {
    margin: 0;
    color: #e8e8e8;
    font-size: 16px !important;
}

.contact-box p {
    margin-bottom: 22px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.contact-box a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 16px;
}

.contact-box a:hover {
    color: #ff2bd6;
    text-shadow: 0 0 10px rgba(255, 43, 214, .7);
}

@media (max-width: 820px) {
    .termine-content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .booking-box,
    .contact-box {
        padding: 26px;
    }

    .termine-page {
        padding-top: 110px;
    }
}

@media (max-width: 520px) {
    .termine-content {
        width: min(100% - 26px, 980px);
        margin-top: 24px;
    }

    .booking-step {
        grid-template-columns: 30px 1fr;
        gap: 12px;
    }

    .booking-step span {
        width: 27px;
        height: 27px;
        font-size: 13px;
    }

    .booking-step p,
    .contact-box p,
    .contact-box a {
        font-size: 15px !important;
    }
}


/* Font Awesome Social Icons */
.footer-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-icons i {
    font-size: 28px;
    line-height: 1;
}

/* Gut lesbare Standards auf Unterseiten */
.termine-page p,
.termine-page a,
.termine-page li {
    font-size: 16px !important;
}

.termine-page h2 {
    font-size: 26px !important;
}


/* Kleinere Schriftgrössen */
h1, .page-title { font-size: 26px !important; }
h2 { font-size: 20px !important; }
p, li, a, span { font-size: 16px !important; }
nav a { font-size: 14px !important; }
.footer p, .footer a, .footer-copy { font-size: 14px !important; }
.price-list p, .price-list span, .price-list b { font-size: 16px !important; }

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.pagination a.active,
.pagination a:hover {
    color: var(--pink);
    border-color: var(--pink);
}


.gallery-image {
    cursor:pointer;
    transition: transform .3s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
}

.lightbox {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    z-index:9999;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.lightbox img {
    max-width:95%;
    max-height:95%;
    border-radius:12px;
}


.about-image {
    text-align: center;
    margin-bottom: 30px;
}

.about-image img {
    width: 250px;
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
}


/* Korrektur Mobile Navigation */
.menu-toggle {
    cursor: pointer;
    position: relative;
    z-index: 1002;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
}

@media (max-width: 950px) {
    .site-header {
        z-index: 1000;
    }

    .main-nav {
        display: none !important;
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        z-index: 1001;
        width: 100%;
        padding: 22px 24px 28px;
        background: rgba(0,0,0,.98);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        box-shadow: 0 18px 35px rgba(0,0,0,.55);
    }

    .main-nav.open,
    .main-nav.is-open,
    .site-header.menu-open .main-nav,
    .menu-toggle[aria-expanded="true"] + .main-nav {
        display: flex !important;
    }

    .main-nav a {
        display: block;
        width: 100%;
        padding: 14px 0;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .main-nav {
        top: 70px;
    }
}

/* Rechtliche Seiten: Impressum und Datenschutz */
.legal-page {
    padding-top: 150px;
    padding-bottom: 90px;
}

.legal-card {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(28px, 5vw, 58px);
    background: rgba(0, 0, 0, .78);
    border: 1px solid rgba(255, 43, 214, .28);
    border-radius: 24px;
    box-shadow: 0 0 45px rgba(255, 43, 214, .12);
}

.legal-kicker {
    color: #ff2bd6;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-card h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1;
    margin-bottom: 38px;
    text-transform: uppercase;
}

.legal-card h2 {
    color: #ff2bd6;
    font-size: clamp(22px, 2.4vw, 30px);
    margin-top: 34px;
    margin-bottom: 12px;
}

.legal-card p,
.legal-card li {
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.75;
}

.legal-card ul {
    margin: 0 0 0 22px;
    padding: 0;
}

.legal-card a {
    color: #ff8df0;
}

.legal-note {
    margin-top: 44px;
    opacity: .75;
}
