:root {
    --accent: #d4af37;
    --accent-soft: #2a2416;
    --bg: #0b0b0d;
    --bg-alt: #131316;
    --text: #f2f2f2;
    --muted: #9a9a9f;
    --border: #232327;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

a { color: inherit; }

/* ===== Vollbild ohne Scroll (z.B. Startseite) ===== */
body.no-scroll {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

body.no-scroll .site-header,
body.no-scroll .site-footer { flex-shrink: 0; }

body.no-scroll .hero {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.no-scroll .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.no-scroll .site-footer { margin-top: 0; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.2rem;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(11,11,13,.85);
    backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
}

.brand-icon { width: 68px; height: 68px; border-radius: 12px; object-fit: contain; }

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: .95;
}

.brand-small {
    font-family: 'Cormorant Garamond', serif;
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    z-index: 1;
}

.brand-small:first-child { margin-bottom: -.3em; }
.brand-small:last-child { margin-top: -.3em; }

.brand-big {
    font-family: 'Caveat', cursive;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .01em;
    position: relative;
    z-index: 2;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-start {
    text-decoration: none;
    color: var(--muted);
    font-size: .95rem;
    padding: .6rem 1.1rem;
    border-radius: 999px;
    transition: color .15s, background .15s;
}

.nav-start:hover { color: var(--text); background: var(--bg-alt); }
.nav-start.active { color: #111; background: var(--accent); font-weight: 600; }

.nav-bubble-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-bubble {
    position: relative;
    display: inline-block;
    height: 52px;
}

.nav-bubble-img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-bubble-img-a { position: relative; }

.nav-bubble-img-b {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .6s ease;
}

.nav-bubble-link:hover .nav-bubble-img-b {
    clip-path: inset(0 0 0 0);
}

@media (max-width: 720px) {
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 96px;
        left: 0;
        right: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        background: var(--bg-alt);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
    }
    .main-nav.open { display: flex; }
}

/* ===== Hero ===== */
.hero {
    width: 100%;
    line-height: 0;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Unterseiten-Hero (z.B. Magie) ===== */
.page-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.55));
    padding: 1.5rem;
}

.page-hero-overlay h1 {
    font-size: 2.6rem;
    margin: 0;
    color: #fff;
}

.page-hero-overlay p {
    color: #e8e8e8;
    font-size: 1.1rem;
    margin: 0;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0,0,0,.4);
    border: 1px solid rgba(212,175,55,.4);
    color: var(--accent);
    font-size: .85rem;
    font-weight: 600;
    padding: .4rem 1rem;
    border-radius: 999px;
    margin-bottom: .3rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
    margin-top: .6rem;
}

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

.hero-stat-num {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: .75rem;
    color: #d8d8d8;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.btn-cta {
    margin-top: .5rem;
    padding: .8rem 1.8rem;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s;
}

.btn-cta:hover { transform: translateY(-2px); }

/* ===== Referenz-Spinwheel ===== */
.wheel-section {
    text-align: center;
    padding: 4rem 1rem;
}

.wheel-section h2 {
    color: var(--muted);
    font-size: 1rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.wheel {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    animation: wheel-spin 32s linear infinite;
}

.wheel:hover { animation-play-state: paused; }
.wheel:hover .wheel-item img { animation-play-state: paused; }

.wheel-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 64px;
    margin: -32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(calc(360deg / var(--count) * var(--i))) translate(130px) rotate(calc(-360deg / var(--count) * var(--i)));
}

.wheel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: wheel-spin-reverse 32s linear infinite;
    filter: grayscale(1) brightness(1.6);
    opacity: .75;
    transition: opacity .2s, filter .2s;
}

.wheel-item:hover img {
    filter: none;
    opacity: 1;
}

@keyframes wheel-spin { to { transform: rotate(360deg); } }
@keyframes wheel-spin-reverse { to { transform: rotate(-360deg); } }

/* ===== Pakete ===== */
.packages-section {
    padding: 3rem 1.2rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.packages-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.package-card {
    position: relative;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.8rem;
}

.package-card.highlight { border-color: var(--accent); }

.package-badge {
    position: absolute;
    top: -.7rem;
    right: 1.2rem;
    background: var(--accent);
    color: #111;
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 999px;
}

.package-card h3 { margin-top: 0; }
.package-price { color: var(--accent); font-weight: 700; font-size: 1.1rem; margin-bottom: .8rem; }
.package-card p { color: var(--muted); font-size: .92rem; }
.package-card ul { padding-left: 1.1rem; font-size: .9rem; color: #ccc; margin-bottom: 1.4rem; }
.package-card li { margin-bottom: .3rem; }

.package-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: background .15s, color .15s;
}

.package-card.highlight .package-cta {
    background: var(--accent);
    color: #111;
}

.package-cta:hover { background: var(--accent); color: #111; }

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 3rem 1.2rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-section h2 { text-align: center; margin-bottom: 2rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem;
}

.testimonial-stars {
    color: var(--accent);
    letter-spacing: .15em;
    margin-bottom: .7rem;
}

.testimonial-text {
    color: #ddd;
    font-size: .95rem;
    font-style: italic;
    margin: 0 0 1rem;
}

.testimonial-author {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 3rem 1.2rem 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 { text-align: center; margin-bottom: 2rem; }

.faq-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: .8rem;
    padding: .2rem 1.2rem;
}

.faq-item summary {
    cursor: pointer;
    padding: 1rem 0;
    font-weight: 600;
    color: #fff;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 1rem;
    color: var(--accent);
    font-size: 1.2rem;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0 0 1rem;
}

/* ===== Kontakt-Platzhalter ===== */
.contact-section {
    padding: 3rem 1.2rem 5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.page-hint-public { color: var(--muted); }

/* ===== Footer ===== */
.site-footer {
    background: #000;
    margin-top: 4rem;
    padding: 1.4rem 0;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: .85rem;
    flex: 1;
}

.footer-legal a { text-decoration: none; color: var(--muted); }
.footer-legal a:hover { color: var(--accent); }

.footer-center {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex: 1;
    justify-content: center;
}

.footer-logo { width: 28px; height: 28px; border-radius: 6px; object-fit: contain; }

.footer-copyright {
    font-size: .8rem;
    color: var(--muted);
}

.footer-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials img { width: 26px; height: 26px; object-fit: contain; transition: transform .15s; }
.footer-socials a:hover img { transform: translateY(-2px); }

.footer-social-fallback {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
}
