/*
Theme Name: GetSecure Placeholder
Theme URI: https://getsecure.se/
Author: Niklas
Author URI: https://getsecure.se/
Description: Minimal placeholder för GetSecure – en lugn, enkel landningssida.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: getsecure-placeholder
*/

:root {
    --gs-bg: #050816;
    --gs-accent: #d64562;
    --gs-text: #f5f5f5;
}

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

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #101632 0, var(--gs-bg) 45%, #02030a 100%);
    color: var(--gs-text);
    min-height: 100vh;
    display: flex;
}

.gs-wrapper {
    margin: auto;
    max-width: 720px;
    padding: 2.5rem 1.75rem 3rem;
    text-align: center;
}

.gs-logo {
    max-width: 420px;
    width: 80%;
    height: auto;
    margin: 0 auto 1.75rem;
    display: block;
}

.gs-tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(245,245,245,0.24);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.gs-title {
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.gs-subtitle {
    font-size: 1rem;
    opacity: 0.85;
    margin: 0 0 1.75rem;
}

.gs-muted {
    font-size: 0.85rem;
    opacity: 0.7;
}

.gs-link {
    color: var(--gs-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(245,245,245,0.4);
}

.gs-link:hover {
    border-bottom-color: rgba(245,245,245,0.9);
}

.gs-footer {
    margin-top: 2.25rem;
    font-size: 0.8rem;
    opacity: 0.65;
}

/* Lite bättre spacing på mobiler */
@media (max-width: 480px) {
    .gs-wrapper {
        padding: 2rem 1.25rem 2.5rem;
    }
}
