:root{
  --blue:#003366;
  --accent:#0077cc;
  --muted:#6b6f76;
  --card:#ffffff;
  --bg:#f3f4f6;
  --container-width:1200px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:var(--bg);
  color:#1f2933;
  margin:0;
  -webkit-font-smoothing:antialiased;
}
.container{
  width:92%;
  max-width:var(--container-width);
  margin:0 auto;
}

/* Header */
.site-header{
  background:transparent;
  padding:18px 0 6px;
}
.header-inner{display:flex;align-items:center;gap:18px;justify-content:flex-start}
.logo{height:64px;}
.brand-text{margin-left:14px}
.site-title{font-size:20px;color:var(--blue);margin:0}
.site-sub{color:var(--muted);margin:4px 0 0}

/* === Responsive Banner Fix for hero-hero === */
.hero-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

}

.hero-hero img {
  max-width: 100%;
  height: auto;
  object-fit: contain; /* שמירה על פרופורציות */
}

.hero-hero .text {
  text-align: right;
  max-width: 500px;
  padding: 20px;
}

@media (max-width: 768px) {
  .hero-hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-hero .text {
    text-align: center;
  }
}

/* Content area on white card */
.content{padding:34px 0}
.white-card{background:#fff;padding:36px;border-radius:12px;box-shadow:0 10px 40px rgba(3,10,26,0.06)}
.content h2{color:var(--blue);margin-bottom:12px}
.content h3{color:var(--blue);margin-top:18px}
.content p{color:var(--muted);line-height:1.65}

/* About flex with images */
.about-flex{display:flex;gap:28px;align-items:flex-start}
.about-text{flex:1}
.about-images{flex:0 0 360px;display:flex;flex-direction:row;gap:16px;justify-content:flex-end;align-items:flex-start}
.demo-img{width:48%;border-radius:10px;background:#fff;box-shadow:0 8px 25px rgba(3,10,26,0.08);display:block;border:3px solid #fff}

/* Features list */
.features{list-style:disc;margin-left:20px;}

/* === Stone 3D Gallery === */
.stone-gallery {
  background: #f8f9fb;
  padding: 60px 20px;
  text-align: center;
  
}


.stone-set {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  flex-wrap: wrap;
  border: 2px solid #003366;
}

@media screen and (min-width: 1024px) {
  .stone-set .media {
    flex: 1 1 48%;
    max-width: 48%;
  }
}



stone-set .media img, .media video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

stone-set .media img:hover, .media video:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .stone-set {
    flex-direction: column;
    max-width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  .stone-gallery video {
    height: 400px !important;
  }
}



/* Gallery */
.gallery{padding:28px 0}
.gallery h2{color:var(--blue);margin-bottom:16px}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.media{overflow:hidden;border-radius:10px;position:relative;background:#fff;box-shadow:0 6px 18px rgba(3,10,26,0.04)}
.media img{width:100%;;display:block;transition:transform .35s ease,box-shadow .35s ease}
.media video{width:100%;height:220px;border:0;border-radius:10px;display:block}
.media iframe{width:100%;height:220px;border:0;border-radius:10px}
.media:hover img{transform:scale(1.06);box-shadow:0 10px 30px rgba(3,10,26,0.12)}

/* Contact area: full-width thin blue line + centered white cards */
.contact-area{background:transparent;padding-top:12px;margin-top:30px}
.full-width-line{height:6px;background:var(--blue);width:100%;position:relative;left:0;top:0}
.contact-container{
  background: #ffffff;
  margin: -18px auto 0;
  padding: 36px 20px 52px;
  border-radius:12px;
  box-shadow: 0 12px 40px rgba(3,10,26,0.06);
  position:relative;
  max-width:1200px;
}
.contact-title{
  text-align:center;
  color:var(--blue);
  font-size:22px;
  margin:4px 0 26px;
}

/* Cards row */
.contact-row{
  display:flex;
  gap:22px;
  justify-content:space-between;
  align-items:stretch;
  flex-wrap:nowrap;
}
.contact-card{
  background:var(--card);
  flex:1 1 0;
  padding:26px 22px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 6px 20px rgba(3,10,26,0.04);
  border:1px solid rgba(3,10,26,0.04);
  display:flex;
  flex-direction:column;
  align-items:center;
}
.icon-circle{
  width:72px;height:72px;border-radius:50%;
  background:#fff; display:flex; align-items:center; justify-content:center;
  border:3px solid var(--blue);
  box-shadow:0 8px 22px rgba(3,10,26,0.06);
  color:var(--blue); font-size:28px; margin-bottom:14px;
}
.contact-card h3{color:var(--blue);margin:6px 0 8px;font-size:16px}
.contact-card p{color:var(--muted);margin:0;line-height:1.5}
.contact-card a{color:var(--blue);text-decoration:none;font-weight:600}
.contact-card a:hover{text-decoration:underline}

/* Footer */
.site-footer{background:var(--blue);color:#fff;padding:18px 0;margin-top:40px}
.site-footer .container{text-align:center;font-size:14px}

/* Back to top button */
#backToTop{
  position:fixed;
  right:20px;
  bottom:26px;
  width:48px;height:48px;border-radius:50%;
  border:none;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 22px rgba(3,10,26,0.18);cursor:pointer;opacity:0;transform:translateY(10px);transition:all .28s ease;
  z-index:1000;
}
#backToTop.visible{opacity:1;transform:translateY(0)}
/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px; /* שנה ל-left אם רוצים בצד שמאל */
  background-color: #004080; /* כחול כהה אלגנטי */
  color: #ffffff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.floating-whatsapp:hover {
  background-color: #007bff;
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.6);
  transform: scale(1.1);
}

/* Responsive behaviors */
@media (max-width:1100px){
  .container{width:94%}
  .about-flex{flex-direction:column}
  .about-images{flex:1;order:2;flex-direction:row;justify-content:center}
}
@media (max-width:980px){
  .contact-row{gap:16px}
}
@media (max-width:820px){
  .hero-image{height:320px}
  .contact-row{flex-direction:column;align-items:stretch}
  .contact-card{width:100%}
  .header-inner{flex-direction:column;align-items:center;text-align:center}
  .brand-text{margin-left:0;margin-top:8px}
}
