/*
Theme Name: rallybazar.sk
Theme URI: https://rallybazar.sk/
Author: RallyBazar.sk
Description: Vlastná WordPress téma pre portál RallyBazar.sk. Úvodná verzia zobrazuje responzívnu stránku prebiehajúcej modernizácie.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: rallybazar-sk
*/

:root {
    color-scheme: dark;
}

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

html {
    min-height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 32px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
}

.site-main {
    width: 100%;
}

.card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 48px;
    text-align: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.logo-image,
.custom-logo {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto 32px;
}

.custom-logo-link {
    display: block;
}

.brand {
    margin-bottom: 32px;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.brand .gold {
    color: #d09300;
}

.brand .light {
    color: #e5e7eb;
}

h1 {
    margin-bottom: 24px;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
}

p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #d5d7dc;
}

.follow-up {
    margin-top: 22px;
}

.status {
    display: inline-block;
    margin-top: 36px;
    padding: 12px 24px;
    border: 1px solid rgba(208, 147, 0, .35);
    border-radius: 999px;
    background: rgba(208, 147, 0, .12);
    color: #f4d07a;
    font-weight: 600;
}

@media (max-width: 600px) {
    body {
        padding: 20px;
    }

    .card {
        padding: 42px 24px;
    }

    .logo-image,
    .custom-logo {
        max-width: 260px;
    }

    .brand {
        font-size: 34px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }
}

