* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("hero.jpg") center / cover no-repeat;
  position: relative;
}

/* =========================
   DESKTOP LAYOUT
========================= */
.overlay {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  max-width: 420px;
}

h1 {
  font-size: 64px;
  margin: 0 0 20px;
  letter-spacing: 4px;
}

p {
  font-size: 20px;
  line-height: 1.4;
}

.cta {
  display: inline-block;
  margin-top: 30px;
  background: white;
  color: black;
  padding: 16px 36px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

/* Language selector */
.lang {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

/* =========================
   MOBILE — FASHION APP STYLE
========================= */
@media (max-width: 768px) {

  .hero {
    background-position: center center;
  }

  .overlay {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 2%;
    top: auto;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 28px 20px 20px;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.85),
      rgba(0,0,0,0.45),
      rgba(0,0,0,0)
    );
  }

  h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  p {
    font-size: 15px;
  }

  .cta {
    width: 240px;
    max-width: 90%;
    padding: 14px 0;
    margin-top: 16px;
    font-size: 15px;
  }

}
