/*
Theme Name: 5meter Portal Theme
Theme URI: https://5meter.de
Description: Minimales Theme speziell für das Mitarbeiterportal - Keine Überschreibungen, volle Plugin-Kontrolle
Version: 1.0.0
Author: Kris
Author URI: https://5meter.de
Text Domain: 5meter-portal
Tags: minimal, portal, clean

Changelog:
v1.0.0 (13.11.2025):
- Initial Release
- Minimales HTML/CSS
- KEINE Theme-Styles die überschreiben
- Volle Kontrolle für Plugins
- Perfekt für Mitarbeiterportal
*/

/* ===================================
   RESET - Nur das Nötigste
   =================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* ===================================
   CONTAINER - Minimale Struktur
   =================================== */

.site-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

/* ===================================
   LINKS - Basis Styling
   =================================== */

a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #005177;
}

/* ===================================
   WORDPRESS ADMIN BAR FIX
   =================================== */

body.admin-bar {
    padding-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        padding-top: 46px;
    }
}

/* ===================================
   DAS WAR'S! 
   Alle anderen Styles kommen vom Plugin!
   =================================== */
