/**
 * B-Fashion Neheim - assets/css/style.css
 * =====================================================
 * Created by MikeGeorg 2026-03-24 12:28:46 +01:00 CET Version 1.0 (Styles Landing Page)
 */

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

html, body {
    width: 100%;
    height: 100%;
}

/* =====================================================
   LANDING PAGE
   ===================================================== */
body {
    background-image: url('../images/b-fashion-Neheim.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

@media (max-width: 768px) {
    body {
        background-image: url('../images/b-fashion-mobile.webp');
    }
}

/* =====================================================
   MOBILE PREVIEW
   ===================================================== */
body.preview-page {
    background-image: none;
    background: #1a1a2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: system-ui, sans-serif;
    gap: 40px;
    padding: 40px 20px;
}

body.preview-page h1 {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
}

.preview-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.device-label {
    color: #aaa;
    font-size: 13px;
    text-align: center;
}

.phone {
    width: 320px;
    height: 640px;
    border: 8px solid #333;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 2px #555, 0 20px 60px rgba(0,0,0,0.6);
    background: #000;
}

.phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #444;
    border-radius: 3px;
    z-index: 10;
}

.phone iframe {
    width: 375px;
    height: 750px;
    border: none;
    display: block;
    transform: scale(0.853);
    transform-origin: top left;
}

.tablet {
    width: 480px;
    height: 640px;
    border: 8px solid #333;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 2px #555, 0 20px 60px rgba(0,0,0,0.6);
    background: #000;
}

.tablet iframe {
    width: 768px;
    height: 1024px;
    border: none;
    display: block;
    transform: scale(0.625);
    transform-origin: top left;
}

.info-box {
    background: #16213e;
    border: 1px solid #0f3460;
    border-radius: 10px;
    padding: 16px 24px;
    color: #ccc;
    font-size: 13px;
    max-width: 680px;
    text-align: center;
    line-height: 1.7;
}

.info-box strong { color: #e94560; }
.info-box .ok { color: #4ade80; }
