/*
Theme Name: VNB Nexus Platform
Theme URI: https://example.com/vnb-nexus
Author: VNB Digital Team
Description: White-label enterprise theme for distribution grid operators with bundled companion plugins.
Version: 1.0.23
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: vnb-nexus
*/

:root {
  --vnb-primary: #0e5a64;
  --vnb-secondary: #1b7f89;
  --vnb-accent: #f4a300;
  --vnb-bg: #f6f8fa;
  --vnb-text: #132229;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--vnb-text);
  background: linear-gradient(180deg, #f7fafb 0%, #eef4f6 100%);
  line-height: 1.55;
}

.site-header,
.site-footer {
  background: var(--vnb-primary);
  color: #fff;
  padding: 1rem 1.5rem;
}

.site-main {
  padding: 2rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

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

.site-header nav ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.site-header nav a:hover,
.site-header nav a:focus {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-main {
    padding: 1.2rem 1rem;
  }
}
