/* ============================================================
 * client.screen.css — Screen Display (Digital Signage)
 * ============================================================
 * Wird zusätzlich zu client.css.php (Fonts + Frontend-CSS) geladen,
 * wenn der Client ein Screen-Display ist (z.B. screen.ringcenter.berlin).
 * Enthält ausschließlich Display-spezifische Styles, gescoped auf
 * body.screen-display.
 */

/* ── Typografie (Custom-Font "header" aus ANOXA @font-face) ─────────── */
h1, h2, h3 {
    font-family: header;
    font-weight: normal !important;
    text-transform: uppercase;
}

a { text-decoration: none; }

/* ── Screen Display ─────────────────────────────────────────────────── */
body.screen-display {
    overflow: hidden;
    background: #000;
}

/* Info-Button (unten zentriert, pulsierend) */
.screen-display .smenu {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    z-index: 100;
    border-radius: 50%;
    animation: pulse-black 2s infinite;
}

.screen-display .smenu img {
    width: 150px !important;
    height: 150px !important;
    padding: 10px;
}

/* Infomenu-Overlay (Fullscreen) */
.screen-display .menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    color: #FFF;
    z-index: 200;
    overflow-y: auto;
}

.screen-display .bcontainer {
    position: relative;
    width: 80%;
    padding: 30px;
    margin: 0 auto;
}

/* Help-Menu-Reiter (farbige Buttons) */
.screen-display .helpmenu {
    position: relative !important;
    margin: 50px auto !important;
    text-align: center;
    padding: 80px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.screen-display .helpmenu:hover,
.screen-display .helpmenu:active {
    opacity: 0.8;
    transform: scale(0.98);
}

.screen-display .helpmenu img {
    width: auto !important;
    height: 150px !important;
    padding: 30px;
}

.screen-display .menu h1 {
    color: #FFF !important;
    text-align: center;
}

/* Close-Button im Detail-Overlay */
.screen-display .close {
    position: fixed;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    z-index: 400;
}

.screen-display .close img {
    width: 100px !important;
    height: auto !important;
    padding: 20px !important;
    background: #000;
    border-radius: 50%;
}

/* Pulse-Animation für Info-Button */
@keyframes pulse-black {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 10px rgba(255,255,255,0.7); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}
