/* Shared site navigation — edit this one file to change the nav on every page */
.site-nav {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-nav .nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-nav .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.site-nav .logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
}

.site-nav .logo span {
    color: #667eea;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.site-nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.site-nav ul li a:hover {
    background: rgba(102, 126, 234, 0.3);
}

.site-nav ul li a.active {
    background: #667eea;
}

@media print {
    .site-nav {
        display: none;
    }
}

/* Leave a Review - same weight as the other nav links, just pinned to the top row */
.site-nav .review-cta {
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s;
}
.site-nav .review-cta:hover {
    background: rgba(102, 126, 234, 0.3);
}

/* Staff portal - intentionally de-emphasised; password protected on the other end */
.site-nav ul li a.staff-link {
    color: rgba(255,255,255,0.38);
    font-size: 12.5px;
    font-weight: 400;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 5px 11px;
}
.site-nav ul li a.staff-link:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(102,126,234,0.35);
    border-color: rgba(255,255,255,0.3);
}
