/* ==========================================================================
   SHARED NAV + FOOTER STYLES — Zion Crest Suites
   Used by every page (via includes/header.html + includes/footer.html).
   Edit colors/spacing here once to update the whole site.
   Relies on root tokens defined per-page: --bg-pure, --text-main, --text-muted,
   --champagne, --line-subtle, --font-serif.
   ========================================================================== */

.nav-header-static {
    background-color: var(--bg-pure);
    border-bottom: 1px solid var(--line-subtle);
    width: 100%;
}

.navbar-constrained {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-links-left {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.nav-item {
    color: var(--text-main);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.6;
}

.brand-logo-serif {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--text-main);
    text-transform: uppercase;
    text-decoration: none;
}

/* ==========================================================================
   ARCHITECTURAL FOOTER BASE
   ========================================================================== */
.architectural-footer {
    background-color: var(--bg-pure);
    border-top: 1px solid var(--line-subtle);
    padding: 80px 0 60px 0;
}

.footer-matrix-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-editorial-address {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
}

.footer-editorial-address a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-sub-nav-item {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-sub-nav-item:hover {
    color: var(--champagne);
}

.footer-social-strip {
    display: flex;
    gap: 25px;
    margin-top: 5px;
}

.footer-social-strip a {
    color: var(--text-main);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-social-strip a:hover {
    color: var(--champagne);
}

.footer-bottom-meta {
    border-top: 1px solid var(--line-subtle);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 400;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
}

@media (max-width: 900px) {
    .footer-matrix-layout {
        grid-template-columns: 1fr;
    }
}
