/* ════════════════════════════════════════════════════════
   רותם אשרוב — אמן חושים | Landing page
   Palette: deep dark + mystic violet→magenta glow.
   Chosen to fit a mentalist / net-celebrity vibe: mysterious,
   modern, energetic. (No brand colors were supplied.)
   ════════════════════════════════════════════════════════ */
:root {
  --bg:       #08070d;
  --bg-2:     #0f0d18;
  --surface:  #15121f;
  --border:   #272235;
  --text:     #f4f1fb;
  --muted:    #9a93b0;
  --violet:   #8b5cf6;
  --magenta:  #e0218a;
  --glow:     0 0 40px rgba(139, 92, 246, 0.45);
  --grad:     linear-gradient(120deg, #8b5cf6, #e0218a);
  --wa:       #25d366;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --maxw:     1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html { background: var(--bg); }
body {
  font-family: 'Heebo', system-ui, sans-serif;
  background: transparent;            /* let the fixed video show through */
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Rubik', 'Heebo', sans-serif; line-height: 1.1; font-weight: 900; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--magenta); color: #fff; }

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  margin-bottom: clamp(28px, 5vw, 56px);
  background: linear-gradient(120deg, #c4a3ff, #ff5ce0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(168,120,255,0.55)) drop-shadow(0 2px 10px rgba(0,0,0,0.6));
}

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ════════════ Fixed background video (scrubbed by page scroll) ════════════ */
.bg-stage { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
.bg-stage__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bg-stage__overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 25%, rgba(8,7,13,0.30), rgba(8,7,13,0.72) 70%),
    linear-gradient(180deg, rgba(8,7,13,0.45), rgba(8,7,13,0.80));
}

/* ════════════ HERO ════════════ */
.hero {
  position: relative; min-height: 100svh; display: flex;
  align-items: center; justify-content: center;
}
/* dark scrim directly behind the hero text — guarantees the white text
   always sits on darkness even when bright video frames scroll behind it */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(70% 55% at 50% 45%, rgba(8,7,13,0.78), rgba(8,7,13,0.35) 60%, transparent 80%);
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 24px; max-width: 720px; }
.hero__avatar {
  width: clamp(110px, 18vw, 168px); height: clamp(110px, 18vw, 168px);
  border-radius: 50%; object-fit: cover; margin: 0 auto 22px;
  border: 2px solid rgba(255,255,255,0.55);
  box-shadow: var(--glow);
}
.hero__kicker {
  font-family: 'Rubik', sans-serif; font-weight: 900;
  font-size: clamp(2.4rem, 9vw, 5.4rem); letter-spacing: 0.02em; line-height: 1;
  background: linear-gradient(120deg, #c4a3ff, #ff5ce0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 18px rgba(168,120,255,0.65)) drop-shadow(0 2px 10px rgba(0,0,0,0.6));
  margin-bottom: 10px;
}
.hero__name {
  font-size: clamp(1.4rem, 4vw, 2.4rem); font-weight: 700; color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 0 24px rgba(0,0,0,0.7);
}
.hero__desc {
  color: #ffffff; margin-top: 12px; font-size: clamp(1.05rem, 2.6vw, 1.3rem); font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.95), 0 0 22px rgba(0,0,0,0.85);
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  background: rgba(8,7,13,0.45);
}

.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px;
  font-size: 1.05rem; font-weight: 700; border: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn .ic { width: 22px; height: 22px; fill: currentColor; }
.btn--wa { background: var(--wa); color: #07210f; box-shadow: 0 8px 30px rgba(37,211,102,0.35); }
.btn--call { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(6px); }
.btn--leave { background: #2f6fed; color: #fff; box-shadow: 0 8px 30px rgba(47,111,237,0.4); }
.btn--leave:hover { background: #275fce; }
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn--call:hover { background: rgba(255,255,255,0.16); }

.hero__content .btn--leave { margin-top: 18px; }
.hero__content .btn--leave span { animation: leavebob 1.6s ease-in-out infinite; }
@keyframes leavebob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(3px) } }

/* ════════════ SOCIALS — phones ════════════ */
.socials { padding: clamp(70px, 12vw, 140px) 20px; background: rgba(15,13,24,0.55); backdrop-filter: blur(2px); }
.phones { display: flex; gap: clamp(28px, 6vw, 80px); justify-content: center; align-items: flex-end; flex-wrap: wrap; max-width: var(--maxw); margin: 0 auto; }
.phone { display: flex; flex-direction: column; align-items: center; gap: 18px; cursor: pointer; }
.phone__device {
  width: 168px; height: 340px; border-radius: 34px; background: linear-gradient(160deg, #1c1830, #0c0a16);
  border: 1px solid var(--border); padding: 10px; position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.phone__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 56px; height: 6px; background: #000; border-radius: 4px; z-index: 2; }
.phone__screen {
  width: 100%; height: 100%; border-radius: 26px; background: radial-gradient(120% 100% at 50% 0%, #211b35, #0a0813);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.phone__logo { width: 58%; height: 58%; fill: #fff; filter: drop-shadow(0 0 14px rgba(139,92,246,0.5)); transition: transform .45s var(--ease); }
.phone__shot { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone__label { font-size: 1.15rem; font-weight: 700; color: var(--text); }

/* playful hover: enlarge + float + tilt + glow */
.phone:hover .phone__device, .phone:focus-visible .phone__device {
  transform: scale(1.12) translateY(-14px) rotate(-3deg);
  box-shadow: 0 40px 90px rgba(139,92,246,0.4), var(--glow);
}
.phone:hover .phone__logo { transform: scale(1.08); }
.phone[data-network="tiktok"]:hover .phone__logo { filter: drop-shadow(0 0 16px #25f4ee) drop-shadow(0 0 22px #fe2c55); }
.phone[data-network="instagram"]:hover .phone__device { box-shadow: 0 40px 90px rgba(224,33,138,0.45), 0 0 40px rgba(224,33,138,0.4); }
.phone[data-network="youtube"]:hover .phone__logo { filter: drop-shadow(0 0 16px #ff0000); }
.phone[data-network="youtube"]:hover .phone__device { box-shadow: 0 40px 90px rgba(255,0,0,0.35), 0 0 40px rgba(255,0,0,0.32); }
@keyframes floaty { 0%,100% { translate: 0 0 } 50% { translate: 0 -8px } }
.phone:hover .phone__device { animation: floaty 2.4s ease-in-out infinite; }

/* ════════════ GALLERY ════════════ */
.gallery { padding: clamp(70px, 12vw, 140px) 20px; max-width: var(--maxw); margin: 0 auto; }
.gallery__videos, .gallery__photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery__photos { margin-top: 18px; }
.media-video, .media-photo {
  width: 100%; aspect-ratio: 9 / 13; object-fit: cover; border-radius: 16px;
  border: 1px solid var(--border); background: var(--surface);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.media-photo:hover, .media-video:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.5); }

/* ════════════ WHY ROTEM ════════════ */
.why { padding: clamp(70px, 12vw, 140px) 20px; max-width: var(--maxw); margin: 0 auto; }
.why__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px;
}
.why__card {
  background: rgba(21,18,31,0.66); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 20px; padding: 30px 26px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.why__card:hover { transform: translateY(-6px); border-color: rgba(139,92,246,0.55); box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 30px rgba(139,92,246,0.18); }
.why__ic { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.why__card h3 {
  font-size: 1.3rem; margin-bottom: 10px;
  background: linear-gradient(120deg, #c4a3ff, #ff5ce0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.why__card p { color: var(--muted); line-height: 1.7; }
.why__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.why__list li { color: var(--muted); padding-right: 22px; position: relative; }
.why__list li::before { content: '✦'; position: absolute; right: 0; color: var(--violet); }
.why__card--goal p { font-size: 1.1rem; }

/* ════════════ REVIEWS (marquee) ════════════ */
.reviews { padding: clamp(70px, 12vw, 140px) 0; background: rgba(15,13,24,0.55); backdrop-filter: blur(2px); overflow: hidden; }
.marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track { display: flex; align-items: stretch; gap: 20px; width: max-content; padding: 0 10px; animation: scroll-rtl 80s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.review {
  width: 360px; flex-shrink: 0; background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 14px; text-align: right;
}
.review__stars { color: #f4c84a; letter-spacing: 2px; font-size: 1rem; }
.review__text { font-size: 1rem; line-height: 1.8; color: var(--text); }
.review__by { margin-top: auto; font-weight: 700; color: var(--violet); font-size: 0.95rem; }

/* ════════════ CONTACT ════════════ */
.contact { padding: clamp(70px, 12vw, 140px) 20px; max-width: var(--maxw); margin: 0 auto; }
.contact__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: start; }
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
/* לבן + צל כהה כדי שהתוויות (טלפון / שם / הודעה) ייקראו תמיד מעל הסרטון */
.field label { font-size: 0.95rem; color: #fff; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 0 18px rgba(0,0,0,0.7); }
.field input, .field textarea {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 13px 16px; color: var(--text); font-family: inherit; font-size: 1rem; outline: none;
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus { border-color: var(--violet); }
.field input.invalid, .field textarea.invalid { border-color: #e05757; }
.field__err { color: #e07777; font-size: 0.8rem; min-height: 1em; }
.btn--submit { background: var(--grad); color: #fff; justify-content: center; box-shadow: 0 10px 34px rgba(139,92,246,0.4); }
.contact__sent { color: var(--wa); font-weight: 700; text-align: center; }

.contact__direct { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.contact__direct-title { font-weight: 700; font-size: 1.1rem; }
.contact__link { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 12px; background: var(--bg-2); border: 1px solid var(--border); transition: border-color .2s, transform .2s; }
.contact__link:hover { transform: translateX(-4px); }
.contact__link .ic { width: 22px; height: 22px; fill: currentColor; }
.contact__link--wa { background: #25d366; border-color: transparent; color: #06250f; font-weight: 700; }
.contact__link--wa:hover { background: #1fbe5a; }
.contact__link--call { background: #2f6fed; border-color: transparent; color: #fff; font-weight: 700; }
.contact__link--call:hover { background: #275fce; }

/* ════════════ FOOTER ════════════ */
.footer { text-align: center; padding: 56px 20px 40px; border-top: 1px solid var(--border); background: var(--bg-2); }
.footer__name { font-family: 'Rubik', sans-serif; font-weight: 900; font-size: 1.4rem; background: linear-gradient(120deg, #c4a3ff, #ff5ce0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer__nav, .footer__social { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.footer__nav a, .footer__social a { color: var(--muted); transition: color .2s; }
.footer__nav a:hover, .footer__social a:hover { color: var(--text); }
.footer__copy { color: var(--muted); font-size: 0.85rem; margin-top: 22px; }
.footer__credit { color: var(--border); font-size: 0.78rem; margin-top: 6px; }

/* ════════════ Floating contact buttons (WhatsApp · Call · SMS) ════════════ */
.fab-stack {
  position: fixed; bottom: 22px; left: 22px; z-index: 90;
  display: flex; flex-direction: column-reverse; gap: 14px;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fab svg { width: 30px; height: 30px; fill: #fff; }
.fab:hover { transform: scale(1.1); }
.fab--wa      { background: var(--wa); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }
/* חיוג — זכוכית שקופה לבנה, בדיוק כמו כפתור ההתקשרות בפתיח (.btn--call) */
.fab--call    { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(6px); box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
/* יצרו קשר — כחול, כמו כפתור "להשארת פרטים" בפתיח (.btn--leave) */
.fab--contact { background: #2f6fed; box-shadow: 0 10px 30px rgba(47,111,237,0.45); }

/* ════════════ Responsive ════════════ */
@media (max-width: 820px) {
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .gallery__videos, .gallery__photos { grid-template-columns: 1fr; }
  .phone__device { width: 150px; height: 304px; }
  /* On mobile only, drop one (dark) video + the photo with the girl.
     Desktop stays unchanged — full 3 videos + 3 photos. */
  .hide-mobile { display: none !important; }
}
