/* ===================================================
   common.css - 공통 변수 및 공유 스타일
   시운전 Check Man | 한화오션
=================================================== */

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

:root {
    --bg: #EEEEEE;
    --text-primary: #2D2D2D;
    --text-secondary: #6B6B6B;
    --text-muted: #9E9E9E;
    --accent: #F37321;
    --navy: #1B3A5C;
    --green: #2E7D32;
    --purple: #6A1FA2;
    --white: #FFFFFF;
    --danger: #D32F2F;
    --btn-primary: #FD6E12;
    --input-bg: #F6F6F6;

    --neu-out: 8px 8px 16px rgba(156,163,174,0.45), -8px -8px 16px rgba(255,255,255,0.8);
    --neu-out-sm: 5px 5px 10px rgba(156,163,174,0.4), -5px -5px 10px rgba(255,255,255,0.75);
    --neu-in: inset 4px 4px 8px rgba(156,163,174,0.4), inset -4px -4px 8px rgba(255,255,255,0.7);

    --shadow-card: 0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);

    --radius: 28px;
    --radius-sm: 18px;
}

html, body {
    width: 1920px;
    height: 1080px;
    font-family: 'Pretendard', -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.kiosk {
    width: 1920px;
    height: 1080px;
    display: flex;
    flex-direction: column;
    padding: 36px 60px 28px;
}

/* ===== Top Bar ===== */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-box { display: flex; align-items: center; justify-content: center; }
.logo-box svg { height: 62px; width: auto; }

.brand h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.top-center {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    box-shadow: var(--neu-out-sm);
    padding: 12px 24px;
    border-radius: 40px;
}

.top-center svg { width: 18px; height: 18px; fill: var(--accent); }
.top-center span { font-size: 15px; font-weight: 600; color: var(--text-secondary); }

.top-right { text-align: right; }
.top-right .date { font-size: 15px; font-weight: 500; color: var(--text-secondary); }
.top-right .time {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
    line-height: 1.1;
}

/* ===== Bottom Bar ===== */
.bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 16px;
}

.bottom-contact { font-size: 13px; color: var(--text-muted); }
.bottom-brand { font-size: 14px; font-weight: 800; color: var(--navy); letter-spacing: 3px; }
