/* Gemeinsame Styles für index, impressum, datenschutz */

:root {
    --magenta: #D60B52;
    --gold: #CEA44E;
    --gold-graphic: #D0AF59;
    --yellow-light: #FFF7B2;
    --yellow-softer: #FFFBDC;
    --creme: #F5EFE0;
    --lightgrey: #F7F4F0;
    --grey-text: #999999;
    --dark: #1A1A1A;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Rubik', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
}

/* === Navigation === */
nav {
    background: white;
    border-bottom: 1px solid #ecdfc8;
    padding: 14px 0;
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand { line-height: 1; }

.nav-brand img {
    height: 46px;
    width: auto;
    display: block;
}

/* === Typografie === */
h1, h2, h3 {
    font-family: 'Optima', 'Candara', 'Noto Sans', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

.script {
    font-family: 'Corinthia', cursive;
    color: var(--magenta);
    font-size: 2rem;
    display: block;
    line-height: 1.2;
}

.divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 18px 0;
}

.divider.center { margin: 18px auto; }

p {
    font-family: 'Rubik', sans-serif;
    color: #444;
}

a {
    color: var(--magenta);
    text-decoration: none;
}

a:hover { text-decoration: underline; }

/* Bot-Schutz: Pseudo-Links bekommen Pointer auch ohne href */
.js-mail, .js-tel { cursor: pointer; }

/* === Footer (Basis) === */
footer {
    background: #1A1A1A;
    text-align: center;
}

footer p {
    color: rgba(255,255,255,0.5);
    font-size: 0.83rem;
    margin-bottom: 5px;
    font-family: 'Rubik', sans-serif;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

footer a:hover { color: var(--gold); }

.footer-logo img {
    width: auto;
    display: block;
    margin: 0 auto;
}
