* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  background: url("assets/bg-desktop.jpg") no-repeat center center;
  background-size: cover;
  color: #ffffff;
}

/* HERO */

.hero {
  min-height: 100vh;

  /* מיקום אופקי */
  max-width: clamp(900px, 60vw, 1400px);
  margin-left: 22vw;

  /* מיקום אנכי כללי */
  padding-top: 18vh;
  padding-right: 64px;
  padding-left: 64px;

  text-align: left;
}

/* LOGO */

.logo {
  height: 42px;                 /* גדל ~1.3x */
  width: auto;
  display: block;

  margin-bottom: 6vh;           /* קרוב למשפט הראשי, אבל לא מדי */
}

/* HEADLINE */

.headline {
  margin: 0 0 3vh 0;

  font-weight: 600;
  font-size: clamp(52px, 5.2vw, 82px);   /* ×1.3 */
  line-height: 1.12;
  letter-spacing: -0.01em;

  color: #1DDBC4;
}

/* SUBHEAD */

.subhead {
  margin: 0;

  font-weight: 400;
  font-size: clamp(23px, 2.2vw, 28px);   /* ×1.3 */
  line-height: 1.55;

  max-width: 100%;
}

/* CONTACT */

.contact {
  margin-top: 14vh;             /* בין שליש אמצעי לתחתון */

  font-size: clamp(21px, 2vw, 26px);     /* בין headline ל-subhead */
  font-weight: 400;
}

.contact a {
  color: #1DDBC4;
  text-decoration: none;
}

/* MOBILE */

@media (max-width: 768px) {
  body {
    background: url("assets/bg-mobile.jpg") no-repeat center center;
    background-size: cover;
  }

  .hero {
    margin-left: 0;
    max-width: none;

    padding-top: 14vh;
    padding-left: 24px;
    padding-right: 24px;

    text-align: left;
  }

  .logo {
    height: 34px;
    margin-bottom: 5vh;
  }

  .headline {
    font-size: 34px;
  }

  .subhead {
    font-size: 18px;
  }

  .contact {
    font-size: 18px;
    margin-top: 10vh;
  }
}
