/*
Theme Name: AZ Cactus & Tree Service
Theme URI: https://azcactusservice.com
Author: AZ Cactus Team
Author URI: https://azcactusservice.com
Description: Custom WordPress theme for AZ Cactus & Tree Service LLC - Saguaro sales, relocation, and removal
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: az-cactus
Tags: business, custom-menu, responsive
*/

/* Tailwind CSS will be loaded via functions.php */

:root {
  --color-primary: #0b3d2e;
  --color-accent: #fbbf24;
  --color-dark: #1a1a1a;
}

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

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

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: #eab308;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* WordPress specific resets */
.wp-block-image {
  margin: 0;
}

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