/* ─── PS Restaurant Navigation ──────────────────────────── */

.ps-rnav {
    position: relative;
    z-index: 100;
    font-family: inherit;
}

/* ── Leiste ──────────────────────────────────────────────── */
.ps-rnav__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    padding: 0 40px;
    height: 60px;
    border-bottom: 1px solid #2a2a2a;
}

/* ── Logo ────────────────────────────────────────────────── */
.ps-rnav__logo {
    flex-shrink: 0;
}

.ps-rnav__logo span {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 6px;
    color: #fff;
    text-transform: uppercase;
}

.ps-rnav__logo img {
    display: block;
    height: 36px;
    width: auto;
}

/* ── Navigation Items ────────────────────────────────────── */
.ps-rnav__nav {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.ps-rnav__item {
    display: inline-flex;
    align-items: center;
    height: 60px;
    padding: 0 22px;
    color: #aaa;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    position: relative;
}

.ps-rnav__item:hover,
.ps-rnav__item.is-active {
    color: #fff;
    border-bottom-color: #c9a96e;
    text-decoration: none;
}

/* ── Dropdown Panel ──────────────────────────────────────── */
.ps-rnav__panels {
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.ps-rnav__panels.is-open {
    max-height: 300px;
}

.ps-rnav__panel {
    display: none;
}

.ps-rnav__panel.is-visible {
    display: block;
}

.ps-rnav__panel-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 40px 32px;
}

/* ── Panel Label ─────────────────────────────────────────── */
.ps-rnav__panel-label {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a96e;
    margin: 0 0 16px;
}

/* ── Panel Links (Speisekarte, Kochbuch) ─────────────────── */
.ps-rnav__panel-links {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.ps-rnav__panel-links a {
    color: #ccc;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 24px 6px 0;
    margin-right: 24px;
    border-bottom: 1px solid #333;
    transition: color 0.2s;
}

.ps-rnav__panel-links a:hover {
    color: #c9a96e;
    text-decoration: none;
}

/* ── Panel Text (Öffnungszeiten, Kontakt) ────────────────── */
.ps-rnav__panel-text p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 4px;
}

.ps-rnav__panel-text strong {
    color: #fff;
}

/* ── Button im Panel ─────────────────────────────────────── */
.ps-rnav__btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #c9a96e;
    color: #c9a96e !important;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.25s, color 0.25s;
}

.ps-rnav__btn:hover {
    background: #c9a96e;
    color: #111 !important;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ps-rnav__bar {
        padding: 0 16px;
        flex-wrap: wrap;
        height: auto;
    }
    .ps-rnav__nav {
        flex-wrap: wrap;
        height: auto;
        padding: 8px 0;
    }
    .ps-rnav__item {
        height: 44px;
        padding: 0 12px;
        font-size: 9px;
        letter-spacing: 2px;
    }
    .ps-rnav__panel-inner {
        padding: 20px 16px 24px;
    }
    .ps-rnav__panel-links {
        flex-direction: column;
        gap: 4px;
    }
}
