/* Header styles */
.header {
  background: linear-gradient(180deg, #ecefff 0%, #ffffff 100%);
  color: #2d2d2d;
  padding: 2rem 1rem 3rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 420px;
  justify-content: center;
  gap: 0.5rem;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-text-subtitle-en {
  font-family: "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 100;
  font-size: 28px;
  color: #434343;
  letter-spacing: 0;
}

.hero-text-10x {
  height: 87px;
}

.hero-text-workshop {
  font-family: "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 32px;
  color: #434343;
  letter-spacing: 0;
  line-height: 1.08;
}

/* Subtitle */
.hero-subtitle {
  font-family: "Open Sans", "Open Sans Hebrew", sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #434343;
  max-width: 877px;
  line-height: 1.19;
  margin-top: 1.5rem;
  text-align: center;
}

/* Separator between subtitle and philosophy */
.hero-separator {
  width: 100%;
  max-width: 1280px;
  height: 1px;
  background: #f1f1f1;
  margin: 1.5rem 0;
}

/* Philosophy text */
.hero-philosophy {
  font-family: "Open Sans", "Open Sans Hebrew", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #434343;
  max-width: 877px;
  line-height: 1.19;
  text-align: center;
}

.gradient-text {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: linear-gradient(
    135deg,
    #0894ff 0%,
    #bd32d6 35%,
    #6462eb 48%,
    #0894ff 62%,
    #ffa304 80%,
    #ff8c00 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


span.nav-label {}

.nav-items:first-child span.nav-label {
    position: relative;
    top: 2px;
}

/* ── Tablet (768px – 1024px) ─────────────────────── */

@media (max-width: 1024px) {
  .header {
    min-height: 320px;
    padding: 1.5rem 1.5rem 2rem;
  }

  .hero-text-subtitle-en {
    font-size: 22px;
  }

  .hero-text-10x {
    height: 65px;
  }

  .hero-text-workshop {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 20px;
    max-width: 600px;
    margin-top: 1rem;
  }

  .hero-philosophy {
    font-size: 19px;
    max-width: 600px;
  }

  .hero-separator {
    margin: 1rem 0;
  }
}

/* ── Phone (< 768px) ────────────────────────────── */

@media (max-width: 767px) {
  .header {
    min-height: auto;
    padding: 1.25rem 1rem 1.5rem;
    gap: 0.25rem;
  }

  .hero-text-subtitle-en {
    font-size: 16px;
  }

  .hero-text-10x {
    height: 48px;
  }

  .hero-text-workshop {
    font-size: 17px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
    margin-top: 0.75rem;
    line-height: 1.4;
  }

  .hero-separator {
    margin: 0.75rem 0;
  }

  .hero-philosophy {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.45;
  }
}