/*
Theme Name: Dragons Move
Theme URI: https://dragonsmove.example.com
Author: Dragons Move Co., Ltd.
Author URI: https://dragonsmove.example.com
Description: A minimal, professional dark-blue WordPress theme for Dragons Move Co., Ltd. — an IT infrastructure, cybersecurity, and AI solutions company. Includes a full-bleed "About Us" homepage with an animated network-trace timeline.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dragons-move
*/

/* ---------- Reset ---------- */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  background: #060b18;
  color: #eaf0fb;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- Site header ---------- */
.dm-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem 6vw;
  background: #060b18;
  border-bottom: 1px solid rgba(61,127,255,0.22);
  position: relative;
  z-index: 10;
}
.dm-site-branding a { display: inline-flex; align-items: center; }
.dm-site-logo {
  height: 34px;
  width: auto;
  display: block;
}

.dm-primary-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.dm-primary-menu a {
  font-size: 0.9rem;
  color: #8fa3c8;
  transition: color 0.2s ease;
}
.dm-primary-menu a:hover,
.dm-primary-menu .current-menu-item > a {
  color: #8fb4ff;
}

/* ---------- Generic page / post (fallback template) ---------- */
.dm-page-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 6vw 8rem;
  min-height: 40vh;
}
.dm-page-wrap h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 2rem;
}
.dm-page-wrap .dm-page-content {
  color: #d3ddf2;
  font-weight: 300;
  line-height: 1.8;
  font-size: 1.05rem;
}
.dm-page-wrap .dm-page-content p { margin: 0 0 1.3rem; }
.dm-page-wrap .dm-page-content a { color: #8fb4ff; text-decoration: underline; }

/* ---------- Site footer ---------- */
.dm-site-footer {
  padding: 2.4rem 6vw;
  text-align: center;
  font-size: 0.82rem;
  color: #8fa3c8;
  background: #081022;
  border-top: 1px solid rgba(61,127,255,0.22);
}

/* Accessible focus states */
a:focus-visible, button:focus-visible {
  outline: 2px solid #3d7fff;
  outline-offset: 2px;
}
