/* status/status.css — Status page styles, matching the main site */

@font-face {
    font-family: 'Helvetica-BlackItalic';
    src: url('../fonts/Helvetica-BlackItalic Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Consolas';
    src: url('../fonts/consolas.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tahoma';
    src: url('../fonts/tahoma.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ---- Reset / base ---- */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 16px;
    min-height: 100vh;
    font-family: Tahoma, Arial, sans-serif;
    background-color: #f0f0f0;
    background-image: url('../bliss.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #111;
}

/* ---- Header ---- */

#header {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 14px;
    text-align: center;
}

#header h1 {
    font-family: 'Helvetica-BlackItalic', Arial, sans-serif;
    font-weight: bolder;
    font-style: italic;
    font-size: 2rem;
    margin: 8px 0 4px;
}

@media (orientation: portrait), (max-width: 700px) {
    #status-grid {
        flex-direction: column;
    }
    .status-panel {
        width: 100%;
    }
    body {
        padding: 10px;
    }
}

/* ---- Desktop ---- */

@media (orientation: landscape) and (min-width: 701px) {
    #status-grid {
        flex-direction: row;
    }
}
