/* ============================
   KKS — FULL CSS
   ============================ */

/* FONTS */

/* highlight text */
::selection {
  background-color: #D9C492; color: #fff;
}


@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}




/*---------------------------------------------- 
scale animation
------------------------------------------------*/
.sca_animation { 
  padding: 20px 10px;
  animation: crescendo 1.5s alternate infinite ease-in;
}

@keyframes crescendo {
  0%   {transform: scale(.9);}
  100% {transform: scale(1.0);}
}


.sca_animation_1 { 
  animation: crescendo 1.5s alternate infinite ease-in;
}

@keyframes crescendo {
  0%   {transform: scale(.9);}
  100% {transform: scale(1.1);}
}




/* RESET + BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Rubik", Arial, sans-serif;
  direction: rtl;
  color: #35332C;
  background: #FAF4F0;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}



/* GLOBAL CONTAINER */
.container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 80px; }

/* HEADER dark */
.header {
  position: fixed; top: 0; left: 0; width: 100%; padding: 6px 50px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(53, 51, 44, 0.95); z-index: 1200; 
  
  box-shadow: 0 3px 21px 0 rgba(31, 30, 26, 0.94);
  backdrop-filter: blur(25px);
  direction: ltr;
}



.header * { direction: rtl; }
.logo img { height: 64px; width: auto; display: block; }

html[dir="ltr"] .header {
  position: fixed; top: 0; left: 0; width: 100%; padding: 6px 50px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(53, 51, 44, 0.95); z-index: 1200; 
  
  box-shadow: 0 3px 21px 0 rgba(31, 30, 26, 0.94);
  backdrop-filter: blur(25px);
  direction: ltr;
}



html[dir="ltr"] .header * { direction: ltr; }

html[dir="ltr"] .headline img { height: 38px; margin-top: 0;}



a { color: #35332C; text-decoration: none; }
a:hover { color: #b8862b }

/* DESKTOP NAV */
.desktop-nav { display: flex; gap: 30px; margin-left: auto; margin-right: 0; }
.desktop-nav a { color: #B19249; text-decoration: none; font-size: 16px; line-height: 18px; padding: 6px 0; transition: color .18s ease; }
.desktop-nav a span span { font-size: 15px; }
.desktop-nav a:hover { color: #D9C492; }
.desktop-nav a.active { color: #D9C492; }
.desktop-nav img { margin-top: -3px; }

.scroll-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

/* גורם לקו להופיע רק תחת הטקסט */
.scroll-link .link-text {
    position: relative;
    padding-bottom: 4px;
}

/* הקו */
.scroll-link .link-text::after {
    content: "";
    position: absolute;
    right: 0;        /* מתחיל בצד ימין */
    left: auto;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
    transform-origin: right; /* חשוב להנפשה מימין לשמאל */
}

/* הובר */
.scroll-link:hover .link-text::after {
    width: 100%;
}

/* אקטיבי (מה-JS) */
.scroll-link.active .link-text::after {
 width: 0 !important;   
 /* width: 100%;  הופעת קו במצב אקטיב */

}


.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

/* גורם לקו להופיע רק תחת הטקסט */
.lang-switch .link-text {
    position: relative;
    padding-bottom: 4px;
}

/* הקו */
.lang-switch .link-text::after {
    content: "";
    position: absolute;
    right: 0;        /* מתחיל בצד ימין */
    left: auto;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
    transform-origin: left; /* חשוב להנפשה מימין לשמאל */
}

/* הובר */
.lang-switch:hover .link-text::after {
    width: 100%;
}

/* אקטיבי (מה-JS) */
.lang-switch.active .link-text::after {
 width: 0 !important;   
 /* width: 100%;  הופעת קו במצב אקטיב */

}

/* HAMBURGER */
.hamburger { display: none; width: 34px; height: 24px; background: transparent; border: none; cursor: pointer; z-index: 1400; flex-direction: column; justify-content: space-between; align-items: center; padding: 0; }
.hamburger span { display: block; width: 100%; height: 3px; background: #B19249; border-radius: 3px; transition: transform .28s ease, opacity .28s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* MOBILE NAV (drawer) */
.mobile-nav { position: fixed; top: 0; right: -320px; height: 100vh; width: 300px; background: #fff; padding: 86px 22px 22px 22px; box-shadow: -6px 0 22px rgba(0,0,0,0.12); transition: right .35s cubic-bezier(.2,.9,.25,1); z-index: 1300; }
.mobile-nav.open { right: 0; }
.mobile-nav a { display: flex; padding: 16px 6px; text-decoration: none; color: #35332C; font-size: 16px; border-bottom: 1px solid #eee; }
.mobile-nav a span { font-size: 15px;  }

/* OVERLAY for drawer */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.68); opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s; z-index: 1100; }
.overlay.visible { opacity: 1; visibility: visible; }

/* HERO */

.hero {
  display: flex;
  height: 65vh;
  align-items: center;
  justify-content: center;
  position: relative; 
  z-index: 1; 
}

.bg-slideshow {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  /* background:  linear-gradient(281deg, #B19249 0%, #E3D1A5 100%);  */
  z-index: -1;   
}

.bg-slideshow li {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  opacity: 0;
  animation: fade-slide 15s infinite; /* שינוי זמן תזמון כולל */
}

/* תזמונים */
.bg-slideshow li:nth-child(1) { animation-delay: 0s; }
.bg-slideshow li:nth-child(2) { animation-delay: 5s; }
.bg-slideshow li:nth-child(3) { animation-delay: 10s; } 

/* האנימציה */
@keyframes fade-slide {
  0% { opacity: 0; }
  10% { opacity: 1; }
  33% { opacity: 1; } /* 33 - 3   45-2. */
  43% { opacity: 0; } /* 43 - 3   55-2*/
  100% { opacity: 0; }
}

/* .hero { background-color: #35332C;  display: flex; height: 65vh; align-items: center; justify-content: center; text-align: center; background: url("../img/keren_pic.jpg") center/cover no-repeat; position: relative;  } 

html[dir="ltr"] .hero { background-color: #35332C;  display: flex; height: 65vh; align-items: center; justify-content: center; text-align: center; background: url("../img/keren_pic_en.jpg") center/cover no-repeat; position: relative;  }   */

.hero .hero-inner { max-width: 1100px; padding: 0 20px; color: #fff; text-shadow: 0 6px 18px rgba(0,0,0,0.45); }

.hero p { font-size: 20px; margin-bottom: 18px; }
.cta-btn { background: #b8862b; color: #fff; padding: 12px 26px; border-radius: 8px; text-decoration: none; }

/* SECTIONS */
section {  background: transparent; }
.headline { display: flex; justify-content: center; align-items: center; gap: 8px; align-self: stretch; padding-bottom: 30px;}
.headline img { height: 38px; margin-top: 4px;}

.about_text { max-width: 100%; padding-bottom: 96px; background-color: #35332C; }
.about1 { max-width: 100%;  background-color: #35332C; }

.about  { width: 100%; background-color: #5c4b11; height: 100px; padding-top: 200px;}
.about_text .container { padding-top: 50px ;  width: 100%; max-width: 1100px; background-color: #35332C;}
.about1 .container { padding-top: 50px ; text-align: center; width: 100%; max-width: 1000px; background-color: #35332C;}

.keren .container { padding-top: 60px ; padding-bottom: 80px; width: 100%; max-width: 1100px;}
.contact .container { padding-top: 110px; padding-bottom: 200px; width: 100%; max-width: 1100px;}
.container .center { align-items: center; padding-bottom: 10px; }
.container .center_mobile { align-items: center; padding-bottom: 20px; }

.container .center_text { text-align: center; padding-left: 170px; padding-right: 170px; } 
.hero_logo { text-align: center; align-items: center; }

.spacer {height: 30px;}

.inner-card-bright-px {background: #EBE4E1; height: 1px; }
.inner-card-dark-px {background: #ffffff; height: 1px; }




/* DATA */
.data {
  
  position: absolute;
  bottom: 0;              /* stick to the bottom of hero */
  left: 50%;
  transform: translate(-50%, 50%); /* pull downward across the border */
  z-index: 50;
  pointer-events: auto;
  transition: transform 0.35s ease;
  
  display: flex; flex-wrap: wrap; align-items: stretch; align-content: flex-start; gap: 2%; row-gap: 14px; margin-top: 10px; width: 58%;
  /* display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 10px; */

}

.data_content {
  display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
flex: 0 0 1;
}


.data_con {
  background: rgba(255, 255, 255, 0.80);
display: flex; flex: 0 0 1; width: 70%;
justify-content: space-between; align-items: center; 
  border-radius: 40px;
box-shadow: 0 5px 20px 0 rgba(24, 25, 34, 0.5);
  backdrop-filter: blur(10px);
  padding: 8px 100px 8px 100px;
}

.data_con2 { 
  background:  linear-gradient(281deg, #B19249 0%, #E3D1A5 100%);  
  display: flex; flex: 1 1 28%;
  border-radius: 40px; 
box-shadow: 0 5px 20px 0 rgba(24, 25, 34, 0.5);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease;
  padding: 8px 36px 12px 36px; gap:6px; align-items: center; justify-content: center;
}

.data_con2:hover {
  cursor: pointer; 
  background-color: #F7F1ED; 
  transform: translateY(-5px);
  box-shadow: 0 14px 20px rgba(24, 25, 34, 0.7);
  
}

.about_content {
  display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
flex: 0 0 1;
}
.about_con { display: flex; gap: 10%; justify-content: center; align-items: center;  padding-bottom: 50px; padding-top: 30px; }
.about_content p {margin-bottom: 0;}
.about_content span { font-size: 22px; font-weight: 300; color: #D9C492; margin-top: -8px;}
.about_content img { height: 40px; width: 40px; }

html[dir="ltr"] .about_content span { font-size: 18px; font-weight: 300; color: #D9C492; text-transform: uppercase; letter-spacing: 1px;  margin-top: -6px;}  
html[dir="ltr"] .about_content img { height: 40px; width: 40px; }
html[dir="ltr"] .about_con { display: flex; gap: 10%;}


H1 { font-weight: 300; font-size: 24px; line-height: 28px; letter-spacing: 0.5px; color: #B19249; background-image: linear-gradient(45deg, #B19249 20% , #E3D1A5 50%, #B19249 80%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;  }
H1 span { font-size: 22px; font-weight: 500; line-height: 22px; letter-spacing: 4px; }
html[dir="ltr"] H1 { font-weight: 300; font-size: 17px; text-transform: uppercase; letter-spacing: 1px; line-height: 25px; color: #B19249; background-image: linear-gradient(45deg, #B19249 20% , #E3D1A5 50%, #B19249 80%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;  }
html[dir="ltr"] H1 span { font-size: 14px; text-transform: uppercase; font-weight: 500; letter-spacing: 6px; }


H2 { font-size: 34px; font-weight: 300; color: #B19249; }
.about_text H2, .video H2 { font-size: 34px; font-weight: 300; color: #D9C492; }
html[dir="ltr"] H2 { font-size: 26px; font-weight: 300; text-transform: uppercase; letter-spacing: 0.5px;}

H3 { font-size: 32px; font-weight: 300; color: #35332C; }
.center H3, .center_mobile H3 { font-size: 27px; line-height: 29px; font-weight: 300;  color: #B19249; background-image: linear-gradient(45deg, #B19249 20% , #E3D1A5 50%, #B19249 80%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }
H3 span { font-size: 25px; }
html[dir="ltr"] .center H3, .center_mobile H3 { font-size: 22px; line-height: 29px; font-weight: 300; text-transform: uppercase;  color: #B19249; background-image: linear-gradient(45deg, #B19249 20% , #E3D1A5 50%, #B19249 80%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }


H4 { font-size: 24px; font-weight: 300; color: #B19249; line-height: 1.2;}
H5 { font-size: 20px; font-weight: 300; color: #35332C; line-height: 1.3; }
H6 { font-size: 13px; font-weight: 300; padding-bottom: 10px;}
p { font-size: 18px; font-weight: 400; line-height: 1.5;  margin-bottom: 20px; 
 color: #35332C;
  }
p span { font-size: 18px; font-weight: 600; line-height: 1.5; color: #35332C; }

.about_text p { line-height: 1.6; color: #CCC6BE; }
.about_text p span { font-weight: 600; color: #CCC6BE; }

H6 a {font-family: "Rubik", Arial, sans-serif; font-size: 13px; font-weight: 300; color: #A09B95; line-height: 24px;}
H6 a:hover {font-family: "Rubik", Arial, sans-serif; font-size: 13px; font-weight: 300; color: #B19249; }
H6 a:active {font-family: "Rubik", Arial, sans-serif; font-size: 13px; font-weight: 300; color: #A09B95; }
H6 a:visited {font-family: "Rubik", Arial, sans-serif; font-size: 13px; font-weight: 300; color: #A09B95; }


i.fa-universal-access { color: #A09B95  !important; }
i.fa-lock { color: #A09B95  !important; }
i.fa-desktop { color: #A09B95  !important; }
i.fa-globe { color: #A09B95  !important; }

/* DATA END */

/* EXPERTISE GRID + CARDS */
.expertise .container { text-align: center; padding-bottom: 40px; padding-top: 100px; }
.expertise-grid { display: flex; flex-wrap: wrap; align-items: stretch; align-content: flex-start; gap: 20px; margin-top: 10px;  }
.card { flex: 1 1 360px;  display: flex; flex-direction: column; height: auto; background: #fff; border-radius: 12px; padding: 0 0; box-shadow: 0 6px 20px rgba(0,0,0,0.06); transition: transform .28s cubic-bezier(.2,.9,.25,1), box-shadow .28s ease; text-align: center; position: relative; overflow: hidden; }
.card .icon { font-size: 40px; padding: 10px 20px;}
.card H3 { font-size: 32px; color: #B19249; padding: 0 10px 0 10px;}
.card H5 { color: #A09B95; font-size: 18px;  line-height: 1.3; padding: 0 19px 20px 19px; }
.card .inner-card {flex-grow: 1; background: #fafafa; padding: 20px 24px; text-align: right; }
html[dir="ltr"] .card .inner-card {text-align: left; }
.mo-hide {display: none;}

.card .inner-card-bright-px {background: #e5e5e5; height: 1px; }
.card .inner-card-dark-px {background: #ffffff; height: 1px; }
.card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.card::after { content: ""; position: absolute; bottom: 0; right: 0; width: 0%; height: 4px; background: #b8862b; transition: width .35s ease; }
.card:hover::after { width: 100%; }

.dark-px {background: #000103; height: 1px; width: 30px; }

.line_separrte { padding-top: 50px;}

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* VIDEO */
.video .container { max-width: 100%; padding-bottom: 140px; padding-top: 140px; background-color: #35332C; }
.video-grid { display: flex; flex-wrap: wrap; align-items: stretch; align-content: flex-start; gap: 20px; margin-top: 10px;  }
.video_text { padding: 20px 20px 0 20px; }
.video_text .spacer10 { height: 10px;}


/* IMAGE */
.image { background-color: #35332C; }
.image .container { background-color: #35332C; height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; background: url('../img/kks_logo_on_bright.svg') center/cover no-repeat ; background-size: 50%; position: relative; background-attachment: fixed; }
html[dir="ltr"] .image .container { background-color: #35332C; height: 50vh; display: flex; align-items: center; justify-content: center; text-align: center; background: url('../img/kks_logo_on_bright.svg') center/cover no-repeat ; background-size: 50%; position: relative; background-attachment: fixed; }







/* BACK TO TOP */
.back-to-top { position: fixed; right: 16px; bottom: 13px; width: 40px; height: 40px; border-radius: 8px; background: #B19249; color: #fff; border: none; font-size: 18px; display: none; z-index: 1400; cursor: pointer; }

/* RESPONSIVE */

@media (max-width: 600px) {
  
  H1 { font-weight: 300; font-size: 23px; line-height: 28px; letter-spacing: 0.5px; color: #B19249; background-image: linear-gradient(45deg, #B19249 20% , #E3D1A5 50%, #B19249 80%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;  }
H1 span { font-size: 20px; font-weight: 500; line-height: 22px; letter-spacing: 4px; }
  
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .logo img { height: 64px; width: auto; }
  .hero { height: 50vh; }
  .hero_logo { text-align: center; align-items: center; padding-bottom: 0; padding-top: 10px;}
  

  .container { padding: 0 20px; }
  .header { padding: 6px 20px; }
  html[dir="ltr"] .header { padding: 6px 20px; }
  .data { grid-template-columns: 1fr; padding: 0 0; width: 96%; 
  position: absolute; 
  bottom: 0;              /* stick to the bottom of hero */
  left: 50%;
  transform: translate(-50%, 78%); /* pull downward across the border */
  }
  
  
  .data_con { padding: 8px 10% 8px 10%; width: 100%;  }
  .data_con2 { padding: 14px 14px 18px 14px;  }
  .data_con2 h3 { font-size: 18px; padding-top: 2px;}
  .data_con h3 { font-size: 15px; color: #695321; margin-top: -4px; }
  .data_con2 img { width: 24px; height: 24px; }
  .data_content img { height: 24px; width: 24px; }
 
html[dir="ltr"]   .data { width: 96%; }
html[dir="ltr"]   .data_con { padding: 8px 4% 8px 4%; width: 100%; gap: 2%;}
html[dir="ltr"]   .data_con2 { padding: 16px 0 16px 0; display: flex; flex: 1 1 0; }
html[dir="ltr"]   .data_con h3 { font-size: 14px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_con2 h3 { font-size: 14px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_content img, .data_con2 img { height: 24px; width: 24px; }


.about_content span { font-size: 16px; font-weight: 300; color: #D9C492; margin-top: -6px;}
.about_content img { height: 36px; width: 36px; }
html[dir="ltr"] .about_content span { font-size: 12px; font-weight: 300; color: #D9C492; text-transform: uppercase; letter-spacing: 1px;}  
html[dir="ltr"] .about_content img { height: 30px; width: 30px; }
html[dir="ltr"] .about_con { display: flex; gap: 6%;}

  
  .image { background-size: contain; background-attachment: scroll; padding-top: 0; }
  .image .container { display: none; }
  html[dir="ltr"] .image .container { display: none; }

  .about_text .container { padding-left: 20px; padding-right: 20px; }
  .keren .container { padding-left: 20px; padding-right: 20px; }
  .contact .container { padding-left: 20px; padding-right: 20px; }
  .video .container { padding-bottom: 0; }
  .contact_logo img { display: none;}
  

  .about1 .container { padding-top: 60px ; text-align: center;  width: 100%; max-width: 1000px; background-color: #35332C;}
  .container .center { display: none; }
  .container .center_text { padding-left: 0; padding-right: 0; padding-top: 80px; } 
  .container .center_mobile { padding-left: 0; padding-right: 0; }
 
  .card .inner-card { padding: 20px 16px; }
  
  
  .spacer {height: 30px;}
}

/* CONTACT */
.contact_all { 
  display: flex; 
  /* flex-direction: row-reverse; */
  flex-direction: row;
align-items: flex-start; /* center */
align-content: flex-start; /* center */
gap: 44px 28px;
align-self: stretch;
flex-wrap: wrap;
}
html[dir="ltr"] .contact_all { flex-direction: row; }

.contact_logo { display: flex;
width: 350px;

flex-direction: column;
align-items: flex-start;
gap: 10px; }
.contact_logo img { width: 85%; }
html[dir="ltr"] .contact_logo img { width: 95%;}

.contact_detail{
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
flex: 1 0 0;
}
.contact_warp {
display: flex;
padding: 16px 20px;
align-items: center;
gap: 12px;
align-self: stretch;
  border-radius: 16px;
background-color: #F5EDE9;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.contact_warp_social_all {
display: flex;
align-items: center;
gap: 16px;
align-self: stretch;
  border-radius: 16px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.contact_warp:hover {
  background-color: #F7F1ED; 
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); 
}
/* change svg color) */
.contact_warp:hover img,
.contact_warp.active img {
    filter: brightness(0) saturate(60%) invert(42%) sepia(64%) saturate(800%) hue-rotate(11deg);
}


.contact_icon{display: flex;
align-items: flex-start; width: 30px;
height: 30px;
aspect-ratio: 1/1;}
.contact_text {display: flex;
align-items: flex-start; }
.contact_detail a {font-size: 18px; text-decoration: none; color: #35332C;}
.contact_detail a:hover { text-decoration: none; color: #B19249; }
.contact_para { 
padding: 12px 0;
align-items: center;
}

.contact_warp_full_width { flex: 1 1 100%; padding-top: 42px; margin-bottom: -10px;}

.contact_warp_social{ display: flex; padding: 20px 16px; flex-direction: column; justify-content: center; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 16px; background-color: #F5EDE9; transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; }
.contact_warp_social:hover { background-color: #F7F1ED; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); }


.contact_warp_instagram{ display: flex; padding: 20px 16px; flex-direction: column; justify-content: center; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 16px; background-color: #F5EDE9; transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; }
.contact_warp_facebook{ display: flex; padding: 20px 16px; flex-direction: column; justify-content: center; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 16px; background-color: #F5EDE9; transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; }
.contact_warp_linkedin{ display: flex; padding: 20px 16px; flex-direction: column; justify-content: center; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 16px; background-color: #F5EDE9; transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; }
.contact_warp_youtube{ display: flex; padding: 20px 16px; flex-direction: column; justify-content: center; align-items: center; gap: 8px; flex: 1 0 0; border-radius: 16px; background-color: #F5EDE9; transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease; }

.contact_warp_instagram:hover { background-color: #833AB4; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); }
.contact_warp_facebook:hover { background-color: #1877F2; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); }
.contact_warp_linkedin:hover { background-color: #0077B5; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); }
.contact_warp_youtube:hover { background-color: #FF0000; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); }

/* change svg color) */
.contact_warp_social:hover img,
.contact_warp_social.active img { filter: brightness(0) saturate(60%) invert(42%) sepia(64%) saturate(800%) hue-rotate(11deg); }







/* tablets */
@media (min-width: 600px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .hero { height: 62vh; background-size: cover; background-color: #35332C; }
  html[dir="ltr"] .hero { height: 62vh; background-size: cover; background-color: #35332C; }

  .hero_logo { text-align: center; align-items: center; padding-bottom: 0;}
 
  
  
  
  
  .data { width: 80%; }
  .data_con { padding: 8px 6% 8px 6%; width: 67%;  }
  .data_con2 { padding: 8px 10px 8px 10px;  }
  .data_con2 h3 { font-size: 18px; padding-top: 2px;}
  .data_con h3 { font-size: 16px; color: #695321; margin-top: -4px; }
  .data_con2 img { width: 26px; height: 26px; }
  .data_content img { height: 26px; width: 26px; }
  
html[dir="ltr"]   .data { width: 98%; }
html[dir="ltr"]   .data_con { padding: 8px 4% 8px 4%; width: 74%; }
html[dir="ltr"]   .data_con2 { padding: 6px 0 10px 0; display: flex; flex: 1 1 16%; }
html[dir="ltr"]   .data_con h3 { font-size: 14px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_con2 h3 { font-size: 14px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_content img, .data_con2 img { height: 24px; width: 24px; }


.about_content span { font-size: 18px; font-weight: 300; color: #D9C492; }
.about_content img { height: 40px; width: 40px; }
html[dir="ltr"] .about_content span { font-size: 14px; font-weight: 300; color: #D9C492; text-transform: uppercase; letter-spacing: 1px;}  
html[dir="ltr"] .about_content img { height: 30px; width: 30px; }
html[dir="ltr"] .about_con { display: flex; gap: 5%;}
  
  .data_content1 .num { font-size: 32px; font-weight: 300; }
  .contact_logo img { display: flex; }
  .about1 .container { padding-left: 0; padding-right: 0; padding-top: 60px ; text-align: center;  width: 100%; max-width: 1000px; background-color: #35332C;}

  .container .center {  text-align: center;  }
  .container .center_text { padding-left: 80px; padding-right: 80px; padding-top: 20px;  } 
  .container .center_mobile { display: none; }
  
  .card .inner-card { padding: 20px 20px; }
  .mo-hide {display: inline;}
  
  .spacer {height: 50px;}
  
}

@media (min-width: 1000px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .hero { height: 72vh; background-size: cover; background-color: #35332C; }
 html[dir="ltr"] .hero { height: 74vh; background-size: cover; background-color: #35332C; }

  

  
  
  
 
  .container .center { padding-left: 50px; padding-right: 50px;  } 
   .about1 .container { padding-top: 50px ; text-align: center;  width: 100%; max-width: 1000px; background-color: #35332C;}

  .card .inner-card {padding: 20px 24px; }


  
 
  .data { width: 70%; }
  .data_con { padding: 6px 10% 8px 10%; width: 67%;  }
  .data_con h3 { font-size: 20px; color: #695321; margin-top: -4px; }
  .data_con2 h3 { font-size: 20px; font-weight: 300;}
  .data_con2 img { height: 30px; width: 30px;}
  .data_content img { height: 30px; width: 30px; }

html[dir="ltr"]   .data { width: 88%; }
html[dir="ltr"]   .data_con { padding: 8px 7% 8px 7%; width: 78%; }
html[dir="ltr"]   .data_con2 { padding: 6px 10px 10px 10px; display: flex; flex: 1 1 20%; }
html[dir="ltr"]   .data_con h3 { font-size: 16px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_con2 h3 { font-size: 16px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_content img, .data_con2 img { height: 28px; width: 28px; }
  


.about_content span { font-size: 22px; font-weight: 300; color: #D9C492; }
.about_content img { height: 40px; width: 40px; }
  
html[dir="ltr"] .about_content span { font-size: 18px; font-weight: 300; color: #D9C492; text-transform: uppercase; letter-spacing: 1px;}  
html[dir="ltr"] .about_content img { height: 40px; width: 40px; }
html[dir="ltr"] .about_con { display: flex; gap: 10%;}

}

/* Above 1200px: keep the image size fixed */
@media (min-width: 1150px) {
 .desktop-nav { display: flex; gap: 26px; margin-left: auto; margin-right: 0; }  
  .hamburger { display: none; }
  .hero_logo { text-align: center; align-items: center;  padding-top: 10px; }
  .hero { height: 74vh; background-size: cover; background-color: #35332C; }
  .container .center_text { padding-left: 80px; padding-right: 80px; padding-top: 15px;  } 
  
 
  .data { width: 65%; }
  .data_con { padding: 6px 10% 8px 10%; width: 67%;  }  
  .data_con h3 { font-size: 20px; color: #695321; margin-top: -4px; }
  .data_con2 h3 { font-size: 20px; font-weight: 300;}
  .data_con2 img { height: 30px; width: 30px;}
  .data_content img { height: 30px; width: 30px; }
  
html[dir="ltr"]   .data { width: 75%; }
html[dir="ltr"]   .data_con { padding: 8px 7% 8px 7%; width: 78%; }
html[dir="ltr"]   .data_con2 { padding: 6px 10px 10px 10px; display: flex; flex: 1 1 20%; }
html[dir="ltr"]   .data_con h3 { font-size: 16px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_con2 h3 { font-size: 16px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_content img, .data_con2 img { height: 28px; width: 28px; }

}


/* Above 1440px: keep the image size fixed */
@media (min-width: 1440px) {
  .hero { height: 65vh; background-size: cover; background-color: #35332C; }
  html[dir="ltr"] .hero { height: 65vh; background-size: cover; background-color: #35332C; }
  .desktop-nav { display: flex; gap: 36px; margin-left: auto; margin-right: 0; }  
  
  

  .data { width: 58%; }
  .data_con { padding: 6px 10% 8px 10%; width: 67%;  }  
  .data_con h3 { font-size: 20px; color: #695321; margin-top: -4px; }
  .data_con2 h3 { font-size: 20px; font-weight: 300;}
  .data_con2 img { height: 30px; width: 30px;}
  .data_content img { height: 30px; width: 30px; }

html[dir="ltr"]   .data { width: 60%; }
html[dir="ltr"]   .data_con { padding: 8px 7% 8px 7%; width: 78%; }
html[dir="ltr"]   .data_con2 { padding: 6px 10px 10px 10px; display: flex; flex: 1 1 20%; }
html[dir="ltr"]   .data_con h3 { font-size: 16px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_con2 h3 { font-size: 16px; padding-top: 3px; text-transform: uppercase;  }
html[dir="ltr"]   .data_content img, .data_con2 img { height: 28px; width: 28px; }

  
 
  .hero_logo { text-align: center; align-items: center;  padding-top: 0; }
  .container .center_text { padding-left: 80px; padding-right: 80px; padding-top: 15px;  } 
.spacer {height: 30px;}
}







/* footer */
footer { text-align: center;  background: #35332C; color: #A09B95; padding-bottom: 10px; padding-left: 20px; padding-right: 20px;}
.footer_top { margin-bottom: 20px; height: 25px; background: linear-gradient(180deg, #1F1D19 0%, #35332C 100%);}
.footer_con { height: 130px; }
.footer_con img { width: 200px; }
.docfile { direction: rtl;}
html[dir="ltr"] .docfile { direction: ltr;}

/* mobile navigation icon+text */
.mobile-link { display: flex; align-items: center; gap: 6px; }
.mobile-lang-switch { display: flex; align-items: center; gap: 6px; }


/* animation button) */
.tag-btn {
  display: inline-block;
  border-radius: 8px 0 0 0; 
border: 1px solid ;
  color: #B19249;
  font-size: 18px;
  padding: 3px 10px;
  line-height: 1.1; 
  text-align: right;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
html[dir="ltr"] .tag-btn { border-radius: 0 8px 0 0; text-align: left; }
/* שכבת צבע שתתפשט */
.tag-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #eceae6; /* הגוון החדש שמתפשט */
  
  transition: width 0.4s ease;
  z-index: 0;
}
html[dir="ltr"] .tag-btn::before  { left: 0; }
/* טקסט מעל שכבת ההתפשטות */
.tag-btn span {
  
  position: relative;
  z-index: 1;
}

/* בעת Hover — הגוון החדש מתפשט משמאל לימין או ימין לשמאל */
.tag-btn:hover::before {
  width: 100%; 
}
/* end animation button) */



.tag {
  display: flex;

align-items: flex-start;
align-content: flex-start;
gap: 6px;
align-self: stretch;
flex-wrap: wrap; text-align: right;
  padding-bottom: 30px; padding-top: 10px;
}
/* use with no animation tag-btn) */
.tag_text {
flex: 0 0 1; 
display: flex;
padding: 0 10px;
justify-content: flex-end;

text-align: center;
border-radius: 8px 0 0 0; 
border: 1px solid var(--color-primary_color-peach, #B19249);
  color: #B19249;
}


/* change svg color) */
.scroll-link:hover img,
.scroll-link.active img {
    filter: brightness(96%) saturate(55%) invert(26%) sepia(76%) saturate(100%) hue-rotate(11deg);
}
.lang-switch:hover img,
.lang-switch.active img {
    filter: brightness(96%) saturate(55%) invert(26%) sepia(76%) saturate(100%) hue-rotate(11deg);
}



.contact_link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #35332C;
}
.contact_link a { text-decoration: none; color: #35332C; }
.contact_link a:hover { text-decoration: none; color: #B19249; }


.ver_line { background-color: #574b23; width: 1px; height: 30px; text-align: center;}






/* language  */

html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}

html[dir="ltr"] .desktop-nav a {
  flex-direction: row; direction: ltr;
}  



/* KEREN */
.about_logo_static { display: flex; padding-top: 30px; padding-bottom: 80px;
align-items: center;
align-content: center;
gap: 20px;
align-self: stretch;
flex-wrap: wrap;}

.logo_section_static { 
 display: flex;

padding: 10px 0;
justify-content: center;
align-items: center;
gap: 8px;
flex: 1 1 0;
}


/* KEREN LOGO ANIMATION */

.marquee-container {
  width: 100%;
  overflow: hidden;
  direction: ltr; /* מומלץ כדי לוודא שהכיוון באנימציה אחיד */
}


.about_logo {
  display: flex;
  align-items: center;
  gap: 70px;
  padding-right: 70px;
  
  align-self: stretch; 
  width: max-content; 
  /* הפעלת האנימציה */
  animation: scroll-left 100s linear infinite;
}

.logo_section { display: flex; padding: 10px 0; justify-content: center; align-items: center; gap: 8px; flex-shrink: 0; }

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); 
  }
}

.marquee-container:hover .about_logo { animation-play-state: paused; }


