/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Background */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('assets/images/background.png') center/cover no-repeat;
  filter: blur(4px) brightness(0.6);
  z-index: -1;
}

/* Header images */
.site-header {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header-text { max-width: 300px; }

/* Signup Section */
.signup-section {
  margin: 200px auto 40px;
  width: 90%;
  max-width: 500px;
  text-align: center;
}

/* Mailchimp Heading */
.mc-heading {
  color: black;
  text-shadow: 
    0 0 2px white,
    0 0 4px white;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

/* Mailchimp inputs */
#mc_embed_signup input[type="email"], 
#mc_embed_signup input[type="text"] {
  width: 100%;
  max-width: 300px;
  padding: 14px;
  margin: 0 auto 12px;
  display: block;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

/* Submit btn */
#mc-embedded-subscribe {
  background-color: #e50914 !important;
  color: white !important;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#mc-embedded-subscribe:hover {
  background-color: #b0070a !important;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .header-text { max-width: 200px; }

  .signup-section {
    margin-top: 140px;
    margin-bottom: 180px;
  }

  #mc_embed_signup input[type="email"],
  #mc_embed_signup input[type="text"] {
    max-width: 250px;
    font-size: 14px;
    padding: 10px;
  }

  #mc-embedded-subscribe {
    font-size: 14px;
    padding: 10px 16px;
    margin-bottom: 20px;
  }
}

/* Portrait mode hotfix */
@media screen and (max-width: 600px) and (orientation: portrait) {
  .signup-section {
    margin-bottom: 260px;
  }

  #mc-embedded-subscribe {
    margin-bottom: 40px;
  }
}











