/*
Theme Name: Mayur Metals Static
Theme URI: https://mayurmetals.com
Author: Antigravity
Author URI: https://google.com
Description: A simple, static HTML/CSS theme for Mayur Metals.
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: mayur-metals-static
*/

:root {
  --background: 40, 33%, 97%;
  --foreground: 25, 30%, 15%;
  --primary: 24, 80%, 50%;
  --primary-foreground: 40, 33%, 98%;
  --secondary: 25, 25%, 92%;
  --secondary-foreground: 25, 30%, 20%;
  --muted: 30, 15%, 93%;
  --muted-foreground: 25, 15%, 45%;
  --accent: 15, 60%, 45%;
  --accent-foreground: 40, 33%, 98%;
  --border: 30, 20%, 88%;
  --radius: 0.75rem;
  --rust: 24, 80%, 50%;
  --rust-dark: 20, 75%, 40%;
  --cream-dark: 35, 25%, 90%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-hero {
  background: linear-gradient(to bottom right, hsl(var(--background)), hsl(var(--cream-dark)), hsl(var(--secondary)));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  gap: 0.5rem;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--secondary));
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border: none;
}

.card {
  background-color: white;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.card-hover:hover {
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nav-link {
  text-decoration: none;
  color: hsl(var(--foreground));
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.nav-link:hover {
  background-color: hsl(var(--secondary));
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer {
  background-color: #1a1512;
  color: #f7f3ef;
  padding: 4rem 0;
}
