/*
 Theme Name: Nexus Dynamics
 Theme URI: http://example.com/nexus-dynamics
 Author: Your Name
 Author URI: http://example.com
 Description: Custom theme for Nexus Dynamics AI consulting
 Version: 1.0
*/

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6e9ef;
  padding: 14px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-logo,
.site-logo a,
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

/* FORCE LOGO SIZE (overrides WP inline width/height attrs) */
.site-logo img,
.custom-logo {
  height: 56px !important;
  width: auto !important;
  max-height: 56px !important;
  max-width: none !important;
  display: block !important;
}

/* MENU */
.main-navigation {
  margin-top: 0;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  align-items: center;
}

.primary-menu a {
  text-decoration: none;
  color: #243043;
  font-weight: 600;
  font-size: 14px;
}

.primary-menu a:hover {
  color: #1f5f9f;
}

/* FOOTER */
footer {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}