/* Base styles - Alapvető stílusok */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Crimson Text', serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #e8e6e3 0%, #d5d3d0 50%, #e0ddd9 100%);
    background-attachment: fixed;
    color: #404040;
    min-height: 100vh;
}

@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #2a2725 0%, #1f1e1c 50%, #252220 100%);
        color: #d4d0c8;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #2a2a2a;
    font-weight: 500;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    letter-spacing: 0.3px;
}

@media (prefers-color-scheme: dark) {
    h1, h2, h3, h4, h5, h6 {
        color: #d4d0c8;
    }
}

h1 {
    font-size: 2.5em;
    margin-top: 0;
    border-bottom: 2px solid #6d5a47;
    padding-bottom: 0.4em;
    color: #6d5a47;
    text-align: center;
}

@media (prefers-color-scheme: dark) {
    h1 {
        border-bottom: 2px solid #b4a082;
        color: #b4a082;
    }
}

h2 {
    font-size: 1.8em;
    color: #8b0000;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
    margin-left: -19px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
}

h3 {
    font-size: 1.4em;
    color: #666;
}

p {
    margin-bottom: 1.4em;
    font-size: 1.05em;
    text-align: justify;
    color: #333;
}

@media (prefers-color-scheme: dark) {
    p {
        color: #c4c0b8;
    }
}

a {
    color: #8b0000;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #d4af37;
    border-bottom: 1px solid #d4af37;
}

ul, ol {
    margin-bottom: 1.4em;
}

li {
    margin-bottom: 0.6em;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    margin: 2em 0;
    display: block;
    border: 2px solid #a8a098;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    filter: sepia(8%) contrast(1.02) brightness(0.92) saturate(0.9);
    box-sizing: border-box;
}

em {
    font-style: italic;
    color: #707070;
    font-size: 0.95em;
    display: block;
    text-align: center;
    margin: 1em 0;
    padding: 0.8em;
    background: #ece9e5;
    border-left: 3px solid #a8a098;
    border-radius: 0 4px 4px 0;
}

@media (prefers-color-scheme: dark) {
    em {
        background: #3a362f;
        color: #b4b0a8;
        border-left: 3px solid #6a6258;
    }
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a8a098, transparent);
    margin: 3em 0;
}

/* Code */
code {
    background: #f4f4f4;
    color: #8b0000;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 0.9em;
    border: 1px solid #ddd;
}

pre {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    overflow-x: auto;
    font-size: 0.9em;
}

pre code {
    background: none;
    padding: 0;
    border: none;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #8b0000;
    background: #f9f7f4;
    margin: 30px 0;
    padding: 20px 25px;
    font-style: italic;
    font-size: 1.1em;
    color: #444;
    position: relative;
}

blockquote::before {
    content: '"';
    font-size: 3em;
    color: #d4af37;
    position: absolute;
    left: 10px;
    top: -5px;
    font-family: 'Playfair Display', serif;
    opacity: 0.5;
}
