:root {
    --color-green:  #565b45;
    --color-brown:  #362c28;
    --color-sage:   #AAB096;
    --color-accent: #704d30;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* ── Navigation ───────────────────────────────── */
.navbar .nav-link {
    color: gray !important;
    font-size: 1.2rem;
    font-weight: bold;
    white-space: nowrap;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--color-accent) !important;
    text-decoration: underline;
}
.navbar-toggler {
    border-color: #ccc;
}

/* ── Headings ─────────────────────────────────── */
h1, h2, h3 {
    color: var(--color-brown);
}

/* ── Section blocks ───────────────────────────── */
.info-block {
    margin-bottom: 1.5rem;
}
.info-block h6 {
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: .1rem;
}
.info-text {
    color: var(--color-accent);
}

/* ── Seiten-Logo (Seiten 2–5, immer oben rechts) ─ */
.page-logo {
    width: 100%;   /* col-3 = 25% der Containerbreite → entspricht Logo im Splash */
    display: block;
}

/* ── Gallery rows (Seiten 2–4) ────────────────── */
.gallery-row img {
    object-fit: cover;
    height: 200px;
    width: 100%;
}

/* ── Home splash ──────────────────────────────── */
.splash-wrap {
    text-align: center;
    padding: 2rem 0;
}
.splash-wrap img {
    max-width: 100%;
    height: auto;
}

/* ── Über mich ────────────────────────────────── */
.profile-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-accent);
    line-height: 1.3;
}
.profile-title {
    color: var(--color-accent);
    font-size: 1rem;
}

/* ── Preise ───────────────────────────────────── */
.price-table {
    border-collapse: collapse;
}
.price-table td {
    padding: .3rem 1.2rem .3rem 0;
    color: var(--color-accent);
}
.price-table td:first-child {
    min-width: 120px;
    font-weight: 600;
}

/* ── Impressum (kompakter Zeilenabstand) ──────── */
.impressum-block {
    margin-bottom: .8rem;
}
.impressum-block h6 {
    margin-bottom: 0;
}
.impressum-block p {
    margin-bottom: .2rem;
}

/* ── Footer ───────────────────────────────────── */
.site-footer {
    background-color: #ffffff;
    color: gray;
    border-top: 1px solid #ddd;
    padding: 1.2rem 0;
    font-size: .85rem;
}

/* ── Mobile Collapse-Menü ─────────────────────── */
.navbar-collapse {
    background-color: #ffffff;
}
.navbar-collapse .navbar-nav {
    padding: .5rem 0;
    justify-content: flex-start !important;
}
.navbar-collapse .nav-link {
    padding: .4rem 1rem;
}
