
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  height: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}
body { overflow-x: hidden; }
.container {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.background-img {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  min-width: 100vw;
  object-fit: cover;
  object-position: bottom center;
  z-index: 1;
  pointer-events: none;
}
.overlay {
  position: relative;
  z-index: 2;
  width: 100vw;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 6vw 2vw 4vw 2vw;
  box-sizing: border-box;
}
.logo {
  width: 38vw;
  max-width: 320px;
  min-width: 180px;
  margin: 7vw auto 5vw auto;
  display: block;
}
.coming-soon-text {
  font-size: 2.1rem;
  color: #ffffff;
  font-family: 'Arial Black', Gadget, sans-serif;
  margin-bottom: 8vw;
  margin-top: 0;
  text-shadow: 0 3px 15px rgba(0,0,0,0.25);
  word-break: break-word;
  line-height: 1.1;
}
.spacer {
  flex: 1 1 auto;
}
.subscribe-box {
  background: #ffffff;
  color: #123A66;
  padding: 5vw 3vw 4vw 3vw;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 250px;
  width: 95vw;
  max-width: 470px;
  margin-bottom: 2vw;
  text-align: left;
}
.subscribe-box h3 {
  margin: 0 0 3vw 0;
  font-size: 1.1rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
}
.subscribe-box form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}
.subscribe-box label {
  font-size: 1rem;
  margin: 2px 0 0 2px;
}
.subscribe-box input[type="email"] {
  padding: 11px 8px;
  border: 2px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
  background: #fff;
  width: 100%;
  margin-bottom: 2px;
  box-sizing: border-box;
}
.subscribe-box button {
  padding: 13px 0;
  background-color: #123A66;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}
/* Top-centered modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  justify-content: center;
  align-items: flex-start;
  background: rgba(0,0,0,0.14);
}
.modal-content {
  background: #bcbcbc;
  color: #222;
  border-radius: 16px;
  margin-top: 34px;
  min-width: 260px;
  max-width: 440px;
  padding: 25px 24px 16px 24px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 3px 20px rgba(0,0,0,0.15);
  position: relative;
}
.close {
  position: absolute;
  top: 10px; right: 16px;
  color: #d2a741;
  font-size: 1.35em;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 600px) {
  .modal-content { min-width: 0; width: 98vw; max-width: 98vw; margin-top: 14px; padding: 17px 3vw 12px 3vw;}
  .coming-soon-text {font-size: 1.23rem; padding: 0 3vw; margin-bottom: 7vw;}
  .logo {width: 41vw; margin-top: 8vw; min-width: 65px; max-width: 110px;}
  .subscribe-box {padding: 6vw 2vw 6vw 2vw; width: 98vw; min-width: 0; max-width: 97vw; position: relative; margin-bottom: 2vw;}
  .spacer {flex: 1 1 auto; min-height: 20vw; max-height: 40vw;}
}
@media (max-width: 360px) {
  .coming-soon-text { font-size: 1.0rem; }
  .subscribe-box h3 { font-size: 1rem; }
}
