/* ================================================
   JacProWin – Jacqueline Peschel | ProWin
   Stylesheet v1.0
   Farbschema: Weiß + Pastel Türkis
   ================================================ */

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

:root {
    --white:             #ffffff;
    --bg-light:          #f3fafa;
    --turquoise-pale:    #e0f5f4;
    --turquoise-light:   #a8dfdf;
    --turquoise:         #6cc8c8;
    --turquoise-dark:    #3aacac;
    --turquoise-deeper:  #1e8484;
    --text-dark:         #1e3535;
    --text-muted:        #4a7272;
    --border:            #c8e8e8;

    --font-display: 'Playfair Display', serif;
    --font-body:    'Lato', sans-serif;

    --nav-h:    78px;
    --max-w:    1200px;
    --radius:   12px;
    --radius-lg: 24px;

    --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow:    0 4px 24px rgba(58, 172, 172, 0.11);
    --shadow-lg: 0 16px 60px rgba(58, 172, 172, 0.18);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.75;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; }

/* ── Utilities ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--turquoise-dark);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    color: var(--text-dark);
    line-height: 1.22;
    margin-bottom: 1.25rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--turquoise-dark);
    color: var(--white);
    border-color: var(--turquoise-dark);
}
.btn-primary:hover {
    background: var(--turquoise-deeper);
    border-color: var(--turquoise-deeper);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(58, 172, 172, 0.38);
}

.btn-outline {
    background: transparent;
    color: var(--turquoise-dark);
    border-color: var(--turquoise-dark);
}
.btn-outline:hover {
    background: var(--turquoise-pale);
    transform: translateY(-2px);
}

.btn-large { padding: 1rem 2.6rem; font-size: 0.95rem; }

/* ── Scroll Reveal ── */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 1px 0 var(--border), var(--shadow);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    transition: color 0.25s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: var(--turquoise-dark);
    border-radius: 1px;
    transition: width 0.3s var(--ease);
}
.nav-link:hover,
.nav-link.active { color: var(--turquoise-dark); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, #edf8f8 55%, var(--turquoise-pale) 100%);
    padding-top: var(--nav-h);
}

/* back.jpg als dekoratives Hintergrundelement */
.hero-deco-bg {
    position: absolute;
    top: 0; right: 0;
    width: 42%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.hero-deco-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.13;
    filter: saturate(0.6);
    will-change: transform;
}

/* Sanfter Farbverlauf über das Dekobild */
.hero-deco-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #edf8f8 0%, transparent 40%, transparent 100%);
}

.hero-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--turquoise-dark);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-style: italic;
    font-family: var(--font-display);
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 460px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Portrait-Bild im Hero */
.hero-image { display: flex; justify-content: center; }

.hero-img-wrapper {
    position: relative;
    display: inline-block;
}

/* Türkiser Zierkreis hinter dem Foto */
.hero-img-wrapper::before {
    content: '';
    position: absolute;
    top: -24px; right: -24px;
    width: 88%;  height: 88%;
    background: var(--turquoise-pale);
    border-radius: 46% 54% 44% 56% / 50% 48% 52% 50%;
    z-index: 0;
    animation: morphBlob 8s ease-in-out infinite alternate;
}

/* Kleiner Akzent-Kreis unten links */
.hero-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -18px; left: -18px;
    width: 36%;   height: 36%;
    background: var(--turquoise-light);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.55;
}

@keyframes morphBlob {
    0%   { border-radius: 46% 54% 44% 56% / 50% 48% 52% 50%; }
    50%  { border-radius: 52% 48% 56% 44% / 44% 54% 46% 56%; }
    100% { border-radius: 42% 58% 50% 50% / 54% 42% 58% 46%; }
}

.hero-portrait {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Scroll-Indikator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--turquoise-dark), transparent);
    animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; transform: scaleY(1); }
    50%       { opacity: 1;    transform: scaleY(1.08); }
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about {
    padding: 9rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Bild-Collage links */
.about-images {
    position: relative;
    height: 560px;
}

/* Türkiser Deko-Block hinter den Fotos */
.about-images::before {
    content: '';
    position: absolute;
    top: 20px; left: -16px;
    width: 55%; height: 50%;
    background: var(--turquoise-pale);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 68%; height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s var(--ease);
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 58%; height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    z-index: 3;
}
.about-img-secondary img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s var(--ease);
}
.about-img-secondary:hover img { transform: scale(1.04); }

/* Inhalt rechts */
.about-text {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.96rem;
}
.about-text strong { color: var(--text-dark); }

.about-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.highlight-icon {
    color: var(--turquoise-dark);
    font-size: 1.1rem;
    line-height: 1.65;
    flex-shrink: 0;
}
.highlight-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.highlight-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ════════════════════════════════
   PARALLAX QUOTE
════════════════════════════════ */
.parallax-section {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -25%;
    background-image: url('../images/back.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.5);
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 860px;
    padding: 0 3rem;
}

.parallax-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.35rem, 2.5vw, 1.95rem);
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    border: none;
}

.parallax-quote::before { content: '„'; }
.parallax-quote::after  { content: '"'; }

.parallax-cite {
    font-size: 0.8rem;
    font-style: normal;
    letter-spacing: 0.15em;
    color: var(--turquoise-light);
    text-transform: uppercase;
    display: block;
}

/* ════════════════════════════════
   PROWIN PARTY
════════════════════════════════ */
.party {
    padding: 9rem 0;
    background: var(--bg-light);
}

.party-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.party-intro {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.party-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 4rem;
}

.party-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.party-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.party-card-icon { font-size: 2.4rem; margin-bottom: 1.1rem; }

.party-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.party-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.party-cta-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.party-cta-box h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--text-dark);
}

.party-cta-box p {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.8;
}

/* ════════════════════════════════
   PRODUCT TEASER
════════════════════════════════ */
.product-teaser {
    overflow: hidden;
}

.teaser-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}

.teaser-img {
    position: relative;
    overflow: hidden;
}
.teaser-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.9s var(--ease);
    display: block;
}
.teaser-img:hover img { transform: scale(1.05); }

.teaser-badge {
    position: absolute;
    bottom: 2rem; left: 2rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    padding: 0.65rem 1.2rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    box-shadow: var(--shadow);
}

.teaser-text {
    background: var(--turquoise-pale);
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
}
.teaser-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.96rem;
}

/* ════════════════════════════════
   KONTAKT PAGE
════════════════════════════════ */

/* Status-Leiste oben */
.form-status-bar {
    display: none;
    padding: 1.1rem 2rem;
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: center;
}
.form-status-bar.is-visible { display: block; }
.form-status-bar--success {
    background: #d4f5e9;
    color: #1a6644;
    border-bottom: 2px solid #6ee0b4;
}
.form-status-bar--error {
    background: #fde8e8;
    color: #8b1a1a;
    border-bottom: 2px solid #f5a0a0;
}
.form-status-bar a { color: inherit; font-weight: 700; }

/* Kontakt Hauptbereich */
.kontakt-section {
    padding: 7rem 0 8rem;
    background: var(--white);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

/* Linke Spalte */
.kontakt-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
}
.kontakt-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.7s var(--ease);
}
.kontakt-img-wrapper:hover img { transform: scale(1.03); }

.kontakt-img-badge {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.kontakt-details-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.kontakt-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.kontakt-item:last-child { border-bottom: none; }

.kontakt-icon {
    width: 38px; height: 38px;
    background: var(--turquoise-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--turquoise-dark);
    flex-shrink: 0;
}

.kontakt-item-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--turquoise-dark);
    margin-bottom: 0.2rem;
}

.kontakt-item-value {
    display: block;
    font-size: 0.93rem;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
a.kontakt-item-value:hover { color: var(--turquoise-dark); }

.kontakt-item-note {
    display: block;
    font-size: 0.76rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.15rem;
}

/* Rechte Spalte: Formular */
.kontakt-form-wrapper {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--border);
    transition: opacity 0.4s;
}
.kontakt-form-wrapper.form-sent { opacity: 0.5; pointer-events: none; }

.kontakt-form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.kontakt-form-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Formular-Elemente */
.kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.04em;
}
.form-required { color: var(--turquoise-dark); }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    appearance: none;
}
.form-input:focus {
    border-color: var(--turquoise-dark);
    box-shadow: 0 0 0 3px rgba(58, 172, 172, 0.12);
}
.form-input::placeholder { color: #aabebe; }
.form-input--error {
    border-color: #e05555 !important;
    box-shadow: 0 0 0 3px rgba(224, 85, 85, 0.1) !important;
}

.form-textarea { resize: vertical; min-height: 120px; }

/* Select */
.form-select-wrapper { position: relative; }
.form-select { padding-right: 2.5rem; cursor: pointer; }
.form-select-arrow {
    position: absolute;
    right: 0.9rem; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

/* Fieldset */
.form-fieldset {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.25rem 1rem;
    background: var(--white);
}
.form-fieldset-legend {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 0 0.4rem;
    letter-spacing: 0.04em;
}
.form-fieldset-hint {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.form-contact-error {
    font-size: 0.82rem;
    color: #c0392b;
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-weight: 700;
}

/* Party-Felder */
.party-fields { display: flex; flex-direction: column; gap: 1rem; }
.party-fields[hidden] { display: none; }

.party-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff8e8;
    border: 1.5px solid #f5d87a;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}
.party-notice-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.party-notice strong { display: block; color: #7a5800; font-size: 0.88rem; margin-bottom: 0.3rem; }
.party-notice p { font-size: 0.83rem; color: #7a5800; margin: 0; line-height: 1.6; }

/* Submit Button */
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }

/* Responsive */
@media (max-width: 900px) {
    .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
    .kontakt-form-wrapper { padding: 2rem 1.5rem; }
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════
   PROWIN PARTY PAGE
════════════════════════════════ */

/* Page Hero */
.page-hero {
    padding: calc(var(--nav-h) + 5rem) 0 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--white) 0%, var(--turquoise-pale) 100%);
    text-align: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.07;
    filter: saturate(0.5);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--text-dark);
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
}

.page-hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Konzept Section */
.pp-concept {
    padding: 8rem 0;
    background: var(--white);
}

.pp-concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pp-concept-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
}
.pp-concept-text p strong { color: var(--text-dark); }

.pp-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.pp-img-wrapper img {
    width: 100%; height: 520px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.7s var(--ease);
}
.pp-img-wrapper:hover img { transform: scale(1.03); }

.pp-img-badge {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(10px);
    padding: 0.65rem 1.2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

/* Ablauf / Steps */
.pp-ablauf {
    padding: 8rem 0;
    background: var(--bg-light);
}

.pp-ablauf-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}
.pp-ablauf-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.pp-steps {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pp-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.pp-step:last-child { border-bottom: none; }

.pp-step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--turquoise-light);
    line-height: 1;
    padding-top: 4px;
    transition: color 0.3s;
}
.pp-step:hover .pp-step-number { color: var(--turquoise-dark); }

.pp-step-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.pp-step-content p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* Fun Factor */
.pp-fun {
    padding: 8rem 0;
    background: var(--white);
}

.pp-fun-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.pp-fun-images {
    position: relative;
    height: 520px;
}

.pp-fun-images::before {
    content: '';
    position: absolute;
    bottom: 20px; right: -16px;
    width: 55%; height: 45%;
    background: var(--turquoise-pale);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.pp-fun-img-main {
    position: absolute;
    top: 0; right: 0;
    width: 70%; height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.pp-fun-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s var(--ease);
}
.pp-fun-img-main:hover img { transform: scale(1.04); }

.pp-fun-img-secondary {
    position: absolute;
    bottom: 0; left: 0;
    width: 58%; height: 52%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    z-index: 3;
}
.pp-fun-img-secondary img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s var(--ease);
}
.pp-fun-img-secondary:hover img { transform: scale(1.04); }

.pp-fun-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
}

.pp-fun-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.pp-fun-tag {
    background: var(--turquoise-pale);
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* CTA Section */
.pp-cta-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.pp-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.pp-cta-text {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.pp-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive ProWin Party */
@media (max-width: 900px) {
    .pp-concept-grid,
    .pp-fun-grid { grid-template-columns: 1fr; gap: 3rem; }

    .pp-concept-image { order: -1; }
    .pp-img-wrapper img { height: 340px; }

    .pp-fun-images { height: 400px; }

    .pp-step { grid-template-columns: 60px 1fr; gap: 1.25rem; }
    .pp-step-number { font-size: 2rem; }
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.65);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 34px;
    width: auto;
    align-self: flex-start;
    background: white;
    padding: 5px 10px;
    border-radius: 6px;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer-nav-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
}

.footer-nav-list a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--turquoise-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════
   REFERENZEN – Intro
════════════════════════════════ */
.ref-intro {
    padding: 7rem 0 5rem;
    background: var(--white);
}

.ref-intro-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5rem;
    align-items: center;
}

.ref-intro-text p {
    color: var(--text-muted);
    font-size: 0.97rem;
    margin-bottom: 1.1rem;
}

.ref-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 200px;
}

.ref-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: var(--turquoise-pale);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.ref-stat-zahl {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--turquoise-dark);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.ref-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ════════════════════════════════
   REFERENZEN – Galerie
════════════════════════════════ */
.galerie-section {
    padding: 0 0 8rem;
    background: var(--white);
}

/* Filter-Tabs */
.galerie-filter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.galerie-filter-btn {
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    letter-spacing: 0.04em;
}
.galerie-filter-btn:hover {
    border-color: var(--turquoise-dark);
    color: var(--turquoise-dark);
}
.galerie-filter-btn.active {
    background: var(--turquoise-dark);
    border-color: var(--turquoise-dark);
    color: var(--white);
}

/* Grid */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.galerie-item {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.galerie-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.galerie-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-light);
}
.galerie-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s var(--ease);
}
.galerie-item:hover .galerie-thumb img {
    transform: scale(1.06);
}

.galerie-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58, 172, 172, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.galerie-item:hover .galerie-thumb-overlay { opacity: 1; }

.galerie-thumb-zoom {
    font-size: 2rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.galerie-caption {
    padding: 0.9rem 1rem 1rem;
}

.galerie-jahr {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--turquoise-dark);
    margin-bottom: 0.3rem;
}

.galerie-caption p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ════════════════════════════════
   LIGHTBOX
════════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.is-open {
    visibility: visible;
    opacity: 1;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 22, 0.92);
    backdrop-filter: blur(6px);
}

.lb-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 95vw;
    max-height: 95vh;
    padding: 0 1rem;
}

.lb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: min(780px, 80vw);
}

.lb-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 72vh;
}

.lb-img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
    display: block;
    transition: opacity 0.2s;
}

.lb-info {
    text-align: center;
    max-width: 600px;
}

.lb-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.4rem;
}

.lb-jahr {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--turquoise-light);
}

.lb-counter {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
}

.lb-titel {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.lb-caption {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
}

/* Navigation Buttons */
.lb-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.lb-btn:hover { background: rgba(255,255,255,0.2); }
.lb-btn:disabled { opacity: 0.25; cursor: default; transform: none !important; }
.lb-btn:not(:disabled):hover { transform: scale(1.08); }

.lb-schliessen {
    position: absolute;
    top: -3.5rem;
    right: 0;
    background: rgba(255,255,255,0.15);
}

/* Responsive Galerie */
@media (max-width: 900px) {
    .ref-intro-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ref-intro-stats {
        flex-direction: row;
        min-width: 0;
    }
    .ref-stat { flex: 1; }

    .galerie-grid { grid-template-columns: repeat(2, 1fr); }

    .lb-inner { gap: 0.5rem; padding: 0 0.5rem; }
    .lb-content { max-width: 90vw; }
    .lb-nav { display: none; }
}

@media (max-width: 500px) {
    .galerie-grid { grid-template-columns: 1fr; }
    .ref-intro-stats { flex-direction: column; }
}

/* ════════════════════════════════
   LEGAL PAGE (Impressum etc.)
════════════════════════════════ */
.legal-page {
    padding: calc(var(--nav-h) + 4rem) 0 6rem;
    min-height: 100vh;
    background: var(--white);
}

.legal-content {
    max-width: 740px;
    margin: 0 auto;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--turquoise-pale);
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.legal-section p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section a {
    color: var(--turquoise-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.legal-section a:hover { color: var(--turquoise-deeper); }

/* ════════════════════════════════
   EMPTY PAGES (Coming Soon)
════════════════════════════════ */
.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-h);
    background: linear-gradient(135deg, var(--white) 0%, var(--turquoise-pale) 100%);
}

.coming-soon-inner {
    text-align: center;
    max-width: 520px;
    padding: 2rem;
}

.coming-soon-inner .section-title { margin-top: 1rem; }

.coming-soon-inner p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.coming-soon-deco {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
    .about-grid,
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-container { text-align: center; padding: 4rem 2rem; }
    .hero-ctas { justify-content: center; }
    .hero-image { order: -1; }
    .hero-portrait { max-width: 300px; }
    .hero-description { margin: 0 auto 2.25rem; }

    .about-images { height: 420px; margin: 0 auto; max-width: 420px; }

    .party-grid { grid-template-columns: 1fr; }

    .teaser-strip { grid-template-columns: 1fr; }
    .teaser-img { height: 360px; }
    .teaser-text { padding: 3rem 2rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    /* Navbar immer sichtbar auf Mobile (nicht erst nach Scroll) */
    .navbar:not(.scrolled) {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        box-shadow: 0 1px 0 var(--border);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h); left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(22px);
        flex-direction: column;
        padding: 2rem 2.5rem;
        gap: 1.5rem;
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .nav-links.is-open { display: flex; }
    .nav-toggle { display: flex; }

    .party-cta-box { padding: 2.5rem 1.5rem; }
    .hero-scroll-indicator { display: none; }
}

/* ════════════════════════════════
   SMALL SCREENS (≤ 480px)
════════════════════════════════ */
@media (max-width: 480px) {
    /* Weniger seitlicher Abstand auf sehr kleinen Screens */
    .container { padding: 0 1.25rem; }
    .nav-container { padding: 0 1.25rem; }

    /* Hero: Dekorationsblobs verstecken, damit kein seitlicher Überlauf entsteht */
    .hero-img-wrapper::before,
    .hero-img-wrapper::after { display: none; }
    .hero-portrait { max-width: 220px; border-radius: 14px; }

    /* About-Bildcollage etwas kleiner */
    .about-images { height: 320px; max-width: 320px; }

    /* Parallax-Banner etwas kompakter */
    .parallax-section { height: 300px; }
    .parallax-content { padding: 0 1.25rem; }

    /* Sections weniger Padding oben/unten */
    .about,
    .party { padding: 5rem 0; }
}

/* ════════════════════════════════
   REDUCED MOTION
════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-img-wrapper::before { animation: none; }
    .scroll-line { animation: none; }
}
