/* 
 * Amazonia Theme Main Styles
 * Designed for a dynamic WooCommerce store
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;700&display=swap');

:root {
  --primary: #4ade80;
  --primary-hover: #22c55e;
  --dark-bg: #0f172a;
  --dark-surface: #1e293b;
  --light-bg: #f8fafc;
  --light-surface: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --radius: 12px;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--dark-bg);
}

/* Forms styling replaced by Tailwind plugins */

/* Footer */
.site-footer {
  background-color: var(--dark-surface);
  color: var(--text-light);
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
}
.site-footer p {
  color: #94a3b8;
  margin: 0;
}
