/*
Theme Name: Identifungi Base
Theme URI: https://identifungi.com
Author: Your Name
Description: Clean theme with Kagodora clock header – for nature validation platform.
Version: 1.0
License: GPL v2 or later
Text Domain: identifungi-base
*/

/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #fef9e8;
    color: #1e1e1e;
    line-height: 1.5;
}

/* Main content area */
.site-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Kagodora clock bar (fixed top) */
.clock-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FCC907;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    box-sizing: border-box;
}
.compact-clock {
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 40px;
    padding: 5px 15px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.clock-logo {
    height: 35px;
    width: auto;
}
.compact-clock-item {
    background: #004EC3;
    padding: 6px 12px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    font-family: monospace;
    font-size: 12px;
    min-width: 55px;
    text-align: center;
}
.compact-clock-item span {
    font-size: 16px;
    font-weight: bold;
    display: block;
}
@media (max-width: 768px) {
    .clock-top-bar { padding: 5px 10px; }
    .compact-clock-item { font-size: 10px; min-width: 45px; }
    .compact-clock-item span { font-size: 13px; }
    .clock-logo { height: 25px; }
}

/* Basic WordPress alignment */
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
.aligncenter { display: block; margin: 0 auto; }