/* ===== MASTER.VIDIS.CO.IL — style.css v4 ===== */

* { box-sizing: border-box; }

body {
  font-family: 'Assistant', sans-serif;
  direction: rtl;
  color: #222;
  background: #fff;
  margin: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #1a1a2e;
  padding: 12px 0;
  position: relative;
}
.navbar a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.navbar a:hover { color: #f0c040; }
.btn-register {
  background: #f0c040;
  color: #1a1a2e !important;
  font-weight: 700;
  border-radius: 25px;
  padding: 6px 18px;
  font-size: 14px;
}

/* ===== HAMBURGER ===== */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #f0c040;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  flex-direction: column;
  background: #16213e;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  width: 100%;
}
.nav-menu.open { display: flex; }

/* תפריט נסגר תמיד בכל גודל מסך — נפתח רק ע"י המבורגר */
@media (min-width: 769px) {
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; }
}
.nav-item {
  color: #ddd !important;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, color 0.2s;
}
.nav-item:hover {
  background: rgba(240,192,64,0.1);
  color: #f0c040 !important;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 80px 0 60px;
}
.hero-badge {
  display: inline-block;
  background: rgba(240,192,64,0.2);
  border: 1px solid #f0c040;
  color: #f0c040;
  border-radius: 25px;
  padding: 6px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}
.highlight { color: #f0c040; }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
}
.video-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-note {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 10px;
}
.btn-hero {
  background: linear-gradient(135deg, #f0c040, #e6a800);
  color: #1a1a2e;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 20px rgba(240,192,64,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240,192,64,0.5);
  color: #1a1a2e;
}

/* ===== SHARED ===== */
section { padding: 70px 0; }
.section-tag {
  display: inline-block;
  background: #f0c040;
  color: #1a1a2e;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a1a2e;
}
.btn-primary-custom {
  background: #1a1a2e;
  color: #f0c040;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  border: 2px solid #1a1a2e;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-primary-custom:hover {
  background: transparent;
  color: #1a1a2e;
}

/* ===== ABOUT ===== */
.section-about { background: #f8f9fa; }
.danny-photo {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}
.stats-row { border-top: 1px solid #e0e0e0; padding-top: 20px; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #f0c040;
  line-height: 1.1;
}
.stat-label { font-size: 12px; color: #777; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.section-testimonials { background: #fff; }
.testimonial-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.quote-icon {
  font-size: 4rem;
  color: #f0c040;
  line-height: 0.8;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e5e5e5;
  padding-top: 16px;
}
.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0c040;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: #1a1a2e;
}
.testimonial-author span {
  font-size: 12px;
  color: #999;
}

/* ===== FOR WHO ===== */
.section-forwho { background: #1a1a2e; color: white; }
.section-forwho h2 { color: white; }
.section-forwho .section-tag { background: rgba(240,192,64,0.2); color: #f0c040; border: 1px solid #f0c040; }
.forwho-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 20px;
  transition: background 0.2s, transform 0.2s;
}
.forwho-card:hover {
  background: rgba(240,192,64,0.12);
  transform: translateY(-4px);
}
.forwho-icon { font-size: 2.5rem; margin-bottom: 12px; }
.forwho-card h5 { color: #f0c040; font-weight: 700; }
.forwho-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }

/* ===== WHAT ===== */
.section-what { background: #f8f9fa; }
.what-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
.check-icon {
  background: #f0c040;
  color: #1a1a2e;
  font-weight: 900;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

/* ===== GALLERY ===== */
.section-gallery { background: #fff; padding: 50px 0; }
.gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.2s;
}
.gallery-img:hover { transform: scale(1.04); }

/* ===== DETAILS ===== */
.section-details { background: #f8f9fa; }
.detail-card {
  background: white;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid #eee;
}
.detail-icon { font-size: 2.5rem; margin-bottom: 12px; }
.detail-card h5 { font-weight: 700; color: #1a1a2e; }
.detail-card p { color: #666; font-size: 14px; margin: 0; }

/* ===== PRICE ===== */
.section-price { background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%); color: white; }
.section-price h2 { color: white; }
.section-price .section-tag { background: rgba(240,192,64,0.2); color: #f0c040; border: 1px solid #f0c040; }
.price-box {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(240,192,64,0.4);
  border-radius: 24px;
  padding: 48px 40px;
  display: inline-block;
  min-width: 320px;
}
.price-label { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 8px; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: #f0c040; margin-bottom: 8px; }
.price-note { color: rgba(255,255,255,0.5); font-size: 14px; }

/* ===== CLIENTS ===== */
.section-clients { background: white; padding: 50px 0; }
.clients-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.clients-list span {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

/* ===== REGISTER ===== */
.section-register { background: #f8f9fa; }
.register-form .form-control {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  font-family: 'Assistant', sans-serif;
  font-size: 15px;
  direction: rtl;
}
.register-form .form-control:focus {
  border-color: #f0c040;
  box-shadow: 0 0 0 3px rgba(240,192,64,0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.6);
  padding: 40px 0 30px;
}
.footer a { color: #f0c040; text-decoration: none; }
.footer-links { font-size: 15px; }
.footer-sep { margin: 0 8px; color: rgba(255,255,255,0.3); }

/* ===== TESTIMONIAL TEXT ===== */
.testimonial-text-wrap {
  padding: 12px 4px 0;
}
.testimonial-quote {
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  font-style: italic;
  margin-bottom: 6px;
}

/* ===== VIDEO TESTIMONIALS ===== */
.video-thumb-wrap {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-thumb-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.video-thumb-wrap:hover img { opacity: 1; }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(240,192,64,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.video-thumb-wrap:hover .play-btn {
  background: #f0c040;
  transform: translate(-50%, -50%) scale(1.1);
}
.play-btn::after {
  content: '';
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #1a1a2e;
  margin-right: -4px;
}
.video-caption {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-top: 8px;
  text-align: center;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.lightbox-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}
.lightbox-close {
  position: absolute;
  top: -44px;
  left: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 12px;
}
.lightbox-close:hover { color: #f0c040; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 50px 0; }
  .hero { padding: 50px 0 40px; }
  .price-box { min-width: unset; padding: 30px 20px; }
}
