/*
Theme Name: Gaspers Template
Theme URI: http://gaspers.net
Author: gaspers
Author URI: http://gaspers.net
Description: Pure
Version: 1.0
License:
License URI:
Text Domain: gaspers-theme
*/

/* 1. SCHRIFT-DEFINITIONEN */
@font-face {
    font-family: 'HeaderCustomFont';
    src: url('fonts/header-font.woff2') format('woff2');
    font-weight: normal; font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('fonts/regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}

@font-face {
    font-family: 'EB Garamond';
    src: url('fonts/regular-italic.woff2') format('woff2');
    font-weight: 400; font-style: italic; font-display: swap;
}

/* 2. ZENTRALE VARIABLEN */
:root {
    --gold-farbe: #b38a3d;
    --header-blau: #1a202c;    
    --body-bg: #f8f8f8;       
    --header-font: 'HeaderCustomFont', serif;
    --body-font: 'EB Garamond', Georgia, serif;
}

/* 3. ALLGEMEINES LAYOUT */
body {
    font-family: var(--body-font);
    background-color: var(--body-bg);
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* 4. DER BLAUE HEADER (Zentriert & Blau) */
.site-header {
    background-color: var(--header-blau); 
    padding: 35px 25px;                   
    text-align: center;                  
    border-bottom: 4px solid var(--gold-farbe);
    box-shadow: 0 2px 10px rgba(179, 138, 61, 0.3);
}

.site-header h1 {
    font-family: var(--header-font);
    font-size: 2.8rem;         
    color: var(--gold-farbe); 
    margin: 0;
    line-height: 1.1;
    display: inline-block;               
}

.site-header p {
    color: #e5e2df;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

/* 5. CONTENT BEREICH (Hell) */
.site-content {
    max-width: 800px;
    margin: 10px auto;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Die Überschrift innerhalb der weißen Box */
.site-content h2 {
    font-family: var(--body-font);
    font-weight: 600;      
    font-size: 1.6rem;     /* Etwas angepasst für Zweizeiler */
    line-height: 1.3;
    letter-spacing: 1px;   
    color: #555;           
    margin: 0 auto 30px auto; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 15px;
    text-align: center;    
    
    /* Umbruch-Kontrolle */
    max-width: 500px;      /* Dieser Wert erzwingt den Umbruch bei langen Titeln */
    hyphens: none;
}

/* 6. FOOTER (Dezent & Hell) */
.site-footer {
    padding: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}