/*
Theme Name: SRZ Rada Maintenance
Theme URI: https://wp.xandraone.com/products/srz-rada/
Author: XandraOne
Author URI: https://www.xandraone.com/
Description: Jednoduchá maintenance téma pre SRZ Rada. Zobrazuje pekné upozornenie o prebiehajúcej údržbe stránky.
Version: 1.0.0
License: GNU General Public License version 2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: srz-rada-maintenance
Requires PHP: 7.4
Tested up to: 6.8
Tags: full-site-editing

SRZ Rada Maintenance tema bola vytvorena spolocnostou XandraOne, 2026.
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #018763 0%, #015a42 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.maintenance-container {
    text-align: center;
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
}

.maintenance-logo {
    margin-bottom: 40px;
}

.maintenance-logo img {
    max-width: 200px;
    height: auto;
}

.maintenance-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.maintenance-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.maintenance-message {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.maintenance-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 30px;
}

.maintenance-progress-bar {
    height: 100%;
    background: #e3651c;
    border-radius: 3px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.maintenance-contact {
    font-size: 0.95rem;
    opacity: 0.8;
}

.maintenance-contact a {
    color: #ffb20e;
    text-decoration: none;
    font-weight: 600;
}

.maintenance-contact a:hover {
    text-decoration: underline;
}

.maintenance-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .maintenance-container {
        padding: 40px 20px;
    }
    .maintenance-title {
        font-size: 1.8rem;
    }
    .maintenance-message {
        font-size: 1rem;
    }
    .maintenance-icon {
        font-size: 60px;
    }
}
