/*
Theme Name: Drip'n Powder
Theme URI: https://dripnpowder.com
Author: Your Name
Author URI: https://dripnpowder.com
Description: A modern, professional powder coating business theme with elegant metallic design elements
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dripnpowder
Tags: business, industrial, one-column, custom-colors, featured-images, responsive-layout
*/

/* ============================================
   DESIGN SYSTEM - Color Variables
   ============================================ */
:root {
  /* Base Colors */
  --color-background: #ffffff;
  --color-foreground: #1a1a1a;
  
  --color-card: #fafafa;
  --color-card-foreground: #1a1a1a;
  
  --color-primary: #1a1a1a;
  --color-primary-foreground: #fafafa;
  
  --color-secondary: #262626;
  --color-secondary-foreground: #fafafa;
  
  --color-muted: #f0f0f0;
  --color-muted-foreground: #666666;
  
  --color-metallic: #bfbfbf;
  --color-metallic-foreground: #1a1a1a;
  
  --color-bronze: #b8885e;
  --color-bronze-foreground: #fafafa;
  
  /* Gradients */
  --gradient-metallic: linear-gradient(135deg, #bfbfbf, #d9d9d9);
  --gradient-bronze: linear-gradient(135deg, #b8885e, #d4a574);
  --gradient-dark: linear-gradient(180deg, #141414, #262626);
  
  /* Shadows */
  --shadow-premium: 0 20px 50px -15px rgba(0, 0, 0, 0.3);
  --shadow-metallic: 0 10px 30px -10px rgba(153, 153, 153, 0.2);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-gradient {
  background: var(--gradient-dark);
}

.metallic-gradient {
  background: var(--gradient-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-premium {
  box-shadow: var(--shadow-premium);
}

.shadow-metallic {
  box-shadow: var(--shadow-metallic);
}

.transition-smooth {
  transition: var(--transition-smooth);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 1rem;
}

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

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

.btn-metallic {
  background: var(--gradient-metallic);
  color: var(--color-metallic-foreground);
  box-shadow: var(--shadow-metallic);
}

.btn-metallic:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -12px rgba(153, 153, 153, 0.3);
}

.btn-premium {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  box-shadow: var(--shadow-premium);
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .container {
    padding: 0 1rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}