/*
Theme Name: Aluminper CRM Theme
Theme URI: https://horizonfinder.cz
Author: Lukáš Slíva
Author URI: https://horizonfinder.cz
Description: Ultra minimalistická šablona pro Partyzan CRM - pouze fullscreen kanban.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: partyzan-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f5f5;
    color: #212610;
}

/* Fullscreen content */
.site-content {
    min-height: 100vh;
    width: 100%;
}

/* Homepage styling */
.home-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #45BB99;
    color: white;
    text-align: center;
    padding: 20px;
}

.home-hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.home-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 400;
}

.home-hero .subtitle a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.home-hero .subtitle a:hover {
    border-bottom-color: white;
}

.home-hero .enter-btn {
    margin-top: 40px;
    padding: 15px 40px;
    background: #B4EB1E;
    color: #212610;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-hero .enter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Hide WordPress admin bar */
#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

/* CRM page - no padding/margin */
.page-template-default .site-content {
    padding: 0;
    margin: 0;
}

#partyzan-crm-root {
    min-height: 100vh;
}
