/* ===========================================================
   Ballon Giftgarden — custom WOW styles
   Playful / festive: balloons, confetti, claymorphism
   =========================================================== */

:root {
    /* Brand palette — purple-dominant, matching the Ballon-Giftgarden logo */
    --violet: #7C3AED;
    --violet-dark: #5B21B6;
    --violet-deep: #4C1D95;
    --lilac: #A78BFA;
    --lilac-soft: #DDD6FE;
    --cream: #FAF5FF;

    /* Primary brand variable — purple (used to read rose-pink, now the brand purple) */
    --rose: #7C3AED;
    --rose-dark: #5B21B6;

    /* Real rose-pink kept available for festive accents (avatars, gallery hints) */
    --pink: #FF4D8D;
    --grape: #8B5CF6;
    --sunny: #FFC83D;
    --mint: #2DD4BF;
    --coral: #FF6B4A;
    --plum: #2B1B3D;
    --muted: #6B5B73;

    /* Primary brand alias — used by buttons, links, accents */
    --primary: var(--violet);
    --primary-dark: var(--violet-dark);
}

html { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--violet); color: #fff; }

/* ---------- Brand wordmark (Playfair Display italic) ---------- */
.brand-word {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1;
    color: var(--violet);
    transition: color .25s ease;
}
.brand-link { display: inline-flex; align-items: center; gap: 10px; }
.brand-link:hover .brand-word { color: var(--violet-dark); }
.brand-mark {
    color: var(--violet);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}
.brand-link:hover .brand-mark { transform: rotate(-6deg) scale(1.08); }
/* On dark backgrounds (footer): lift the logo's contrast slightly */
.brand-mark--invert { filter: brightness(1.6) saturate(0.9) drop-shadow(0 2px 8px rgba(124,58,237,.4)); }

/* ---------- WOW hero animated mesh gradient ---------- */
.hero-mesh {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    background:
        radial-gradient(900px 700px at 12% 8%,  rgba(124,58,237,.32),  transparent 60%),
        radial-gradient(800px 700px at 90% 14%, rgba(255,77,141,.22),  transparent 60%),
        radial-gradient(720px 620px at 78% 88%, rgba(167,139,250,.34), transparent 60%),
        radial-gradient(700px 540px at 18% 92%, rgba(45,212,191,.18),  transparent 60%),
        linear-gradient(180deg, #FAF5FF 0%, #FFF8F4 100%);
    background-size: 130% 130%, 140% 140%, 130% 130%, 140% 140%, 100% 100%;
    background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0;
    animation: meshShift 22s ease-in-out infinite alternate;
}
@keyframes meshShift {
    0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 0; filter: hue-rotate(0deg); }
    50%  { background-position: 10% 8%, 92% 10%, 86% 92%, 8% 90%, 0 0; filter: hue-rotate(8deg); }
    100% { background-position: 4% 4%, 96% 6%, 94% 96%, 4% 94%, 0 0; filter: hue-rotate(-6deg); }
}
.hero-mesh::after { /* soft top fade so navbar floats nicely */
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(250,245,255,.85) 0%, transparent 12%, transparent 88%, rgba(250,245,255,.7) 100%);
}

/* Animated grain (subtle, for depth) */
.hero-grain {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .07; mix-blend-mode: multiply;
    background-image: radial-gradient(circle at 1px 1px, #2B1B3D 1px, transparent 0);
    background-size: 4px 4px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-mesh { animation: none; }
}

/* ---------- Page background blobs ---------- */
.bg-decor { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .35; }
.blob-1 { width: 480px; height: 480px; background: var(--rose);  top: -120px; left: -120px; animation: drift 18s ease-in-out infinite; }
.blob-2 { width: 420px; height: 420px; background: var(--grape); top: 40%; right: -160px; animation: drift 22s ease-in-out infinite reverse; }
.blob-3 { width: 360px; height: 360px; background: var(--mint);  bottom: -140px; left: 30%; animation: drift 26s ease-in-out infinite; }
@keyframes drift {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(40px,-30px) scale(1.1); }
}

/* ---------- Navigation ---------- */
.nav-link { position: relative; transition: color .2s; }
.nav-link::after {
    content: ""; position: absolute; left: 0; bottom: -6px; height: 3px; width: 0;
    background: var(--rose); border-radius: 4px; transition: width .25s ease;
}
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { width: 100%; }

#navbar.scrolled > div { background: rgba(255,255,255,.85); }

.mobile-link { padding: 12px 16px; border-radius: 16px; transition: background .2s, color .2s; }
.mobile-link:hover { background: rgba(124,58,237,.08); color: var(--rose); }

.nav-logo-balloon {
    width: 22px; height: 28px; display: inline-block; position: relative;
    background: radial-gradient(circle at 32% 28%, #fff7, var(--rose) 55%);
    border-radius: 50% 50% 50% 50% / 46% 46% 54% 54%;
    box-shadow: 0 3px 8px rgba(124,58,237,.4);
}
.nav-logo-balloon::after {
    content: ""; position: absolute; left: 50%; bottom: -8px; width: 1.5px; height: 9px;
    background: rgba(43,27,61,.4); transform: translateX(-50%);
}

/* ---------- Generic balloon shape ---------- */
.balloon, .ab-balloon, .bq {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
}
/* glossy highlight + knot via pseudo elements applied per-context below */

/* ---------- Hero floating balloons ---------- */
.hero-balloons { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-balloons .balloon {
    width: calc(64px * var(--s, 1));
    height: calc(80px * var(--s, 1));
    left: var(--x);
    bottom: -140px;
    opacity: .9;
    animation: floatUp 14s linear infinite, sway 4s ease-in-out infinite alternate;
    animation-delay: var(--d, 0s);
}
.hero-balloons .balloon::before { /* knot */
    content: ""; position: absolute; left: 50%; bottom: -5px; width: 10px; height: 8px;
    transform: translateX(-50%); border-radius: 0 0 6px 6px;
}
.hero-balloons .balloon::after { /* string */
    content: ""; position: absolute; left: 50%; top: 100%; width: 1.5px; height: 90px;
    background: linear-gradient(rgba(43,27,61,.35), transparent);
    transform-origin: top center;
}
.b-rose  { background: radial-gradient(circle at 32% 26%, #fff8, var(--rose) 58%); }
.b-rose::before  { background: var(--rose); }
.b-grape { background: radial-gradient(circle at 32% 26%, #fff8, var(--grape) 58%); }
.b-grape::before { background: var(--grape); }
.b-sunny { background: radial-gradient(circle at 32% 26%, #fff9, var(--sunny) 58%); }
.b-sunny::before { background: var(--sunny); }
.b-mint  { background: radial-gradient(circle at 32% 26%, #fff8, var(--mint) 58%); }
.b-mint::before  { background: var(--mint); }
.b-coral { background: radial-gradient(circle at 32% 26%, #fff8, var(--coral) 58%); }
.b-coral::before { background: var(--coral); }

@keyframes floatUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-115vh); }
}
@keyframes sway {
    from { margin-left: -14px; }
    to   { margin-left: 14px; }
}

/* ---------- Hero copy bits ---------- */
.headline-gradient {
    background: linear-gradient(100deg, var(--violet), var(--pink) 40%, var(--coral) 70%, var(--sunny));
    background-size: 200% 100%;
    -webkit-background-clip: text; background-clip: text; color: transparent;
    position: relative; white-space: nowrap;
    animation: hueShift 9s ease-in-out infinite alternate;
}
@keyframes hueShift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .headline-gradient { animation: none; } }
.stars { letter-spacing: 1px; }

.avatar-stack { display: inline-flex; }
.avatar-stack span {
    width: 30px; height: 30px; border-radius: 50%; border: 2.5px solid var(--cream, #FFF8F4);
    margin-left: -8px; box-shadow: 0 2px 6px rgba(43,27,61,.15);
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(1){ background: linear-gradient(135deg,#FF8FB1,var(--rose)); }
.avatar-stack span:nth-child(2){ background: linear-gradient(135deg,#B79CFF,var(--grape)); }
.avatar-stack span:nth-child(3){ background: linear-gradient(135deg,#6EEAD9,var(--mint)); }
.avatar-stack span:nth-child(4){ background: linear-gradient(135deg,#FFD976,var(--sunny)); }

/* ---------- Hero showpiece card ---------- */
.hero-card {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 240px; margin: 0 auto;
    background: linear-gradient(160deg, #ffffff, #F5EDFF);
    border-radius: 36px;
    border: 1px solid #fff;
    box-shadow: 0 30px 60px -20px rgba(124,58,237,.45), inset 0 2px 0 #fff;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}
@media (min-width: 768px)  { .hero-card { max-width: 340px; border-radius: 40px; } }
@media (min-width: 1024px) { .hero-card { max-width: 460px; border-radius: 48px; } }
@media (min-width: 1536px) { .hero-card { max-width: 540px; } }

/* Photo variant — used by the hero card */
.hero-card--photo { background: #F5EDFF; }
.hero-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    /* Frame the founder + balloons rather than centering blindly. */
    object-position: 60% 38%;
    display: block;
    transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.hero-card:hover .hero-photo { transform: scale(1.04); }
.hero-card-glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(70% 60% at 50% 110%, rgba(124,58,237,.22), transparent 70%);
    mix-blend-mode: multiply;
}
@keyframes cardFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }

/* bouquet inside card */
.hero-bouquet { position: absolute; inset: 0; }
.hero-bouquet .bq {
    width: 110px; height: 138px; left: 50%; top: 14%;
    box-shadow: inset 8px -8px 18px rgba(0,0,0,.06);
}
.hero-bouquet .bq::after { /* gloss */
    content: ""; position: absolute; top: 16%; left: 22%; width: 26%; height: 30%;
    background: #ffffff88; border-radius: 50%; filter: blur(2px);
}
.bq-1 { background: var(--rose);  transform: translate(-160%, 0) rotate(-12deg); }
.bq-2 { background: var(--grape); transform: translate(-50%, -18%) rotate(0deg) scale(1.05); z-index: 2; }
.bq-3 { background: var(--sunny); transform: translate(60%, 0) rotate(12deg); }
.bq-4 { background: var(--mint);  transform: translate(-120%, 22%) rotate(-6deg) scale(.82); }
.bq-5 { background: var(--coral); transform: translate(30%, 24%) rotate(8deg) scale(.82); }
.bq-strings {
    position: absolute; left: 50%; top: 52%; width: 2px; height: 26%;
    background: rgba(43,27,61,.3); transform: translateX(-50%);
    box-shadow: -2px 0 0 rgba(43,27,61,.18), 2px 0 0 rgba(43,27,61,.18);
}

/* gift box at bottom */
.gift-box { position: absolute; left: 50%; bottom: 8%; width: 150px; height: 120px; transform: translateX(-50%); }
.gift-body { position: absolute; bottom: 0; left: 8%; width: 84%; height: 70%; background: linear-gradient(180deg,var(--lilac),var(--violet)); border-radius: 10px; box-shadow: 0 14px 24px -8px rgba(124,58,237,.5); }
.gift-lid  { position: absolute; top: 18%; left: 0; width: 100%; height: 24%; background: linear-gradient(180deg,var(--lilac),var(--violet)); border-radius: 10px; }
.gift-ribbon-v { position: absolute; bottom: 0; left: 50%; width: 16px; height: 88%; transform: translateX(-50%); background: var(--sunny); }
.gift-bow { position: absolute; top: 6%; left: 50%; width: 46px; height: 30px; transform: translateX(-50%); background: var(--sunny); border-radius: 50% 50% 46% 46%; box-shadow: -20px 0 0 -4px var(--sunny), 20px 0 0 -4px var(--sunny); }

/* floating badges */
.float-badge {
    position: absolute; display: flex; align-items: center; gap: 10px;
    background: #fff; padding: 12px 16px; border-radius: 20px;
    box-shadow: 0 16px 30px -10px rgba(43,27,61,.25);
    animation: cardFloat 5s ease-in-out infinite;
}
.fb-1 { top: 12%; right: -6%; animation-delay: .4s; }
.fb-2 { bottom: 14%; left: -8%; animation-delay: 1.2s; }
@media (max-width: 1023px) { .float-badge { display: none; } }

/* scroll cue (desktop-only) */
.scroll-cue {
    position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
    width: 26px; height: 42px; border: 2px solid rgba(43,27,61,.3); border-radius: 14px;
    display: none; justify-content: center; z-index: 10;
}
@media (min-width: 1024px) { .scroll-cue { display: flex; } }
.scroll-cue span { width: 5px; height: 9px; margin-top: 7px; border-radius: 4px; background: var(--rose); animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0%{ transform: translateY(0); opacity: 1;} 70%{ transform: translateY(12px); opacity:0;} 100%{opacity:0;} }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; }
.marquee { display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; font-family: 'Fredoka',sans-serif; font-weight: 600; font-size: 1.35rem; animation: marquee 24s linear infinite; }
.marquee .dot { color: var(--sunny); }
@keyframes marquee { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ---------- Section helpers ---------- */
.section-eyebrow {
    display: inline-block; font-family: 'Fredoka',sans-serif; font-weight: 600;
    color: var(--rose); background: rgba(124,58,237,.1);
    padding: 6px 16px; border-radius: 999px; font-size: .9rem; letter-spacing: .02em;
}
.section-title {
    font-family: 'Fredoka',sans-serif; font-weight: 700; color: var(--plum);
    font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.1; margin-top: 14px; letter-spacing: -.01em;
}

/* ---------- Stats ---------- */
.stat-card {
    background: #fff; border-radius: 28px; padding: 30px 18px; text-align: center;
    border: 1px solid #fff; box-shadow: 0 16px 36px -18px rgba(43,27,61,.22);
    transition: transform .25s ease, box-shadow .25s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -16px rgba(124,58,237,.3); }
.stat-num { font-family: 'Fredoka',sans-serif; font-weight: 700; font-size: clamp(2.2rem,5vw,3rem); line-height: 1;
    background: linear-gradient(120deg,var(--rose),var(--grape)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin-top: 8px; color: var(--muted, #6B5B73); font-weight: 600; }

/* ---------- About visual ---------- */
.about-visual {
    position: relative; aspect-ratio: 4/3; max-width: 520px;
    background: linear-gradient(150deg,#fff,#f3ecff);
    border-radius: 40px; border: 1px solid #fff;
    box-shadow: 0 30px 60px -24px rgba(139,92,246,.4); overflow: hidden;
}
.about-visual--photo { background: #F5EDFF; aspect-ratio: 4/5; max-width: 480px; }
.about-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 55% 35%;
    display: block;
    transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.about-visual--photo:hover .about-photo { transform: scale(1.04); }
.about-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(60% 50% at 30% 0%, rgba(167,139,250,.35), transparent 70%),
        radial-gradient(50% 40% at 100% 100%, rgba(124,58,237,.28), transparent 70%);
    mix-blend-mode: screen;
}
.ab-balloon { box-shadow: inset 8px -8px 16px rgba(0,0,0,.06); }
.ab-balloon::after { content:""; position:absolute; top:18%; left:24%; width:24%; height:28%; background:#ffffff8c; border-radius:50%; filter: blur(2px); }
.ab-balloon::before { content:""; position:absolute; left:50%; top:100%; width:1.5px; height:60px; background: linear-gradient(rgba(43,27,61,.3),transparent); transform: translateX(-50%); }
.ab-1 { width: 120px; height: 150px; background: var(--rose);  left: 18%; top: 14%; animation: bob 5s ease-in-out infinite; }
.ab-2 { width: 96px;  height: 120px; background: var(--grape); left: 46%; top: 26%; animation: bob 6s ease-in-out infinite .6s; }
.ab-3 { width: 82px;  height: 104px; background: var(--sunny); left: 66%; top: 18%; animation: bob 5.5s ease-in-out infinite 1.1s; }
@keyframes bob { 0%,100%{ transform: translateY(0) rotate(-2deg);} 50%{ transform: translateY(-16px) rotate(2deg);} }
.ab-sparkle { position: absolute; width: 18px; height: 18px; background:
    conic-gradient(from 0deg, transparent 0 8%, var(--sunny) 8% 17%, transparent 17% 33%, var(--sunny) 33% 42%, transparent 42% 58%, var(--sunny) 58% 67%, transparent 67% 83%, var(--sunny) 83% 92%, transparent 92%);
    animation: twinkle 2.4s ease-in-out infinite; }
.s-1 { left: 12%; bottom: 18%; } .s-2 { right: 14%; bottom: 30%; animation-delay:.8s; } .s-3 { left: 40%; bottom: 10%; animation-delay:1.4s; transform: scale(.7);}
@keyframes twinkle { 0%,100%{ transform: scale(.6); opacity:.4;} 50%{ transform: scale(1); opacity:1;} }

.check-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--plum); }
.check-dot { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--mint);
    position: relative; box-shadow: 0 4px 10px rgba(45,212,191,.4); }
.check-dot::after { content:""; position:absolute; left:9px; top:6px; width:5px; height:10px; border:solid #fff; border-width:0 2.5px 2.5px 0; transform: rotate(45deg); }

/* ---------- Service cards ---------- */
.service-card {
    background: #fff; border-radius: 28px; padding: 30px 26px; border: 1px solid #fff;
    box-shadow: 0 18px 40px -22px rgba(43,27,61,.25);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
    will-change: transform;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 50px -20px rgba(124,58,237,.35); }
.service-icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px; transition: transform .3s; }
.service-icon svg { width: 30px; height: 30px; }
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.08); }
.service-title { font-family: 'Fredoka',sans-serif; font-weight: 600; font-size: 1.3rem; color: var(--plum); }
.service-text { margin-top: 8px; color: var(--muted,#6B5B73); line-height: 1.55; }

/* ---------- Komplettes Angebot ---------- */
.offer-card {
    background: #fff; border-radius: 36px; padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid #fff; box-shadow: 0 24px 50px -24px rgba(43,27,61,.22);
}
.offer-photo-wrap {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px -16px rgba(124,58,237,.4);
    background: #F5EDFF;
}
.offer-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 45% 30%;
    display: block;
    transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.offer-photo-wrap::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 40% at 50% 0%, rgba(167,139,250,.25), transparent 70%);
    mix-blend-mode: screen; pointer-events: none;
}
.offer-card:hover .offer-photo { transform: scale(1.04); }
@media (max-width: 1023px) { .offer-photo-wrap { max-width: 360px; margin: 0 auto; } }
.offer-item { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--plum); line-height: 1.45; padding: 4px 0; }
.offer-dot { flex: none; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--coral));
    position: relative; box-shadow: 0 3px 8px rgba(124,58,237,.4); margin-top: 2px; }
.offer-dot::after { content:""; position:absolute; left:7px; top:4px; width:4px; height:9px; border:solid #fff; border-width:0 2.2px 2.2px 0; transform: rotate(45deg); }

/* ---------- Highlight cards (Last-Minute & Lieferung) ---------- */
.highlight-card {
    position: relative; padding: clamp(2rem,3.5vw,2.5rem);
    border-radius: 32px; overflow: hidden;
    box-shadow: 0 24px 50px -24px rgba(43,27,61,.25);
    color: #fff;
}
.highlight-rose { background: linear-gradient(135deg, var(--rose), var(--coral)); }
.highlight-mint { background: linear-gradient(135deg, #2DD4BF, #0EA5A4); }
.highlight-card::after { content:""; position:absolute; width: 240px; height: 240px; border-radius: 50%; background: #ffffff22; top:-90px; right:-60px; }
.highlight-icon { width: 56px; height: 56px; border-radius: 18px; background: #ffffff25; backdrop-filter: blur(8px); display: grid; place-items: center; margin-bottom: 18px; position: relative; z-index: 1; }
.highlight-icon svg { width: 28px; height: 28px; }
.highlight-title { font-family:'Fredoka',sans-serif; font-weight:600; font-size:1.6rem; position:relative; z-index: 1; }
.highlight-text { margin-top: 10px; line-height: 1.6; color: #ffffffe6; position: relative; z-index: 1; }

/* ---------- Gallery (dynamic) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px){ .gallery-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .gallery-grid { grid-template-columns: 1fr;} }
.gallery-item {
    position: relative; aspect-ratio: 4/3; border-radius: 28px; overflow: hidden;
    cursor: pointer; box-shadow: 0 18px 40px -22px rgba(43,27,61,.3);
}
.gallery-item .gi-art { position: absolute; inset: 0; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover .gi-art { transform: scale(1.08); }
.gallery-item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px;
    font-family: 'Fredoka',sans-serif; font-weight: 600; color: #fff; font-size: 1.05rem;
    background: linear-gradient(transparent, rgba(43,27,61,.6));
    transform: translateY(8px); opacity: .92; transition: transform .35s, opacity .35s;
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gi-rose  { background: linear-gradient(140deg,#FF8FB1,var(--rose)); }
.gi-grape { background: linear-gradient(140deg,#B79CFF,var(--grape)); }
.gi-mint  { background: linear-gradient(140deg,#6EEAD9,var(--mint)); }
.gi-sunny { background: linear-gradient(140deg,#FFE08A,var(--sunny)); }
.gi-coral { background: linear-gradient(140deg,#FF9C7E,var(--coral)); }
.gi-plum  { background: linear-gradient(140deg,#6B5286,var(--plum)); }
/* simple decorative art motifs drawn with gradients */
.gi-art::before, .gi-art::after { content: ""; position: absolute; border-radius: 50%; }
.a-bouquet::before { width: 46%; height: 46%; left: 12%; top: 16%; background: radial-gradient(circle at 35% 30%, #fff9, #ffffff22); }
.a-bouquet::after  { width: 34%; height: 34%; right: 16%; top: 30%; background: radial-gradient(circle at 35% 30%, #fff7, #ffffff11); }
.a-gift::before { width: 56%; height: 40%; left: 22%; bottom: 16%; border-radius: 12px; background: #ffffff33; }
.a-gift::after  { width: 14%; height: 60%; left: 43%; bottom: 16%; border-radius: 6px; background: #ffffff55; }
.a-arch::before { width: 70%; height: 70%; left: 15%; top: 28%; border: 22px solid #ffffff44; border-bottom: none; border-radius: 50% 50% 0 0; background: transparent; }
.a-arch::after  { display:none; }
.a-number::before { content: "5"; display: grid; place-items: center; inset: 0; width: 100%; height: 100%; border-radius: 0; font-family: 'Fredoka',sans-serif; font-weight: 700; font-size: 6rem; color: #ffffff55; }
.a-number::after { display:none; }
.a-confetti::before { width: 100%; height: 100%; left:0; top:0; border-radius:0; background:
    radial-gradient(circle 8px at 20% 30%, #fff9 98%, transparent),
    radial-gradient(circle 6px at 70% 25%, #fff7 98%, transparent),
    radial-gradient(circle 7px at 45% 65%, #fff8 98%, transparent),
    radial-gradient(circle 5px at 82% 70%, #fff7 98%, transparent),
    radial-gradient(circle 6px at 30% 80%, #fff7 98%, transparent); }
.a-confetti::after { display:none; }
.a-heart::before { width: 0; height: 0; left:50%; top:34%; transform: translateX(-50%); border-radius:0;
    content:"\2665"; font-size: 6rem; color:#ffffff66; width:auto; }
.a-heart::after { display:none; }

/* ---------- Dynamic gallery cards (rendered by gallery.js) ---------- */
.gallery-item.dynamic {
    background: #fff; display: flex; flex-direction: column; padding: 0; cursor: default;
    opacity: 0; transform: translateY(16px);
    animation: cardFadeIn .55s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: calc(var(--i, 0) * 80ms);
}
@keyframes cardFadeIn { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
    .gallery-item.dynamic { opacity: 1; transform: none; animation: none; }
}
.gallery-item.dynamic .gi-thumb { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.gallery-item.dynamic:hover .gi-thumb { transform: scale(1.06); }
.gallery-item.dynamic .gi-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(43,27,61,.78) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px 22px;
    color: #fff;
}
.gallery-item.dynamic h3 { font-family:'Fredoka',sans-serif; font-weight:600; font-size:1.35rem; }
.gallery-item.dynamic .gi-count { font-size: .9rem; opacity: .85; margin-top: 2px; }
.gallery-item.dynamic .gi-more {
    margin-top: 14px; align-self: flex-start;
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; color: var(--plum); font-weight: 700; font-size: .9rem;
    padding: 8px 16px; border-radius: 999px;
    transition: transform .2s, background .2s, color .2s;
    cursor: pointer; border: none;
}
.gallery-item.dynamic .gi-more:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }
.gallery-item.dynamic .gi-more svg { width: 14px; height: 14px; }

/* Fallback gradient cover when no image exists */
.gi-fallback { position: absolute; inset: 0; display: grid; place-items: center; }
.gi-fallback svg { width: 50%; height: 50%; opacity: .35; color: #fff; }
.gf-rose  { background: linear-gradient(140deg,#FF8FB1,var(--rose)); }
.gf-grape { background: linear-gradient(140deg,#B79CFF,var(--grape)); }
.gf-mint  { background: linear-gradient(140deg,#6EEAD9,var(--mint)); }
.gf-sunny { background: linear-gradient(140deg,#FFE08A,var(--sunny)); }
.gf-coral { background: linear-gradient(140deg,#FF9C7E,var(--coral)); }
.gf-plum  { background: linear-gradient(140deg,#6B5286,var(--plum)); }

/* Skeleton loader */
.gallery-item.skeleton {
    background: linear-gradient(110deg, #f3eaf1 8%, #fbf5fa 18%, #f3eaf1 33%);
    background-size: 200% 100%; animation: shimmer 1.4s linear infinite;
    border-radius: 28px; aspect-ratio: 4/3;
}
@keyframes shimmer { 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }

/* ---------- Lightbox (category detail) ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; }
.lightbox.hidden { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(43,27,61,.58); backdrop-filter: blur(6px); animation: lbFadeIn .25s ease-out; }
.lightbox-panel {
    position: relative; z-index: 1; background: #fff;
    width: min(960px, 96vw); max-height: 90vh; overflow-y: auto;
    border-radius: 32px; padding: clamp(1.4rem, 3vw, 2.4rem);
    box-shadow: 0 40px 80px -20px rgba(43,27,61,.45);
    animation: lbZoomIn .3s cubic-bezier(.34,1.1,.5,1);
}
.lightbox-close {
    position: sticky; float: right; top: 0;
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; border: 1px solid #f0e6ef; color: var(--plum);
    display: grid; place-items: center; cursor: pointer;
    box-shadow: 0 10px 20px -8px rgba(43,27,61,.25);
    transition: background .2s, color .2s, transform .2s;
    margin-left: auto;
}
.lightbox-close:hover { background: var(--rose); color: #fff; transform: rotate(90deg); }
.lightbox-head { clear: both; }
.lightbox-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 700px) { .lightbox-grid { grid-template-columns: repeat(2, 1fr); } }
.lb-tile { aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; cursor: pointer; background: #f3eaf1; position: relative; }
.lb-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.lb-tile:hover img { transform: scale(1.08); }
.lightbox-empty { margin-top: 24px; text-align: center; color: var(--muted,#6B5B73); padding: 28px 0; background: #fbf5fa; border-radius: 18px; }
.lightbox-empty.hidden { display: none; }

@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoomIn { from { opacity: 0; transform: scale(.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* ---------- Big image viewer ---------- */
.viewer { position: fixed; inset: 0; z-index: 110; background: rgba(15,8,22,.92); display: flex; align-items: center; justify-content: center; padding: 20px; }
.viewer.hidden { display: none; }
.viewer img { max-width: 96vw; max-height: 90vh; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.5); animation: lbZoomIn .25s ease-out; }
.viewer-close, .viewer-prev, .viewer-next {
    position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff;
    width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
    transition: background .2s, transform .2s;
}
.viewer-close:hover, .viewer-prev:hover, .viewer-next:hover { background: rgba(255,255,255,.25); transform: scale(1.08); }
.viewer-close { top: 22px; right: 22px; }
.viewer-prev  { left: 22px; top: 50%; transform: translateY(-50%); }
.viewer-next  { right: 22px; top: 50%; transform: translateY(-50%); }
.viewer-prev:hover { transform: translateY(-50%) scale(1.08); }
.viewer-next:hover { transform: translateY(-50%) scale(1.08); }

body.modal-open { overflow: hidden; }

/* ---------- Why panel ---------- */
.why-panel {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--grape), var(--rose));
    border-radius: 44px; padding: clamp(2.5rem,5vw,4.5rem);
    box-shadow: 0 40px 80px -30px rgba(139,92,246,.6);
}
.why-panel::before { content:""; position:absolute; width:300px; height:300px; border-radius:50%; background:#ffffff22; top:-100px; right:-60px; }
.why-panel::after  { content:""; position:absolute; width:220px; height:220px; border-radius:50%; background:#ffffff14; bottom:-80px; left:10%; }
.why-item { position: relative; }
.why-num { font-family:'Fredoka',sans-serif; font-weight:700; font-size:3rem; color:#ffffff55; line-height:1; }
.why-title { font-family:'Fredoka',sans-serif; font-weight:600; font-size:1.5rem; color:#fff; margin-top:6px; }
.why-text { color:#ffffffd0; margin-top:10px; line-height:1.6; }

/* ---------- Reviews ---------- */
.review-card {
    background: #fff; border-radius: 28px; padding: 28px; border: 1px solid #fff;
    box-shadow: 0 18px 40px -22px rgba(43,27,61,.22);
    transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 26px 46px -18px rgba(139,92,246,.3); }
.review-card p { color: var(--plum); font-size: 1.05rem; line-height: 1.6; }
.review-card footer { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.rev-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color:#fff; font-family:'Fredoka',sans-serif; font-weight:600; font-size:1.2rem; }
.rev-avatar.a1 { background: linear-gradient(135deg,#FF8FB1,var(--rose)); }
.rev-avatar.a2 { background: linear-gradient(135deg,#B79CFF,var(--grape)); }
.rev-avatar.a3 { background: linear-gradient(135deg,#6EEAD9,var(--mint)); }
.rev-name { font-weight: 700; color: var(--plum); }
.rev-meta { font-size: .85rem; color: var(--muted,#6B5B73); }

/* ---------- Process ---------- */
.process-line { position: absolute; top: 36px; left: 16%; right: 16%; height: 3px; background: repeating-linear-gradient(90deg, var(--rose) 0 12px, transparent 12px 24px); opacity:.4; }
@media (max-width: 768px){ .process-line { display:none; } }
.process-step { text-align: center; position: relative; }
.process-bubble {
    width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%;
    display: grid; place-items: center; font-family:'Fredoka',sans-serif; font-weight:700; font-size:1.7rem; color:#fff;
    background: linear-gradient(135deg,var(--rose),var(--coral));
    box-shadow: 0 14px 30px -8px rgba(255,107,74,.5);
}
.process-title { font-family:'Fredoka',sans-serif; font-weight:600; font-size:1.3rem; color:var(--plum); }
.process-text { color: var(--muted,#6B5B73); margin-top:8px; max-width: 260px; margin-left:auto; margin-right:auto; line-height:1.55; }

/* ---------- CTA banner ---------- */
.cta-banner {
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(135deg, var(--coral), var(--rose) 55%, var(--grape));
    border-radius: 44px; padding: clamp(3rem,6vw,5rem) clamp(1.5rem,4vw,3rem);
    box-shadow: 0 40px 80px -30px rgba(124,58,237,.6);
}
.cta-banner::before, .cta-banner::after { content:""; position:absolute; border-radius:50%; background:#ffffff22; }
.cta-banner::before { width:260px; height:260px; top:-90px; left:-60px; }
.cta-banner::after  { width:200px; height:200px; bottom:-80px; right:-40px; background:#ffffff18; }

/* ---------- Contact ---------- */
/* "Komm vorbei!" shop photo card in the Contact section */
.shop-photo-wrap {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px -18px rgba(124,58,237,.4);
    background: #2B1B3D;
}
.shop-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.shop-photo-wrap:hover .shop-photo { transform: scale(1.05); }
.shop-photo-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 18px 22px;
    background: linear-gradient(to top, rgba(43,27,61,.75), transparent);
    pointer-events: none;
}

.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px; border-radius: 20px; background:#fff; border:1px solid #fff; box-shadow: 0 12px 30px -18px rgba(43,27,61,.25); transition: transform .2s, box-shadow .2s; }
.contact-row:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(124,58,237,.3); }
.contact-ic { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.contact-ic svg { width: 24px; height: 24px; }
.contact-label { font-size:.82rem; text-transform: uppercase; letter-spacing:.06em; color: var(--muted,#6B5B73); font-weight:700; }
.contact-value { font-weight: 700; color: var(--plum); font-size: 1.05rem; }

.contact-form { background:#fff; border-radius: 36px; padding: clamp(1.6rem,4vw,2.5rem); border:1px solid #fff; box-shadow: 0 30px 60px -28px rgba(43,27,61,.3); }
.field label { display:block; font-weight:700; font-size:.9rem; color: var(--plum); margin-bottom:6px; }
.field input, .field textarea {
    width: 100%; padding: 13px 16px; border-radius: 16px; border: 2px solid #efe7f2;
    background: #fbf8fc; font: inherit; color: var(--plum); transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color:#b3a8bd; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(124,58,237,.15); background:#fff; }
.form-submit { width: 100%; margin-top: 22px; padding: 15px; border: none; border-radius: 999px;
    font-family:'Fredoka',sans-serif; font-weight:600; font-size:1.1rem; color:#fff;
    background: linear-gradient(135deg,var(--rose),var(--coral));
    box-shadow: 0 16px 32px -10px rgba(124,58,237,.5); transition: transform .2s, box-shadow .2s; }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -10px rgba(124,58,237,.6); }
.form-submit:active { transform: translateY(0) scale(.98); }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* Honeypot: visually hidden but kept in tab/screen-reader flow rejected by JS */
.cf-honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Consent checkbox */
.cf-consent {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .9rem; color: var(--muted, #6B5B73); line-height: 1.5;
    cursor: pointer; user-select: none;
}
.cf-consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--rose); cursor: pointer; }
.cf-consent span { flex: 1; }

/* Status message */
.cf-status { margin-top: 12px; min-height: 1.2em; font-weight: 700; text-align: center; line-height: 1.5; }
.cf-status[data-kind="ok"]  { color: #047857; }
.cf-status[data-kind="err"] { color: #b91c1c; }

/* ---------- Footer ---------- */
.footer-blob { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.4), transparent 70%); top: -160px; right: -100px; }
.footer-head { font-family:'Fredoka',sans-serif; font-weight:600; color:#fff; font-size:1.1rem; margin-bottom:16px; }
.footer-link { transition: color .2s; }
.footer-link:hover { color: var(--sunny); }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-card {
    background: #fff; border-radius: 36px; padding: clamp(1.8rem, 4vw, 3rem);
    border: 1px solid #fff; box-shadow: 0 30px 60px -28px rgba(43,27,61,.25);
}
.legal-section + .legal-section { margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid #f1eaf3; }
.legal-h2 { font-family: 'Fredoka',sans-serif; font-weight: 600; color: var(--plum); font-size: 1.35rem; line-height: 1.2; }
.legal-p { color: var(--muted,#6B5B73); line-height: 1.75; margin-top: 0.9rem; }
.legal-ul { color: var(--muted,#6B5B73); line-height: 1.75; margin-top: 0.9rem; padding-left: 1.25rem; list-style: disc; }
.legal-ul li { margin-top: .25rem; }
.legal-link { color: var(--rose); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.legal-link:hover { color: var(--rose-dark, #E63973); }

.back-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--plum); font-weight: 700;
    background: #fff; padding: 12px 20px; border-radius: 999px;
    border: 1px solid #fff; box-shadow: 0 14px 30px -16px rgba(43,27,61,.25);
    transition: transform .2s, box-shadow .2s, color .2s;
}
.back-link:hover { transform: translateY(-3px); color: var(--rose); box-shadow: 0 20px 36px -16px rgba(124,58,237,.35); }

/* ---------- Confetti canvas ---------- */
#confetti-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 60; }

/* ---------- AOS default duration tweak ---------- */
[data-aos] { transition-timing-function: cubic-bezier(.34,1.1,.5,1); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    .hero-balloons, .bg-decor { display: none; }
}
