@font-face {
  font-family: 'Enter Sansman';
  src: url('fonts/entsans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Prevent width+padding from overflowing on mobile */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

/* Hide any horizontal overflow gutters */
html, body { overflow-x: hidden; }

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  position: relative;
  background-color: #010000;
  background-image: url('images/conroy_background_mobile.png');
  background-size: cover;
  /* Mobile crop: adjust first value (X) to shift subject.
     50% = centered, 60% = shift frame to the right (show more left side of image) */
  background-position: 60% center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Overlay (restored) — safe inset avoids 100vw scrollbar math */
body::before {
  content: "";
  position: fixed;
  inset: 0; /* replaces top/left/width/height */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));

  z-index: 0;
  pointer-events: none;
}

.logo {
  display: block;
  width: 65vw;
  height: auto;
  margin: 3rem auto 100px;
}

.content {
  flex: 1;
  position: relative;
  z-index: 2; /* above overlay */
}

.coming-soon {
  font-family: 'Enter Sansman', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  letter-spacing: 0.065em;
  z-index: 99;
}

.signup-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.15rem;
  color: #ffffff;
  text-align: center;
  margin-top: 1.25rem;
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  margin-top: 2rem;
  z-index: 999;
  margin-bottom: 2.5rem;
}

.email-form input[type="email"] {
  width: 100%;
  max-width: 320px;
  background-color: rgba(127, 127, 127, 0.592);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  border-bottom: 2px solid #AEB0B2;
  border-radius: 6px 6px 0 0;
  color: #E6E7E9;
  outline: none;
  margin-bottom: 1rem;
}

input::placeholder {
  color: #d3d3d3; /* Change this to whatever color you want */
  opacity: 1;  /* Ensures the color shows at full strength in some browsers */
}


.email-form input[type="email"],
.email-form button {
  font-size: 1.25rem;
  padding: 1rem;
}

.email-form button {
  width: 100%;
  max-width: 320px;
  background-color: rgba(127, 127, 127, 0.592);
  border: 1px solid #AEB0B2;
  color: #E6E7E9;
  padding: 1rem;
  font-size: 1.125rem;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.email-form button:hover {
  background-color: rgba(230, 231, 233, 0.5);
  border-color: #E6E7E9;
}

.signup-text {
  margin-bottom: 5rem;
}
.signup-text a {
  color: inherit;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}


@media (min-width: 640px) {
  .coming-soon {
    font-size: 3rem;
  }

  .logo {
    width: 40vw;
  }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  body {
    background-image: url('images/conroy_background_1.png');
    background-position: center center; /* desktop typically centered */
  }

  .logo {
    width: 30vw;
    margin: 4rem auto 3rem;
  }

  .coming-soon {
    font-size: 2.25rem;
  }
}

/* Hide when JS sets the hidden attribute */
[hidden] { display: none !important; }

/* Message block: neutral styling */
.message {
  text-align: center;
  margin-top: 1rem;
}

/* We still toggle these classes in JS, but they don't change appearance */
.message--success {}
.message--error {}


/* Footer Styles */
.sd-standard-footer {
  display: block;
  width: 100%;
  border-top: 2px solid #333333;
  background-color: #000000;
  position: relative;
  z-index: 1;
}

.sd-standard-footer .sd-container {
  width: 100%;
  height: auto;
  max-width: 1440px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

@media (max-width: 768px) {
  .sd-standard-footer .sd-container {
    flex-direction: column;
    padding: 20px 20px;
  }
}

.sd-standard-footer .sd-container a {
  cursor: pointer;
  opacity: 1;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.sd-standard-footer .sd-container a:hover {
  opacity: 1;
}

.sd-standard-footer .sd-container .sd-copy-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .sd-standard-footer .sd-container .sd-copy-row {
    margin-bottom: 10px;
    justify-content: center;
  }
}

.sd-standard-footer .sd-container .sd-copy-row a {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0 15px;
}

.sd-standard-footer .sd-container .sd-copy-row a:first-child {
  margin: 0;
}

@media (max-width: 768px) {
  .sd-standard-footer .sd-container .sd-copy-row a {
    margin: 0 0 10px 15px;
  }
  .sd-standard-footer .sd-container .sd-copy-row a:first-child {
    margin: 0 0 10px 0;
  }
}

@media (max-width: 350px) {
  .sd-standard-footer .sd-container .sd-copy-row a {
    width: 100%;
    text-align: center;
    margin: 0 0 10px 0;
  }
}

.sd-standard-footer .sd-container .built-by-sd-logo {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: right;
  flex-direction: row;
  margin: 0;
}

@media (max-width: 768px) {
  .sd-standard-footer .sd-container .built-by-sd-logo {
    justify-content: center;
  }
}

.sd-standard-footer .sd-container .built-by-sd-logo a {
  text-transform: uppercase;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 0;
  display: flex;
  align-items: flex-end;
}

.sd-standard-footer .sd-container .built-by-sd-logo a span {
  color: #ffffff;
  font-family: 'forza-b-i', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3;
  letter-spacing: normal;
  margin-left: 5px;
  transition: all 0.2s ease-in-out;
  display: none;
}

.sd-standard-footer .sd-container .sd-logo-light-bg {
  width: 150px;
  height: 17px;
  margin-left: 5px;
  display: none;
  filter: grayscale(1);
  transition: all 0.2s ease-in-out;
}

@media (max-width: 350px) {
  .sd-standard-footer .sd-container .sd-logo-light-bg {
    width: 125px;
  }
}

.sd-standard-footer .sd-container .sd-logo-dark-bg {
  width: 150px;
  height: 17px;
  margin-left: 5px;
  display: block;
  filter: grayscale(1);
  transition: all 0.2s ease-in-out;
}

@media (max-width: 350px) {
  .sd-standard-footer .sd-container .sd-logo-dark-bg {
    width: 125px;
  }
}

.sd-standard-footer .sd-container .built-by-sd-logo a:hover {
  color: #ff8400;
}

.sd-standard-footer .sd-container .built-by-sd-logo a:hover .sd-logo-light-bg,
.sd-standard-footer .sd-container .built-by-sd-logo a:hover .sd-logo-dark-bg {
  filter: none;
}

.sd-standard-footer .sd-container .built-by-sd-logo a:hover .sd-logo-light-bg svg path,
.sd-standard-footer .sd-container .built-by-sd-logo a:hover .sd-logo-dark-bg svg path {
  fill: #ff8400;
}

.sd-standard-footer .sd-container .built-by-sd-logo a:hover span {
  color: #ff8400;
}
