/*
Theme Name: KMT Creations (American Doors Style)
Author: AI Assistant
Description: Custom industrial theme based on the American Doors layout.
Version: 1.0
*/

:root {
  --primary: #2F855A; /* Vibrant, friendly green */
  --primary-dark: #1E563B;
  --secondary: #DD6B20; /* Warm, energetic accent (orange/bamboo) */
  --background: #FFFFFF; /* Clean white */
  --surface: #FFFFFF;
  --text: #1A202C; /* Dark gray for readability */
  --text-muted: #4A5568;
  --accent: #38B2AC;
  
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  
  --transition: all 0.2s ease-in-out;
}

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

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

/* Stark Utilities (Replaces Glassmorphism) */
.glass-panel {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 0;
  box-shadow: none;
}

.glass-card {
  background: white;
  border: 4px solid var(--primary-dark);
  border-radius: 0;
  padding: 32px 24px;
  transition: var(--transition);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.card-title {
  font-family: 'Oswald', sans-serif;
  color: #B81A31; /* American Doors Red */
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text);
  text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

h1 { font-size: 4rem; line-height: 1.1; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

.text-gradient {
  color: var(--primary);
}

.text-muted { color: var(--text-muted); }

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.mt-8 { margin-top: 2rem; }
.mb-8 { margin-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 0px; /* Sharp edges */
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background: var(--primary-dark);
  color: white;
}

.btn-primary:hover {
  background: white;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: white;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: white;
}

/* Navbar */
.top-banner {
  background: var(--primary-dark);
  color: white;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 8px 24px;
  letter-spacing: 1px;
}

.navbar {
  position: relative;
  background: var(--primary);
  padding: 20px 0;
  border-bottom: none;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--secondary);
}

.logo {
  font-size: 1.75rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
