/*
Theme Name: Play Concept Theme
Theme URI: https://playconcept.co.il
Description: תבנית מותאמת אישית לפליי קונספט
Author: Play Concept LTD
Template: hello-elementor
Version: 1.0.0
Text Domain: playconcept-theme
*/

:root {
  --color-primary: #3AAA35;
  --color-secondary: #2255A4;
  --color-accent-red: #E03030;
  --color-accent-yellow: #F5C400;
  --color-dark: #1a1a1a;
  --color-text: #555555;
  --color-bg-light: #f7fdf4;
  --color-border: #e8e8e8;
  --font-main: 'Heebo', sans-serif;
  --font-title: 'Heebo', sans-serif;
}

*,
body,
h1, h2, h3, h4, h5, h6,
p, a, span, div, li, button, input, textarea, select {
  font-family: 'Heebo', sans-serif !important;
}

body {
  font-family: 'Heebo', sans-serif;
  color: var(--color-dark);
  direction: rtl;
}

/* ---- WhatsApp floating button ---- */
.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 80px;
  transform: none;
  background: #25D366;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}