/*
Theme Name: eXecutive Security Services
Description: Minimalistisches Security Theme
Version: 1.0
Author: eXecutive Security Services
Text Domain: executive-security
*/

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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(1px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #0072ff;
}

/* Navigation */
.main-navigation {
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #0072ff;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Posts - OHNE Hintergrund-Kästen */
.post {
    margin-bottom: 3rem;
    padding: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: #0072ff;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.post-content {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Single Post */
.single-post .post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.single-post .post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 4rem;
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.comment-list {
    list-style: none;
    margin-top: 2rem;
}

.comment {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Page Titles */
.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .single-post .post-title {
        font-size: 2rem;
    }
    
    .main-navigation {
        gap: 1rem;
    }
}