/*
Theme Name: ComfyConnect
Theme URI: https://unitedhandscare.info
Author: United Hands Care
Description: Custom WordPress theme using ComfyConnect branding
Version: 1.2
*/

:root {
  --primary-color: #002A67;
  --secondary-color: #25C0B5;
  --text-color: #333;
  --bg-color: #f9f9f9;
}

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

.site-header,
.site-footer {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-primary a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  margin-right: 1.5rem;
}

.hero {
  background: var(--secondary-color) center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  padding: .75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

@media(max-width:768px) {
  .site-header .menu-toggle { display: block; cursor: pointer; }
  .nav-primary { display: none; }
  .nav-primary.active {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 1rem;
  }
}
