/* ================================================================
   Gatsby Realty Group – Certified Launch v12.1A
   Coming Soon Page & Footer Styling – Final Revision
   Cambridge, MA – November 2025
   ================================================================ */

/* ------------------------------
   Global Typography & Layout
   ------------------------------ */

body {
  background-color: #f8f3ea;
  font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
  color: #2b2b2b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #0b3a36;
  margin-bottom: 0.5em;
}

.text-gold {
  color: #b4975a;
}

.btn-gold,
.btn {
  background-color: #b4975a;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.btn-gold:hover,
.btn:hover {
  background-color: #967f47;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* ------------------------------
   Coming Soon Section
   ------------------------------ */

.coming-soon {
  padding: 120px 0 100px;
  text-align: center;
}

.coming-soon img {
  max-width: 90px;
  height: auto;
}

.coming-soon h1 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #0b3a36;
}

.coming-soon h2 {
  font-size: 1.25rem;
  color: #2b2b2b;
}

.coming-soon p {
  color: #b4975a;
  font-style: italic;
  margin-bottom: 30px;
}

.notify-form input[type="email"] {
  width: 100%;
  border: 1px solid #0b3a36;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}

.notify-form input[type="email"]:focus {
  border-color: #b4975a;
  box-shadow: 0 0 0 3px rgba(180, 151, 90, 0.2);
}

/* ------------------------------
   Footer
   ------------------------------ */

.site-footer {
  background-color: #0b3a36;
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 400;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-left {
  flex: 1;
  text-align: left;
  color: #ffffff;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.footer-right {
  flex: 1;
  text-align: right;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-right img {
  height: 18px;
  width: auto;
  vertical-align: middle;
  opacity: 0.9;
  transition: opacity 0.25s ease;
}

.footer-right img:hover {
  opacity: 1;
}

.footer-right span {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ------------------------------
   Responsive Adjustments
   ------------------------------ */

@media (max-width: 768px) {
  .coming-soon {
    padding: 80px 20px;
  }

  .coming-soon h1 {
    font-size: 1.6rem;
  }

  .coming-soon h2 {
    font-size: 1.1rem;
  }

  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: 100%;
    text-align: center;
    margin: 5px 0;
    justify-content: center;
  }

  .footer-right img {
    height: 20px;
  }
}

/* ------------------------------
   Visual Cleanup Overrides
   ------------------------------ */

/* Remove rogue Equal Housing images under Notify section */
.coming-soon img[alt*="Equal Housing"],
.coming-soon img[src*="equal-housing"],
.coming-soon .equal-housing,
section.coming-soon img:last-child {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Prevent any injected pseudo-elements */
.site-footer::after,
.coming-soon::after {
  content: none !important;
  display: none !important;
}