/*
Theme Name: peteITcms - Whisper Theme
Theme URI: https://peteitcms.com
Author: peteitcms.com
Author URI: https://peteitcms.com
Description: Ein minimalistisches Theme, passend zum Whisper Plugin. Max 800px Breite, sauberer Footer.
Version: 1.0.1
Text Domain: peteitcms-whisper
*/

:root {
    --wptc-teal: #075e54;
    --wptc-teal-light: #128c7e;
    --wptc-green: #25d366;
    --wptc-bg: #202c33;
    --wptc-white: #ffffff;
    --text-color: #111;
    --link-color: #075e54;
}

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--wptc-bg);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Layout */
#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header {
    background: var(--wptc-teal);
    color: #fff;
    padding: 0; /* Reduced padding for logo */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-branding {
    margin: 0;
    padding: 0;
}

/* Logo Styles */
.custom-logo-link {
    display: inline-block;
    max-width: 100%;
}

.custom-logo {
    display: block;
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
}

.site-title {
    margin: 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.site-title a {
    color: #fff;
    text-decoration: none;
}

.site-content {
    flex: 1;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    background: transparent;
}

/* If the content is just normal Pages/Post (not the feed) give it a card look */
.post-content-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

h1, h2, h3 {
    color: var(--wptc-teal);
    margin-top: 0;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    margin-top: auto;
    font-size: 14px;
    color: #666;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-navigation li {
    margin: 0;
}

.footer-navigation a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.footer-navigation a:hover {
    color: var(--wptc-teal);
}

.site-info {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
}
