/*
Theme Name: Amaze Coders
Theme URI: https://amazecoders.com
Author: Amaze Coders
Author URI: https://amazecoders.com
Description: Professional IT software solutions and services theme for Amaze Coders. Features modern design with navy/sky-blue branding, smooth scroll animations, and fully responsive layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: amaze-coders
Tags: business, technology, one-page, custom-colors, responsive-layout, full-width-template
*/

/* ======================================
   BASE RESET & VARIABLES
====================================== */
:root {
  --primary:    #1E90FF;
  --primary-dark: #1565c0;
  --navy:       #0B1F4A;
  --navy-dark:  #071428;
  --navy-code:  #0d2057;
  --white:      #ffffff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container:  1200px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-2xl: 24px;
  --radius-full:9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 3rem; } }
