/*
Theme Name: Digital Growth & Design Suite
Theme URI: https://hivesmartpro.com
Description: A complete service-based system for WP Development, Digital Marketing, CV Design, and QR Menus.
Author: Digital Growth Team
Version: 1.0.0
Text Domain: digital-growth-suite
*/

/* --- Global Variables --- */
:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-color: #f3f4f6;
  --surface-color: #ffffff;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- Base Reset & Typography --- */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 600;
  color: #111827;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--secondary-color);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

/* Component Styles... */

/* Mobile Navigation Defaults (Hides on Desktop) */
.mobile-toggle,
.mobile-nav-overlay {
  display: none;
}
