/*
Theme Name: ZenVegan Clean
Theme URI: https://zenvegancrypto.com
Author: Robert
Description: Minimal clean theme for ZenVeganCrypto - displays content only, no bloat
Version: 1.0.0
License: GPL v2 or later
Text Domain: zenvegan-clean
*/

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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #fafafa;
}

/* Layout */
.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.site-branding {
    margin-bottom: 20px;
}

.site-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.site-title a {
    color: #2c5f2d;
    text-decoration: none;
}

.site-description {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

/* Navigation - HORIZONTAL */
.main-navigation {
    clear: both;
    margin-top: 15px;
}

.main-navigation ul,
.main-navigation ul li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-navigation ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 10px;
}

.main-navigation li {
    display: inline-block !important;
    float: none !important;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    padding: 10px 18px;
    display: inline-block !important;
    border-radius: 4px;
    transition: all 0.2s;
    background: #f0f0f0;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
    background: #2c5f2d;
    color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #2c5f2d;
    font-weight: 600;
    line-height: 1.3;
    margin: 1.5em 0 0.8em;
}

h1 { font-size: 2.5em; margin-top: 0; }
h2 { 
    font-size: 1.8em;
    border-bottom: 2px solid #97bc62;
    padding-bottom: 10px;
}
h3 { font-size: 1.4em; }
h4 { font-size: 1.2em; }

p {
    margin: 1em 0;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

a:hover {
    border-bottom-color: #2c5f2d;
}

/* Lists */
ul, ol {
    margin: 1em 0 1em 1.5em;
}

li {
    margin: 0.5em 0;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

.aligncenter,
figure.aligncenter {
    display: block;
    margin: 2em auto;
    text-align: center;
}

.wp-block-image {
    margin: 2em 0;
}

.wp-block-image.aligncenter {
    text-align: center;
}

.wp-block-image img {
    display: inline-block;
}

/* Separators */
.wp-block-separator,
hr {
    border: none;
    border-top: 2px solid #97bc62;
    margin: 2em auto;
    opacity: 0.6;
}

/* Plugin styles */
.zvc-hero-title {
    font-size: 2.5em;
    line-height: 1.3;
    color: #2c5f2d;
    margin-bottom: 0.5em;
}

.zvc-hero-subtitle {
    font-size: 1.3em;
    font-weight: 300;
    margin-bottom: 2em;
}

.zvc-intro {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.zvc-disclaimer {
    background: #fff3cd;
    border-left: 4px solid #f4a259;
    padding: 1em;
    margin: 1.5em 0;
}

.zvc-footer-note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 3em;
}

/* Footer */
.site-footer {
    background: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .site-title {
        font-size: 22px;
    }
    
    .main-navigation ul {
        gap: 8px;
    }
    
    .main-navigation a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    h1, .zvc-hero-title {
        font-size: 1.8em;
    }
    
    .content-area {
        padding: 20px 15px;
    }
}
