/*
Theme Name: NicheSaga
Theme URI: https://nichesaga.com  
Author: Muhammad Imtiaz
Author URI: https://nichesaga.com  
Description: A fast, trust-first child theme for crypto micro-earning reviews.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: hello-elementor
Text Domain: nichesaga
*/

/* === Global Reset & Base === */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

/* === Header === */
.ns-header {
  background: #0d1117; /* Slightly darker than body */
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ns-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
}
.ns-logo a { line-height: 0; }
.ns-nav a {
  color: #e2e8f0;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.ns-nav a:hover { color: #3b82f6; }
.ns-lang {
  display: flex;
  gap: 6px;
  color: #94a3b8;
  font-size: 0.9rem;
}
.ns-lang a {
  color: #cbd5e1;
  text-decoration: none;
}
.ns-lang a:hover { color: #3b82f6; }

/* === Footer === */
.ns-footer {
  background: #0a0f1a; /* Deeper navy than body */
  color: #cbd5e1;
  padding: 2rem 0 1.8rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.ns-footer .ns-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ns-footer a {
  color: #94a3b8;
  text-decoration: underline;
}
.ns-footer a:hover { color: #3b82f6; }

/* === Language Toggle — Custom Styled === */
.ns-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.lang-link {
  color: #cbd5e1;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-link:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.lang-link.active {
  color: #3b82f6;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* === Responsive === */
@media (max-width: 768px) {
  .ns-nav { display: none; }
  .ns-logo svg { width: 140px; height: 24px; }
}