/* ==========================================================================
   אחוזת ליבי - ה"שלד" של האתר: הדר ופוטר.
   הקובץ הזה נטען בכל עמודי האתר (index + עמודי התוכן) והוא המקור היחיד
   לעיצוב ההדר והפוטר. שינוי כאן משנה את כל האתר.
   ========================================================================== */

/* ===== הדר ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px clamp(14px, 4vw, 64px);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #EEF0F1;
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  color: #14181A;
  text-decoration: none;
}
.site-logo:hover { color: #14181A; text-decoration: none; }

/* nowrap בשני החלקים: זה מה שמנע מ"אחוזת ליבי" להישבר לשתי שורות בנייד */
.site-logo-name {
  font-weight: 900;
  font-size: clamp(18px, 4.6vw, 22.5px);
  line-height: 1.1;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.site-logo-sub {
  font-size: clamp(12px, 3vw, 14.5px);
  font-weight: 500;
  color: #66706F;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.header-phone {
  font-weight: 700;
  font-size: 16.5px;
  color: #14181A;
  white-space: nowrap;
  text-decoration: none;
}
.header-phone:hover { color: #0E7C7B; text-decoration: none; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: clamp(15px, 3.8vw, 16.5px);
  padding: 10px clamp(14px, 4vw, 20px);
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none;
}
.btn-wa:hover { background: #1FB958; color: #fff; text-decoration: none; }

/* מתחת ל-760px אין מקום לטלפון בהדר - יש כפתור וואטסאפ, סרגל דביק וכפתור צף */
@media (max-width: 760px) {
  .header-phone { display: none; }
}
/* במסכים צרים מוותרים על שורת המשנה כדי שהלוגו והכפתור יישארו בשורה אחת */
@media (max-width: 430px) {
  .site-logo-sub { display: none; }
}

/* ===== פוטר ===== */
.site-footer {
  padding: 22px clamp(16px, 5vw, 64px) 40px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #66706F;
  border-top: 1px solid #EEF0F1;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.site-footer a { color: #0E7C7B; text-decoration: none; }
.site-footer a:hover { color: #0A5B5A; text-decoration: underline; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.footer-nav a { color: #66706F; }
.footer-nav a:hover { color: #0E7C7B; }
.footer-nav [aria-current="page"] { color: #14181A; font-weight: 700; }
.footer-nav .phone { font-weight: 700; }
.footer-sep { color: #C6CCCD; }

/* בעמוד הבית יש סרגל CTA דביק בתחתית הנייד - צריך מרווח שלא יסתיר את הפוטר */
.site-footer.has-sticky-cta { padding-bottom: 100px; }
@media (min-width: 900px) {
  .site-footer.has-sticky-cta { padding-bottom: 40px; }
}

/* ===== וואטסאפ צף ===== */
.float-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
}
.float-wa:hover { background: #1FB958; color: #fff; }
