/*
Theme Name: Tema Transitorio FSC
Description: Tema temporal para utilizar durante el proceso de renovación del sitio web.
Version: 1.0.0
Text Domain: tema-transitorio-fsc
*/

:root {
    color-scheme: light;
    --text: #1f2933;
    --muted: #667085;
    --border: #e5e7eb;
    --background: #ffffff;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
    min-height: 100vh;
    background: var(--background);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.site-placeholder {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.site-placeholder__content {
    width: 100%;
    max-width: 680px;
    text-align: center;
}

.site-placeholder__logo {
    display: block;
    max-width: 220px;
    max-height: 120px;
    width: auto;
    height: auto;
    margin: 0 auto 32px;
}

.site-placeholder__name {
    margin: 0 0 18px;
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.1;
    font-weight: 650;
    letter-spacing: -0.035em;
}

.site-placeholder__title {
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 3vw, 1.55rem);
    font-weight: 600;
}

.site-placeholder__message {
    max-width: 520px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.site-placeholder__separator {
    width: 44px;
    height: 1px;
    margin: 30px auto;
    background: var(--border);
}

@media (max-width: 480px) {
    .site-placeholder { padding: 32px 20px; }
    .site-placeholder__logo { max-width: 180px; }
}
