/* I Live Here Media - Site Branding */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.site-nav { background: #2c3e50; display: flex; align-items: center; justify-content: space-between; padding: 16px 40px; font-family: 'Poppins', sans-serif; position: relative; z-index: 100; }
.site-nav-logo { display: flex; align-items: center; text-decoration: none; }
.site-nav-logo img { height: 72px; width: auto; }
.site-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.site-nav-links a { color: #fff; text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 400; letter-spacing: 0.2px; transition: opacity 0.2s; white-space: nowrap; }
.site-nav-links a:hover { opacity: 0.8; }
.site-nav-links a.active { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.site-nav-social { display: flex; align-items: center; gap: 12px; }
.site-nav-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: background 0.2s; }
.site-nav-social a:hover { background: rgba(255,255,255,0.25); }
.site-nav-social svg { width: 18px; height: 18px; fill: #fff; }
.site-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.site-nav-toggle svg { width: 28px; height: 28px; stroke: #fff; fill: none; }

/* Footer */
.site-footer { background: #2c3e50; color: #fff; font-family: 'Poppins', sans-serif; padding: 32px 40px; text-align: center; font-size: 13px; line-height: 1.6; }
.site-footer a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.site-footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 12px; flex-wrap: wrap; }
.site-footer-links a { font-size: 13px; text-decoration: none; opacity: 0.8; transition: opacity 0.2s; }
.site-footer-links a:hover { opacity: 1; }
.site-footer-copy { opacity: 0.6; margin-top: 8px; }

/* Mobile */
@media (max-width: 900px) {
  .site-nav { padding: 12px 20px; }
  .site-nav-logo img { height: 52px; }
  .site-nav-links, .site-nav-social { display: none; }
  .site-nav-toggle { display: block; }
  .site-nav.mobile-open .site-nav-links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #2c3e50; padding: 16px 20px 24px; gap: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 99; }
  .site-nav.mobile-open .site-nav-social { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: #2c3e50; padding: 0 20px 20px; justify-content: center; z-index: 99; }
  .site-footer { padding: 24px 20px; }
  .site-footer-links { gap: 16px; }
}

/* Override existing headers */
body.has-site-nav .header { display: none; }
body.has-site-nav { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
body.has-site-nav .chat-area { padding-top: 20px; }
