/*
Theme Name: Fundacja Hanza
Theme URI: https://hanza.pl
Author: BearCode
Author URI: https://bearcodetesty.pl
Description: Motyw dla Fundacji Żywej Historii Hanza - rekonstrukcja historyczna średniowiecza
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hanza
Tags: medieval, history, reenactment, custom-menu, custom-logo, featured-images, responsive

Fundacja Żywej Historii Hanza - motyw stworzony na podstawie projektu Django.
*/

/* ============================================
   ZMIENNE KOLORÓW
   ============================================ */
:root {
    --main-color: #141527;
    --bg-color: #729fb6;
    --second-bg-color: #B3D0DE;
    --text-color: #E5D283;
    --header-bg: #0e3457;
}

/* ============================================
   RESET I GLOBALNE STYLE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle, hsl(208.77deg 72.28% 19.8%) 38%, hsl(208.77deg 72.54% 14.69%) 99%);
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============================================
   TYPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'MedievalSharp', serif;
    color: var(--text-color);
    font-weight: 700;
}

h1 { font-size: clamp(3rem, 5.3vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }

p {
    line-height: 1.8;
    margin-bottom: 1em;
}

a {
    color: var(--second-bg-color);
    transition: color 0.3s ease;
}

a:hover {
    color: white;
}

/* ============================================
   ODSTĘPY OD HEADERA
   ============================================ */
.blank_up_line {
    height: 80px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--text-color); }
.bg-medieval { background: var(--bg-color); }

zloto {
    color: var(--text-color);
    font-weight: 700;
}

/* ============================================
   RESPONSYWNOŚĆ
   ============================================ */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .blank_up_line {
        height: 60px;
    }
}

/* ============================================
   WORDPRESS CORE CLASSES
   ============================================ */
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin: 0 auto; }

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5em;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9em;
    color: var(--second-bg-color);
}

.sticky { /* Style dla przyklejonych postów */ }
.gallery-caption { /* Style dla opisów galerii */ }
.bypostauthor { /* Style dla autora posta */ }

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    header, footer, .menu, .social-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
