/* ============================================
   ANM Booking App — Client Nav
   nav-client.css
   Minimal top bar for client-facing pages
   (book, account, waitlist, confirm, etc.)
   ============================================ */

/* ============================================
   CLIENT HEADER — STRUCTURE
   ============================================ */

.book-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-primary);
}

.book-header-link {
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.book-header-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* push page content below fixed header */
body > main {
    padding-top: 56px;
}

/* style page headings */
.page h2 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin: 0 0 20px;
    text-align: center;
}

.book-menu-check {
    display: none;
}

.book-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.book-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
}

.book-menu-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 180px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 999;
}

.book-menu-check:checked ~ .book-menu-dropdown {
    display: block;
}

.book-menu-dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    text-decoration: none;
}

/* ============================================
   CLIENT HEADER — THEME
   ============================================ */

.book-header {
    background: var(--color-primary);
}

.book-header-link,
.book-header-link:visited,
.book-header-link:hover,
.book-header-link:active {
    color: white !important;
    text-decoration: none !important;
}

.book-menu-btn span {
    background: white;
}

.book-menu-dropdown {
    background: white;
    border-radius: var(--radius-block);
    box-shadow: var(--shadow-card);
}

.book-menu-dropdown li a {
    color: var(--color-primary);
}

.book-menu-dropdown li a:hover {
    background: var(--color-primary-lt);
    text-decoration: none;
}
