@font-face {
  font-family: 'Neue Haas Display';
  src: url('../fonts/NeueHaasDisplayLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('../fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('../fonts/NeueHaasDisplayMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('../fonts/NeueHaasDisplayBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --heading-font: 'Neue Haas Display', 'Helvetica Neue', Arial, sans-serif;
  --body-font: 'Neue Haas Display', 'Helvetica Neue', Arial, sans-serif;
  --text-color: #ffffff;
  --overlay-dark: rgba(0, 0, 0, 0.48);
  --panel-bg: rgba(0, 0, 0, 0.18);
  --border: rgba(255, 255, 255, 0.22);
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: #111;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url('../assets/background.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.56)),
    var(--overlay-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  padding: 0 10px;
}

.logo {
  display: block;
  width: min(520px, 86vw);
  height: auto;
  margin: 0 auto 5px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.3rem, 6vw, 2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.5em;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 34px;
  font-family: var(--body-font);
  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  opacity: 0.96;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.notify-form {
  width: min(100%, 560px);
  margin: 40px auto;
  padding: 20px;
  background: var(--panel-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.notify-label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}

.notify-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.notify-input {
  flex: 1;
  min-width: 0;
  min-height: 40px;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
  font-size: 0.98rem;
}

.notify-input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.notify-button {
  height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.notify-button:hover {
  background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 768px) {
  .hero {
    padding: 28px 18px;
    background-position: 56% center;
  }

  .logo {
    width: min(340px, 88vw);
    margin-bottom: 28px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
    margin-bottom: 12px;
  }

  .hero-subtitle {
    max-width: 340px;
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .notify-form {
    padding: 16px;
  }

  .notify-label {
    font-size: 0.78rem;
    margin-bottom: 12px;
  }

  .notify-row {
    flex-direction: column;
    gap: 10px;
  }

  .notify-input,
  .notify-button {
    width: 100%;
    height: 50px;
  }
}


/* Mobile form refinements */
@media (max-width: 768px) {
  .notify-form {
    width: min(100%, 420px);
    padding: 18px 16px;
    margin: 0 auto;
  }

  .notify-row {
    width: 100%;
  }

  .notify-input {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
  }

  .notify-button {
    display: block;
    width: 100%;
    font-size: 0.88rem;
    padding: 0 18px;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
  }

  .notify-input::placeholder {
    font-size: 16px;
    opacity: 0.9;
  }
}

.site-footer {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--body-font);
  font-size: 0.72rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  opacity: 0.82;
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 18px;
    font-size: 0.62rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    width: min(100%, 370px);
    padding: 0 6px;
  }

  .notify-form {
    width: 100%;
    padding: 16px;
  }

  .notify-label {
    letter-spacing: 0.12em;
    line-height: 1.4;
  }

  .notify-input,
  .notify-button {
    height: 48px;
  }
}
