/* Basic Reset & Body Styles */
body, h1, h2, h3, h4, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: 'Open Sans', sans-serif; /* Readable font for body text */
    background-color: #000; /* Solid black background */
    color: #f0f0f0; /* Off-white for readability */
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif; /* Strong, traditional heading font */
    color: #fff; /* Pure white for headings */
    margin-bottom: 15px;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; text-align: center; }
h3 { font-size: 1.8em; text-align: center; margin-top: 40px; }
h4 { font-size: 1.4em; }

p { margin-bottom: 1em; }

/* Header */
header {
    background-color: #1a1a1a; /* Dark gray for header, slightly off-black */
    padding: 10px 0;
    border-bottom: 2px solid #555; /* Subtle border for definition */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust as needed for your logo */
    margin-right: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2)); /* Subtle glow for the logo */
}

.logo h1 {
    font-size: 1.8em;
    color: #fff;
    margin: 0;
}

nav ul {
    display: flex;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: bold;
    transition: color 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
    background-color: #333;
    border-radius: 4px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') no-repeat center center/cover; /* Placeholder for a background image, maybe a sword or fighting scene */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-section h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-section .tagline {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #d0d0d0;
}

.btn {
    display: inline-block;
    background-color: #cc5500; /* Aggressive orange/red color */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #e66700;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: #444; /* Darker button for secondary action */
    border: 1px solid #777;
}
.btn.secondary:hover {
    background-color: #555;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
}

.blog-post {
    background-color: #1a1a1a; /* Darker background for individual posts */
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.blog-post h4 {
    color: #cc5500; /* Orange/red for blog post titles */
    margin-bottom: 10px;
}

.blog-post .meta {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 20px;
    border-bottom: 1px dashed #333;
    padding-bottom: 10px;
}

.blog-post p {
    color: #e0e0e0; /* Lighter gray for blog text for contrast */
    text-align: justify;
}

.read-more {
    display: inline-block;
    color: #cc5500;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e66700;
}

.view-all-posts {
    text-align: center;
    margin-top: 30px;
}

/* About & Contact Sections (general styling) */
.about-section, .contact-section {
    padding: 60px 0;
    text-align: center;
    background-color: #0d0d0d; /* Slightly different dark background */
    border-top: 1px solid #333;
}

.about-section p, .contact-section p {
    max-width: 700px;
    margin: 20px auto 30px auto;
    font-size: 1.1em;
    color: #d0d0d0;
}

/* Contact Form */
form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    padding: 12px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    font-size: 1em;
}

form input[type="text"]::placeholder,
form input[type="email"]::placeholder,
form textarea::placeholder {
    color: #bbb;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form button.btn {
    width: 100%;
    border: none;
    cursor: pointer;
}


/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #555;
    font-size: 0.9em;
    color: #aaa;
}

a {
    color: #cc5500;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        padding: 8px 12px;
    }

    .hero-section h2 {
        font-size: 2.5em;
    }

    .hero-section .tagline {
        font-size: 1.1em;
    }

    .btn {
        margin: 10px 5px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5em;
    }

    .hero-section h2 {
        font-size: 2em;
    }
}

/* --- Styles Specific to Full Blog Entries --- */

.entry-section {
    padding: 60px 0;
}

.full-blog-post {
    /* Uses the container max-width but gives some extra padding */
    background-color: #0a0a0a; /* Slightly lighter than pure black background for contrast */
    padding: 50px 60px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.full-blog-post .entry-title {
    font-size: 2.8em;
    text-align: left;
    color: #cc5500; /* Use aggressive orange for the main article title */
    border-bottom: 2px solid #555;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.full-blog-post .meta {
    font-size: 1em;
    color: #aaa;
    margin-bottom: 30px;
    font-style: italic;
    border-bottom: none; /* Override dashed border from index page */
}

.full-blog-post .sub-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.5em;
    color: #fff;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 15px;
}

.full-blog-post p {
    font-size: 1.1em; /* Slightly larger font for better reading */
    color: #e0e0e0;
    text-align: left;
}

.full-blog-post strong {
    color: #cc5500; /* Highlight key terms like Vorschlag in orange */
}

.comments-placeholder {
    margin-top: 40px;
    padding: 20px;
    background-color: #1a1a1a;
    border: 1px dashed #555;
    border-radius: 4px;
    text-align: center;
}

.back-link {
    display: inline-block;
    color: #999;
    text-decoration: none;
    margin-top: 30px;
    transition: color 0.3s ease;
    font-weight: bold;
}

.back-link:hover {
    color: #cc5500;
}

/* Ensure responsiveness for the full entry page */
@media (max-width: 768px) {
    .full-blog-post {
        padding: 30px 20px;
    }
    .full-blog-post .entry-title {
        font-size: 2em;
    }
    .full-blog-post .sub-heading {
        font-size: 1.3em;
    }
}

/* --- Illuminated Initial (Drop Cap) --- */
.dropcap {
    float: left; /* Makes the letter sit alongside the text */
    font-size: 4.5em; /* Large size */
    line-height: 0.8; /* Adjust to align with the first line of text */
    padding-right: 10px; /* Spacing between the dropcap and the rest of the text */
    font-family: 'Merriweather', serif; /* A classic serif font for the elegant look */
    font-weight: 700; /* Bold */
    color: #cc5500; /* Your aggressive orange/red color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Subtle shadow for depth */
    margin-top: 5px; /* Fine-tune vertical alignment */
}

/* For slightly older/smaller browsers, you might need: */
/*
.dropcap:first-letter {
    float: left;
    font-size: 4.5em;
    line-height: 0.8;
    padding-right: 10px;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: #cc5500;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-top: 5px;
}
*/