/* Google‑Fonts‑Imports für elegante Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Farb-Variablen – einfach änderbar */
:root {
    --np-bg: #0b0b0b;           /* Haupt-Hintergrund (tiefschwarz)      */
    --np-surface: #151515;      /* Flächen (leicht heller als bg)       */
    --np-text: #eaeaea;         /* Haupttextfarbe (fast weiß)           */
    --np-muted: #999999;        /* Sekundärtext (grau)                  */
    --np-gold: #cfa15a;         /* Primärer Goldton                     */
    --np-gold-light: #e2c079;   /* Hellere Goldvariante für Hover etc.  */
    --np-border: rgba(207,161,90,0.3); /* dezente Gold-Grenzen        */
}

/* Globale Basisstile */
html, body {
    background: var(--np-bg);
    color: var(--np-text);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cinzel Decorative', serif;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--np-gold);
}

p, li {
    color: var(--np-text);
    margin-bottom: 1rem;
}

a {
    color: var(--np-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--np-gold-light);
    border-bottom: 1px solid var(--np-gold-light);
}

/* Navigationsleiste */
#nav, .navbar, header {
    background: var(--np-bg);
    border-bottom: 1px solid var(--np-border);
}
#nav ul { margin: 0; padding: 0; list-style: none; display: flex; gap: 1rem; }
#nav li a {
    color: var(--np-gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.75rem 1rem;
}
#nav li a:hover,
#nav li.active > a {
    color: var(--np-bg);
    background: var(--np-gold);
    border-radius: 0.3rem;
}

/* Logo im Header */
.site-logo {
    display: block;
    width: 140px;
    height: 140px;
    background-image: url('theme://images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
}

/* Flächen/Karten */
.card, article, section {
    background: var(--np-surface);
    border: 1px solid var(--np-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}

/* Buttons */
button,
.button,
input[type="submit"] {
    background: transparent;
    color: var(--np-gold);
    border: 1px solid var(--np-gold);
    border-radius: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
button:hover,
.button:hover,
input[type="submit"]:hover {
    background: var(--np-gold);
    color: var(--np-bg);
}

/* Formularfelder */
input[type="text"],
input[type="email"],
textarea {
    background: var(--np-surface);
    color: var(--np-text);
    border: 1px solid var(--np-border);
    border-radius: 0.4rem;
    padding: 0.6rem;
}
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--np-gold);
    box-shadow: 0 0 0 3px rgba(207,161,90,0.25);
}

/* Footer */
footer {
    background: var(--np-bg);
    padding: 2rem 0;
    text-align: center;
    color: var(--np-muted);
    border-top: 1px solid var(--np-border);
}
footer a {
    color: var(--np-gold);
}
