/*
Theme Name: SteelNest Theme
Theme URI: https://steelnest.com
Author: Antigravity IDE
Author URI: https://steelnest.com
Description: Custom theme for SteelNest – Premium Stainless Steel Manufacturing Website.
Version: 1.0.0
Text Domain: steelnest
*/

/* Core variables */
:root {
  --primary-color: #32343D;
  --secondary-color: #5A5D66;
  --accent-color: #A7AAB1;
  --white: #FFFFFF;
  --light-gray: #F6F7F9;
  --cta-accent: #3B3D46;

  --font-headings: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
}

/* Basic Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--primary-color);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
