@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #f6f4ee;
    --bg-soft: #f2efe6;
    --surface: rgba(255, 255, 255, 0.68);
    --surface-strong: rgba(255, 255, 255, 0.82);
    --white: #ffffff;
    --text: #37343a;
    --muted: #6a6771;
    --primary: #68419a;
    --primary-dark: #4f2f7d;
    --accent: #d3df93;
    --accent-strong: #bfd36a;
    --line: rgba(104, 65, 154, 0.12);
    --shadow-soft: 0 16px 40px rgba(48, 31, 75, 0.10);
    --shadow-premium: 0 24px 70px rgba(48, 31, 75, 0.18);
    --radius-lg: 34px;
    --radius-md: 22px;
    --container: 1240px;
    --transition: all 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(211, 223, 147, 0.24), transparent 25%),
        radial-gradient(circle at bottom right, rgba(104, 65, 154, 0.08), transparent 22%),
        var(--bg);
    line-height: 1.75;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3 {
    margin-top: 0;
    line-height: 1.06;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
}

h1 {
    font-size: 4.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.55rem;
    margin-bottom: 12px;
}

p {
    margin: 0 0 18px;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.narrow {
    max-width: 900px;
}

.text-center {
    text-align: center;
}

.page-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
    animation: blobMove 12s ease-in-out infinite;
}

.page-blur-1 {
    width: 280px;
    height: 280px;
    background: rgba(211, 223, 147, 0.50);
    top: 110px;
    left: -90px;
}

.page-blur-2 {
    width: 340px;
    height: 340px;
    background: rgba(104, 65, 154, 0.12);
    top: 450px;
    right: -110px;
    animation-delay: 2s;
}

.page-blur-3 {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.75);
    bottom: 60px;
    left: 12%;
    animation-delay: 4s;
}

@keyframes blobMove {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(14px, -18px, 0);
    }
}

.site-header {
    position: relative;
}

.header-top {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.30);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    transition: var(--transition);
}

.header-top.scrolled {
    background: rgba(255,255,255,0.72);
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.header-top-inner {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo-only {
    display: block;
    width: auto;
    max-height: 90px;
    height: auto;
    object-fit: contain;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto; /* wichtig → schiebt Menü nach rechts */
}

.main-nav a {
    font-size: 1.05rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

/* schöner Hover-Effekt */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,0.70);
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 10px;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('../images/20251027_184730-1920w.webp') center center / cover no-repeat;
    transform: scale(1.04);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12)),
        linear-gradient(180deg, rgba(39, 21, 60, 0.12), rgba(39, 21, 60, 0.24));
}

.hero-particles::before,
.hero-particles::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.35;
}

.hero-particles::before {
    width: 220px;
    height: 220px;
    background: rgba(211, 223, 147, 0.35);
    top: 18%;
    left: 12%;
    animation: blobMove 9s ease-in-out infinite;
}

.hero-particles::after {
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.28);
    right: 10%;
    bottom: 16%;
    animation: blobMove 11s ease-in-out infinite reverse;
}

.hero-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 0 90px;
}

.hero-card {
    max-width: 900px;
    text-align: center;
    padding: 54px 56px;
    border-radius: 36px;
    background: rgba(255,255,255,0.46);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.34);
    box-shadow: 0 30px 90px rgba(0,0,0,0.16);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.74);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(104, 65, 154, 0.10);
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 1.1rem;
    color: #423f47;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #242424;
    box-shadow: 0 16px 30px rgba(191, 211, 106, 0.34);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 36px rgba(191, 211, 106, 0.42);
    color: #242424;
}

.btn-secondary {
    background: rgba(255,255,255,0.76);
    color: var(--primary);
    border: 1px solid rgba(104, 65, 154, 0.14);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.96);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 36px;
    height: 58px;
    border: 2px solid rgba(255,255,255,0.72);
    border-radius: 999px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator span {
    width: 6px;
    height: 12px;
    border-radius: 999px;
    background: #ffffff;
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(18px);
        opacity: 0;
    }
}

.section {
    position: relative;
    padding: 110px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(240,235,246,0.64));
}

.section-accent {
    background: linear-gradient(135deg, rgba(211,223,147,0.94), rgba(235,242,204,0.96));
    overflow: hidden;
}

.section-accent::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    right: -80px;
    top: -120px;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.section-lead {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #4d4953;
}

.grid-two {
    display: grid;
    grid-template-columns: 1.06fr 1fr;
    gap: 70px;
    align-items: center;
}

.content-card,
.media-card,
.footer-box,
.legal-box {
    position: relative;
    z-index: 2;
}

.content-card,
.form-card,
.payment-card,
.footer-box,
.legal-box {
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.44);
    box-shadow: var(--shadow-soft);
}

.content-card,
.form-card,
.payment-card,
.legal-box {
    padding: 38px;
}

.media-card {
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

.media-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-card {
    max-width: 480px;
    justify-self: end;
}

.portrait-card img {
    aspect-ratio: 4 / 5;
}

.stacked-media {
    position: relative;
    min-height: 640px;
}

.stacked-card {
    position: absolute;
    width: 82%;
}

.top-card {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}

.bottom-card {
    right: 0;
    bottom: 0;
    transform: rotate(4deg);
    z-index: 1;
}

.stacked-card img {
    aspect-ratio: 16 / 11;
}

.premium-list {
    margin: 24px 0 0;
    padding-left: 22px;
}

.premium-list li {
    margin-bottom: 10px;
}

.hours-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.hours-row:hover {
    transform: translateX(5px);
}

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

.payment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 24px;
}

.payment-tags span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(211,223,147,0.34);
    border: 1px solid rgba(104, 65, 154, 0.08);
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}

.payment-tags span:hover {
    transform: translateY(-2px);
    background: rgba(211,223,147,0.52);
}

.map-wrap {
    overflow: hidden;
    border-radius: 28px;
    margin-top: 22px;
    box-shadow: var(--shadow-premium);
}

.map-wrap iframe {
    width: 100%;
    height: 430px;
    border: 0;
    display: block;
}

.contact-form {
    margin-top: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 15px 16px;
    font: inherit;
    color: var(--text);
    background: rgba(255,255,255,0.86);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(104, 65, 154, 0.34);
    box-shadow: 0 0 0 4px rgba(104, 65, 154, 0.08);
    background: #fff;
}

.form-button {
    min-width: 180px;
}

.alert {
    margin: 18px 0 12px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.alert.success {
    background: rgba(211,223,147,0.34);
    border: 1px solid rgba(191, 211, 106, 0.62);
    color: #4a5b1f;
}

.alert.error {
    background: rgba(255, 219, 219, 0.55);
    border: 1px solid rgba(194, 106, 106, 0.35);
    color: #8e2f2f;
}

.site-footer {
    background: linear-gradient(180deg, rgba(211,223,147,0.90), rgba(198,214,129,0.96));
    padding-top: 84px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.footer-box {
    padding: 28px;
}

.footer-box p {
    margin-bottom: 8px;
}

.footer-bottom {
    margin-top: 48px;
    padding: 18px 20px;
    background: #111111;
    color: #ffffff;
    text-align: center;
    font-size: 0.95rem;
}

.legal-box {
    margin-bottom: 24px;
}

.legal-list,
.legal-sublist {
    padding-left: 22px;
    margin: 16px 0;
}

.legal-list li,
.legal-sublist li {
    margin-bottom: 12px;
}

.back-link-wrap {
    margin-top: 32px;
}

.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 760px;
    background: rgba(20, 20, 20, 0.96);
    color: #ffffff;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 99999;
}

.cookie-banner p {
    margin: 0;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.6;
}

.cookie-banner a {
    color: #cddc8f;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-buttons button {
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.cookie-accept {
    background: #cddc8f;
    color: #222222;
}

.cookie-accept:hover {
    background: #b9cb6c;
}

.cookie-decline {
    background: #444444;
    color: #ffffff;
}

.cookie-decline:hover {
    background: #5a5a5a;
}

@media (max-width: 1100px) {
    .grid-two,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portrait-card {
        justify-self: start;
        max-width: 100%;
    }

    .stacked-media {
        min-height: 560px;
    }
}

@media (max-width: 860px) {
    .mobile-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px;
        border-radius: 20px;
        background: rgba(255,255,255,0.92);
        box-shadow: 0 18px 40px rgba(0,0,0,0.10);
        border: 1px solid rgba(104,65,154,0.10);
    }

    .main-nav.open {
        display: flex;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.65rem;
    }

    .hero-card {
        padding: 38px 24px;
    }

    .grid-two,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 78px 0;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .stacked-media {
        min-height: auto;
        display: grid;
        gap: 22px;
    }

    .stacked-card {
        position: relative;
        width: 100%;
        inset: auto;
        transform: none;
    }

    .map-wrap iframe {
        height: 320px;
    }

    .content-card,
    .form-card,
    .payment-card,
    .legal-box,
    .footer-box {
        padding: 26px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .brand-name {
        font-size: 2rem;
    }

    h1 {
        font-size: 2.45rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-label {
        font-size: 1.7rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .page-blur {
        display: none;
    }

    .cookie-banner {
        bottom: 14px;
        width: calc(100% - 16px);
        padding: 18px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}