/*
Theme Name: Filemon
Theme URI: https://filemonai.mx/
Author: Filemon AI
Description: Tema ultraligero de una sola pantalla para Filemon. Fondo #E4007C y logotipo centrado.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: filemon
*/

:root {
    --filemon-bg: #E4007C;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background: var(--filemon-bg);
    overflow: hidden;
}

.filemon-screen {
    width: 100vw;
    height: 100vh;
    height: 100dvh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--filemon-bg);
    padding: 24px;
}

.filemon-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.filemon-logo {
    display: block;
    width: min(420px, 72vw);
    max-height: 46vh;
    height: auto;
    object-fit: contain;
}

.filemon-fallback {
    margin: 0;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(56px, 10vw, 140px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.06em;
}

@media (max-width: 600px) {
    .filemon-screen {
        padding: 20px;
    }

    .filemon-logo {
        width: min(320px, 78vw);
    }
}
