/*
Theme Name: Blank Theme
Theme URI: 
Author: Claude
Description: Ein minimalistisches Theme, das nur den reinen Seiteninhalt anzeigt - ohne Header, Footer oder Sidebar.
Version: 1.0
License: GPL v2 or later
Text Domain: blank-theme
*/

/* Reset und Basis-Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    height: 100%;
}

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

/* Content-Bereich */
.site-content {
    margin: 0;
    padding: 0;
}

/* Grundlegende Typografie */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

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

a {
    color: inherit;
}

/* WordPress-spezifische Klassen */
.alignleft {
    float: left;
    margin-right: 1em;
}

.alignright {
    float: right;
    margin-left: 1em;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* Verstecke Admin-Bar falls gewünscht (optional auskommentieren) */
/*
#wpadminbar {
    display: none !important;
}
html {
    margin-top: 0 !important;
}
*/
