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

/* BODY */
body {
  height: 100vh;
  background-image: url("bg.jpeg");
  background-size: cover;
  background-position: center;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
}

/* OVERLAY */
.overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 20px 60px;
}

/* BRAND BLOCK (TOP SECTION) */
.brand-block {
  text-align: center;
}

/* LOGO */
.logo {
  font-family: 'Noto Serif Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  line-height: 0.95;
}

/* TAGLINE */
.tagline {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* FORM (BOTTOM SECTION) */
.notify-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* INPUT */
.notify-form input[type="email"] {
  padding: 14px 18px;
  width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  outline: none;
  border-radius: 60px;
}

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

/* BUTTON */
.notify-form button {
  padding: 14px 22px;
  border: none;
  background-color: #ffffff;
  color: #000000;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 60px;
}

.notify-form button:hover {
  opacity: 0.85;
}

/* HIDDEN NETLIFY FIELD */
.hidden {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    font-size: 3rem;
  }

  .notify-form {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .notify-form input,
  .notify-form button {
    width: 100%;
    max-width: 320px;
  }
}
