/*
Theme Name: Daven Kross Base
Author: Daven Kross
Version: 1.0
Description: Minimalist base theme for multisite network.
*/

:root {
    /* Define your dark theme palette here */
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --accent-color: #bb86fc; /* A subtle purple/blue for accents */
    --link-color: #80cbc4;
    --header-bg: #1e1e1e;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

a { color: var(--link-color); }

.site-header {
    background-color: var(--header-bg);
    padding: 2rem;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-description {
    color: #aaaaaa;
    margin: 0;
    font-size: 0.9rem;
}

/* Ensure images don't look too bright in dark mode */
img { opacity: 0.9; }

.logo-container img {
    /* 'screen' hides black pixels, making the background effectively transparent */
    mix-blend-mode: screen; 
    
    /* Optional: If the logo still looks faint, use brightness to boost it */
    /* filter: brightness(1.2); */

    max-height: 80px; /* Adjust based on your logo size */
    width: auto;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
}

.site-description {
}