/* ============================================================
   Bauprojekt Einzelseite — Vertikales Rad
   bauprojekt-rad.css
   Ablageort: /wp-content/themes/CHILD-THEME/bauprojekte-rad/
   ============================================================ */

.bp-projekt-rad-outer {
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: ns-resize;
    user-select: none;
    -webkit-user-select: none;
    /* Höhe wird per JS gesetzt */
}

.bp-projekt-rad-scene {
    width: 100%;
    height: 100%;
    perspective: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bp-projekt-rad-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Jedes Item im Rad */
.bp-projekt-rad-item {
    position: absolute;
    overflow: hidden;
    border-radius: 3px;
    /* Größe und Position via JS */
}

/* Damit Bilder korrekt füllen */
.bp-projekt-rad-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text-Items */
.bp-projekt-rad-item.is-text {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}
.bp-projekt-rad-item.is-text * {
    max-width: 100%;
}

/* Grundriss */
.bp-projekt-rad-item.is-grundriss img {
    object-fit: contain;
}

/* Vorderstes Element */
.bp-projekt-rad-item.is-front {
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

/* Hinweis */
.bp-projekt-rad-hint {
    position: absolute;
    bottom: 12px;
    left: 0; right: 0;
    text-align: center;
    font-size: 11px;
    color: rgba(150,150,150,0.5);
    pointer-events: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .bp-projekt-rad-item.is-text { padding: 20px; }
}
