/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* ===== LAYOUT WORDPRESS ===== */
.post-21 {display:none}

/* ===== CSS VARIABLES ===== */
:root {
  --silk:        #F3F0EA;
  --sage:        #9BAF9E;
  --sage-dark:   #6B8770;
  --brown:       #8C4A2F;
  --rose:        #C8A2A6;
  --dark:        #2F2F2C;
  --silk-deep:   #EAE6DF;
  --text:        #3a3a37;
  --text-light:  #6b6b66;
  --radius:      2px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@font-face {
    font-family: 'Aderet';
    src: url('https://beithadoar.com/wp-content/themes/generatepress_child/eft_aderet-webfont.woff') format('woff'),
         url('https://beithadoar.com/wp-content/themes/generatepress_child/EFT_Aderet.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--silk);
  color: var(--text);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  direction: rtl;
  overflow-x:hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Aderet', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ===== DECORATIVE LINE ===== */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sage-dark);
  opacity: 0.6;
}
.ornament span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage-dark);
  display: block;
  flex-shrink: 0;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: 'Heebo', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
  display: block;
  text-align:center;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block!important;
  padding: 14px 40px!important;
  background: var(--sage-dark)!important;
  color: var(--silk)!important;
  font-family: 'Heebo', sans-serif!important;
  font-size: 14px!important;
  font-weight: 400!important;
  letter-spacing: 2px!important;
  text-decoration: none!important;
  border: none!important;
  cursor: pointer!important;
  transition: var(--transition)!important;
  position: relative!important;
  overflow: hidden!important;
}

.btn-primary:hover {
  color: var(--silk)!important;
}

.btn-primary::after {
  content: ''!important;
  position: absolute!important;
  inset: 0!important;
  background: var(--sage)!important;
  transform: scaleX(0)!important;
  transform-origin: right!important;
  transition: transform var(--transition)!important;
}
.btn-primary:hover::after{ transform: scaleX(1)!important; transform-origin: left!important; }
.btn-primary span { position: relative!important; z-index: 1!important; }

.btn-outline, .wpcf7-form .wpcf7-submit {
  display: inline-block;
  padding: 13px 38px;
  border: 1px solid var(--sage-dark);
  color: var(--sage-dark);
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.btn-outline:hover, .wpcf7-form .wpcf7-submit:hover{
  background: var(--sage-dark);
  color: var(--silk);
}


/* ===== NAVBAR ===== */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(243,240,234,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(155,175,158,0.2);
    transition: var(--transition);
}

.hero {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}

/*.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 0%, var(--silk) 90%),
    url('https://beithadoar.nitzshacharenv.com/wp-content/uploads/2026/02/sketch_Artboard-2.svg') left center / auto 100% no-repeat,
    var(--silk);
}*/ 

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--silk);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://beithadoar.nitzshacharenv.com/wp-content/uploads/2026/02/sketch_Artboard-2.svg') left center / auto 100% no-repeat;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--silk) 90%);
}

.hero-content {
  position: relative;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero-sub p {margin-bottom: 0.5em;  }

.hero h1 {
  font-size: 3rem;
  color: var(--brown);
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
  letter-spacing: 2.5px;
}
.hero h1 em {
  color: var(--brown);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
  padding-bottom:30px;
} 

/* ===== HERO FEATURES — עם אייקונים ===== */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.75s forwards;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  /*border: 1px solid rgba(155,175,158,0.3);
  background: rgba(155,175,158,0.06);*/ 
}

.hero-feature-text {
  display: flex;
  flex-direction: column;
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  color: var(--brown);
  margin-bottom: 10px;
  flex-shrink: 0;
}
.hero-feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-feature strong {
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.hero-feature span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.95s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-light);
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: pulse 2s ease infinite;
}

/* ===== SECTION ===== */
.section {
  padding: 100px 60px;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== SPACE EXPERIENCE ===== */
.about-complex {
  background: var(--silk-deep);
  border-top: 1px solid rgba(155,175,158,0.2);
  border-bottom: 1px solid rgba(155,175,158,0.2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.5rem;
  color: var(--brown);
  margin-bottom: 22px;
  text-align:center;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 16px;
}

ul {
  margin:0;
}
.features-list {
  list-style: none;
  margin-top: 32px;
}
.features-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(155,175,158,0.25);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text);
}
.features-list li::before {
  content: '◇';
  color: var(--rose);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ===== MEET US CTA (sage background) ===== */
.meet-section {
  background: var(--sage-dark);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/*.meet-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,240,234,0.07) 0%, transparent 70%);
}*/ 

.meet-section h2 {
  font-size: 2.5rem;
  color: var(--silk);
  margin-bottom: 16px;
}

.meet-section p {
  color: rgba(243,240,234,0.7);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 16px;
}
.btn-light {
  display: inline-block;
  padding: 15px 44px;
  border: 1px solid rgba(243,240,234,0.5);
  color: var(--silk);
  font-family: 'Heebo', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
}
.btn-light:hover {
  background: rgba(243,240,234,0.15);
  border-color: var(--silk);
  color:var(--silk);
}

/* ===== ABOUT + IMAGE ===== */
.about-img-section {
  padding: 100px 60px;
}
.about-img-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img,
.img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.img-placeholder {
  background: linear-gradient(135deg, var(--silk-deep) 0%, #ddd9d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(155,175,158,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 70% 70%, rgba(200,162,166,0.2) 0%, transparent 65%);
}
.img-placeholder-text {
  font-family: 'Heebo', serif;
  font-size: 15px;
  color: var(--text-light);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
.img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px; height: 120px;
  border: 1px solid var(--rose);
  z-index: -1;
}
.about-img-content h2 {
  font-size: 2.5rem;
  color: var(--brown);
  margin-bottom: 22px;
  align-items: center;
}

.about-img-content p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 16px;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--silk-deep);
  padding: 100px 60px;
  border-top: 1px solid rgba(155,175,158,0.2);
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner h2 {
  font-size: 2.5rem;
  color: var(--brown);
  margin-bottom: 12px;
}
.contact-inner > p {
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 16px;
}
/* טופס ראשי */
.wpcf7-form {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* כל label עם השדה שלו */
.wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-transform: uppercase;
}

/* שדות טקסט ואימייל */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email {
  width: 100%;
  padding: 10px 16px;
  background: var(--silk);
  border: 1px solid rgba(155,175,158,0.35);
  color: var(--dark);
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 300;
  border-radius: var(--radius);
  transition: border-color 0.3s;
  outline: none;
  direction: rtl;
  box-sizing: border-box;
}

/* textarea */
.wpcf7-form .wpcf7-textarea {
  width: 100%;
  padding: 10px 16px;
  background: var(--silk);
  border: 1px solid rgba(155,175,158,0.35);
  color: var(--dark);
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 300;
  border-radius: var(--radius);
  transition: border-color 0.3s;
  outline: none;
  direction: rtl;
  min-height: 100px;
  resize: vertical;
  box-sizing: border-box;
}

/* פוקוס */
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-textarea:focus {
  border-color: var(--sage-dark);
}

/* placeholder */
.wpcf7-form .wpcf7-text::placeholder,
.wpcf7-form .wpcf7-email::placeholder,
.wpcf7-form .wpcf7-textarea::placeholder {
  color: rgba(107,107,102,0.5);
}


/*btn submit*/ 
.wpcf7-form .wpcf7-submit {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 16px;
  margin-top: 10px;
  background: var(--sage-dark);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  transition: opacity 0.3s;
  letter-spacing: 1px;
}

.wpcf7-form .wpcf7-submit:hover {
  opacity: 0.85;
}

/* הודעות validation של CF7 */
.wpcf7-not-valid-tip {
  font-size: 11px;
  color: #c0392b;
  direction: rtl;
  margin-top: 4px;
}

.wpcf7-response-output {
  font-size: 13px;
  text-align: center;
  padding: 10px;
  border-radius: var(--radius);
  margin-top: 10px;
  direction: rtl;
}

/* ===== FOOTER ===== */
/*footer {
  background: var(--sage-dark);
  padding: 60px 60px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(243,240,234,0.18);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--silk);
  font-weight: 300;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(243,240,234,0.65);
  margin-bottom: 16px;
}
.footer-address {
  font-size: 14px;
  color: rgba(243,240,234,0.8);
  line-height: 1.7;
  margin-bottom: 10px;
}
.footer-parking {
  font-style: italic;
  font-size: 13px;
  color: rgba(243,240,234,0.6);
}
.footer-hours {
  font-size: 13px;
  color: rgba(243,240,234,0.55);
  margin-top: 8px;
}
.footer-col-title {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(243,240,234,0.45);
  margin-bottom: 18px;
}
.footer-nav-list {
  list-style: none;
}
.footer-nav-list li {
  margin-bottom: 10px;
}
.footer-nav-list a,
.footer-social-link,
.footer-legal a {
  font-size: 14px;
  color: rgba(243,240,234,0.75);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav-list a:hover,
.footer-social-link:hover,
.footer-legal a:hover {
  color: var(--silk);
}
.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(243,240,234,0.12);
}
.footer-legal a {
  font-size: 12px;
  color: rgba(243,240,234,0.4);
}
.footer-bottom {
  text-align: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(243,240,234,0.35);
  letter-spacing: 1px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .site-header { padding: 0 24px; }
  nav { display: none; }
  .section { padding: 70px 24px; }
  .hero { padding: 100px 24px 50px; }
  .hero-eyebrow {margin-bottom: 10px;  }
  .hero-sub p {margin-bottom: 0.5em;  }
  .about-grid,
  .about-img-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-grid .about-img-wrap { order: 2; }
  .meet-section,
  .about-img-section,
  .contact-section { padding: 70px 24px; }
  /*footer { padding: 50px 24px 24px; }*/ 
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero-features { grid-template-columns: 1fr; }


}

/*.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 40px;
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.75s forwards;
}
.hero-feature {
  padding: 18px 16px;
  border: 1px solid rgba(155,175,158,0.3);
  background: rgba(155,175,158,0.06);
}
.hero-feature strong {
  display: block;
  font-family: 'Heebo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.hero-feature span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}*/

/*.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 20px;         
  min-height: 52px;         
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(243,240,234,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,175,158,0.2);
  transition: var(--transition);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--dark);
  text-decoration: none;
}
.logo em { font-style: italic; color: var(--brown); }
nav a {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text-light);
  text-decoration: none;
  margin-right: 32px;
  transition: color 0.3s;
}
nav a:hover { color: var(--brown); }*/ 

/* ===== HERO ===== */
/*.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}*/ 

/*.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(243,240,234,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155,175,158,0.2);
  transition: var(--transition);
}*/