/* ═════════════ SHARED STYLES ═════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #4A423B;
  --cream:      #F4ECDB;
  --cream-soft: #FBF6EC;
  --sage:       #7A9170;
  --dusk:       #504A5A;
  --dusk-deep:  #332F3B;
  --orange:     var(--sage);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Fredoka', sans-serif;
  background: var(--cream);
  color: var(--dark);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ───── NAVIGATION BAR ───── */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(244, 236, 219, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2.5px solid rgba(74,66,59,.18);
  padding: 16px 24px;
}
.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 38px;
  margin: 0;
  padding: 0 28px 0 0;
}
.nav-bar a {
  color: var(--dark);
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: -.005em;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-bar a:hover { color: var(--sage); }
.nav-bar a.active {
  color: var(--sage);
  font-weight: 500;
  border-bottom-color: var(--sage);
}
.nav-bar .short { display: none; }
.nav-bar .full  { display: inline; }

/* ───── FIXED CORNER ELEMENTS ───── */
.logo-fixed {
  position: fixed;
  top: 56px; right: 24px;
  z-index: 999;
  width: 95px;
}
.logo-fixed img { width: 100%; display: block; }

.wa-fixed {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 999;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none;
  transition: transform .22s;
}
.wa-fixed:hover { transform: scale(1.08); }
.wa-fixed svg { width: 25px; height: 25px; fill: #fff; }

.email-fixed {
  position: fixed;
  bottom: 88px; left: 28px;
  z-index: 999;
  width: 50px; height: 50px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none;
  transition: transform .22s;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.email-fixed:hover { transform: scale(1.08); }
.email-fixed svg { width: 24px; height: 24px; fill: #222; }

/* ───── WHATSAPP / CONTACT BUTTONS ───── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--sage);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .01em;
  text-decoration: none;
  transition: opacity .18s, background-color .18s;
  border-radius: 4px;
}
.wa-btn:hover { opacity: .9; }
.wa-btn svg { width: 16px; height: 16px; fill: #fff; flex: none; }

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* ───── FADE-UP ANIMATION ───── */
.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ───── FOOTER ───── */
footer {
  background: var(--dusk);
  color: rgba(244,236,219,.4);
  text-align: center;
  padding: 18px;
  font-size: .8rem;
  font-weight: 300;
}
footer b { color: var(--orange); font-weight: 400; }

/* ───── PAGE HERO (generic for inner pages) ───── */
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 6%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(51,47,59,.55);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--cream);
  text-align: center;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.18;
  margin-bottom: 30px;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.page-hero p {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.92;
  margin-bottom: 18px;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
  text-align: right;
}
.page-hero p.lead {
  font-weight: 500;
  font-size: 1.12rem;
  text-align: center;
  margin-bottom: 26px;
}

/* ───── SECONDARY SECTION (cream, plain) ───── */
.plain-section {
  background: var(--cream);
  padding: 70px 6%;
  text-align: center;
}
.plain-section .inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: right;
}
.plain-section h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-bottom: 18px;
}
.plain-section p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark);
  margin-bottom: 14px;
}
.plain-section .center { text-align: center; }
.plain-section strong { font-weight: 500; color: var(--dark); }

/* ───── RESPONSIVE ───── */
@media (max-width: 620px) {
  .nav-bar { padding: 16px 6px; }
  .nav-bar ul {
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 6px;
  }
  .nav-bar a { font-size: .7rem; padding: 4px 1px; }
  .nav-bar .full  { display: none; }
  .nav-bar .short { display: inline; }
  .logo-fixed { top: 50px; right: 12px; width: 64px; }
  .page-hero p { font-size: .96rem; }
}
