/* ─────────────────────────────────────────
   BUMPIFY LANDING PAGE — style.css
   ───────────────────────────────────────── */

/* ── CSS Variables ── */
:root {
  --pink:        #E8B4B8;
  --pink-light:  #F2C9CC;
  --pink-pale:   #FDF0F1;
  --gray-light:  #E0E0E0;
  --gray-mid:    #999;
  --gray-dark:   #666;
  --text:        #333;
  --white:       #fff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   32px;
  --radius-pill: 100px;

  --shadow-soft: 0 4px 24px rgba(232,180,184,0.18);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);

  --transition: 0.3s ease;

  --max-width: 1100px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a,
.btn,
.feature-card,
.social-link,
.navbar {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ───────────────────────────────────────── */
/* BLOB BACKGROUND (matches BlobBackground.tsx) */
/* ───────────────────────────────────────── */
.blob-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

/* All page content needs to sit above the blobs */
.navbar, .hero-inner, .hero-scroll-hint,
.features .container, .screenshots .container,
.waitlist .container, .about .container,
.social .container, .footer .container {
  position: relative;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

/* Blob 1 — #E8B4B8, 260×260, top:-80 right:-80 — 8s */
.blob-1 {
  width: 260px;
  height: 260px;
  background-color: #E8B4B8;
  top: -80px;
  right: -80px;
  animation: blobPulse 8s ease-in-out infinite;
}

/* Blob 2 — #D89BA0, 180×180, top:200 left:-60 — 9s delay 1s */
.blob-2 {
  width: 180px;
  height: 180px;
  background-color: #D89BA0;
  top: 200px;
  left: -60px;
  animation: blobPulse 9s ease-in-out 1s infinite;
}

/* Blob 3 — #F5D4D7, 140×140, bottom:-40 right:40 — 7s delay 2s */
.blob-3 {
  width: 140px;
  height: 140px;
  background-color: #F5D4D7;
  bottom: -40px;
  right: 40px;
  animation: blobPulse 7s ease-in-out 2s infinite;
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}

 */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
}
.section-title.left-align { text-align: left; }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-dark);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
 background: linear-gradient(135deg, #E8B4B8, #F2C9CC);
  box-shadow: 0 10px 30px rgba(232,180,184,0.35);
}

.btn-primary:hover {
 transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(232,180,184,0.45);
}

.btn-nav {
  background: transparent;
  border: 1.5px solid var(--pink);
  color: var(--pink);
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem;
}
.btn-nav:hover {
  background: var(--pink-pale);
}

/* ── Language Toggle ── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-dark);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.lang-toggle:hover { background: var(--pink-pale); }

.lang-option {
  transition: color var(--transition);
  opacity: 0.45;
}
.lang-option.active {
  color: var(--pink);
  opacity: 1;
}
.lang-divider { color: var(--gray-light); }

/* ───────────────────────────────────────── */
/* NAVBAR                                    */
/* ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(16px);
}
.navbar.scrolled {
  border-bottom-color: var(--gray-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.nav-inner {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ───────────────────────────────────────── */
/* HERO                                      */
/* ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff6f7 0%, #ffffff 100%);
}


.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-logo {
  height: 260px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(232,180,184,0.4));
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-headline em {
  font-style: italic;
  color: var(--pink);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-dark);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.9s ease 0.35s both;
}

.hero .btn-primary {
  animation: fadeUp 0.9s ease 0.5s both;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid var(--pink);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ───────────────────────────────────────── */
/* FEATURES                                  */
/* ───────────────────────────────────────── */
.features {
  padding: 80px 24px;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: #FDF0F1;
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 180, 184, 0.25);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 19px;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* ───────────────────────────────────────── */
/* SCREENSHOTS                               */
/* ───────────────────────────────────────── */
.screenshots {
  padding: 40px 0;
  background: transparent;
}

.screenshots .container {
  max-width: 100%;
  width: 100%;
}

.screenshots-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 5% 40px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}

.screenshot-slot {
  flex: 0 0 auto;
  width: 260px;
  opacity: 0.85;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.screenshot-slot--center {
  opacity: 1;
  transform: scale(1.05);
  z-index: 1;
}

.screenshot-slot:hover {
  opacity: 1;
  transform: scale(1.02);
}

.iphone-mockup {
  position: relative;
  width: 260px;
  background: #1A1A1A;
  border-radius: 28px;
  padding: 3px;
  box-shadow:
    0 0 0 2px #3A3A3A,
    0 20px 60px rgba(232, 180, 184, 0.25),
    0 4px 20px rgba(0,0,0,0.3);
}

.iphone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: #3A3A3A;
  border-radius: 3px;
  z-index: 2;
}

.iphone-screen {
  width: 100%;
  border-radius: 26px;
  display: block;
  object-fit: cover;
}

.screenshot-label {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #E8B4B8;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.download-btn {
  position: relative;
  opacity: 0.7;
  cursor: not-allowed;
  display: inline-block;
}

.download-btn--disabled {
  pointer-events: none;
}

.coming-soon-text {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #E8B4B8;
  letter-spacing: 0.5px;
}

.hero-join-text {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-dark);
}

/* ───────────────────────────────────────── */
/* WAITLIST                                  */
/* ───────────────────────────────────────── */
.waitlist {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  text-align: center;
}

.waitlist-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--pink-light);
  border-radius: 50%;
  opacity: 0.2;
  top: -200px;
  right: -200px;
  pointer-events: none;
  filter: blur(40px);
}

.waitlist-form-wrap {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius-pill);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.email-input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
}
.email-input::placeholder { color: var(--gray-mid); }

.email-input:focus {
  box-shadow: 0 0 0 3px rgba(232,180,184,0.2);
  background: #fff;
}

.waitlist-form .btn-primary {
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  padding: 0.85rem 1.75rem;
  white-space: nowrap;
}

.waitlist-note {
  margin-top: 1rem;
  font-size: 0.83rem;
  color: var(--gray-mid);
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  color: var(--text);
}
.success-icon { font-size: 2rem; }

/* ───────────────────────────────────────── */
/* ABOUT                                     */
/* ───────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: transparent;
}

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.about-text p {
  color: var(--gray-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(232,180,184,0.22);
  background: #fff;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  transform: scale(1.03);
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(1.03) saturate(0.95);
}

/* soft faded frame */
.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0) 58%,
    rgba(255,255,255,0.72) 82%,
    rgba(255,255,255,0.94) 100%
  );
}

/* soft pink glow behind the image */
.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(232,180,184,0.22) 0%,
    rgba(242,201,204,0.14) 45%,
    rgba(255,255,255,0) 75%
  );
  filter: blur(8px);
}

/* bonus hover */
.about-image-wrap:hover img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(0.98);
}

.about-image-organic {
  width: 320px;
  height: 260px;
  overflow: hidden;
  position: relative;

  border-radius: 58% 42% 55% 45% / 45% 55% 40% 60%;

  box-shadow: 0 25px 80px rgba(232,180,184,0.28);
}

.about-image-organic::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(232,180,184,0.25),
    transparent 70%
  );
  z-index: -1;
  filter: blur(10px);
}

.about-image-organic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* hover עדין */
.about-image-organic:hover img {
  transform: scale(1.08);
}

/* ───────────────────────────────────────── */
/* SOCIAL                                    */
/* ───────────────────────────────────────── */
.social {
  padding: 60px 0;
  background: transparent;
  text-align: center;
}

.social-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-dark);
  background: var(--white);
  transition: all var(--transition);
}
.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--pink);
}
.social-link:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  transform: translateY(-2px);
}
.social-link:hover svg { color: var(--white); }

/* ───────────────────────────────────────── */
/* FOOTER                                    */
/* ───────────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  background: var(--text);
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.footer-logo {
  height: 56px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--pink-light);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.5rem 0;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--pink-light); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.5rem;
}

/* ───────────────────────────────────────── */
/* RTL (Hebrew)                              */
/* ───────────────────────────────────────── */
[dir="rtl"] body { font-family: var(--font-body); }
[dir="rtl"] .section-title.left-align { text-align: right; }
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-actions { flex-direction: row-reverse; }
[dir="rtl"] .waitlist-form { flex-direction: row-reverse; }
[dir="rtl"] .waitlist-form .btn-primary {
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
}
[dir="rtl"] .about-inner { direction: rtl; }
[dir="rtl"] .footer-links { flex-direction: row-reverse; }
[dir="rtl"] .features-grid { direction: rtl; }

/* ───────────────────────────────────────── */
/* RESPONSIVE                                */
/* ───────────────────────────────────────── */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .section-title.left-align { text-align: center; }
  [dir="rtl"] .section-title.left-align { text-align: center; }

  .about-visual { order: -1; }
  .about-blob { width: 180px; height: 180px; font-size: 3.5rem; }

  .screenshots-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 10%;
    gap: 16px;
  }
  .screenshot-slot {
    width: 75vw;
    min-width: 75vw;
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
  }
  .screenshot-slot--center {
    transform: none;
  }
  .iphone-mockup {
    width: 100%;
    border-radius: 28px;
  }

  .waitlist-form { flex-direction: column; gap: 12px; border-radius: var(--radius-lg); overflow: visible; border: none; background: transparent; box-shadow: none; }
  .email-input { border: 1.5px solid var(--pink-light); border-radius: var(--radius-pill); background: var(--white); }
  .waitlist-form .btn-primary { border-radius: var(--radius-pill); }
  [dir="rtl"] .waitlist-form .btn-primary { border-radius: var(--radius-pill); }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .nav-logo img { height: 44px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-logo { height: 190px; }
  .footer-logo { height: 48px; }
  .btn-nav { display: none; }
}
