:root {
  --home-brand-blue: #1469fb;
  --home-hero-text-color: #1e242d;
  --home-sub-text-color: #79808a;
}

/* Homepage background */
.home-page-body {
  background: rgba(192, 227, 255, 0.3);
  backdrop-filter: blur(260px);
  -webkit-backdrop-filter: blur(260px);
  min-height: 100vh;
}

/* Navbar */
.navbar-home {
  padding-top: 30px;
  padding-bottom: 10px;
}

/* Logo */
.navbar-brand-home {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--home-brand-blue);
  margin: 0;
}

/* Nav links */
.nav-link-home {
  font-size: 18px;
  color: #555;
  margin-left: 20px;
  margin-right: 20px;
}

/* Login button */
.login-btn-home {
  background: #f8f9fa;
  border: 1px solid #ced4da;
  color: #555;
  padding: 8px 24px;
  border-radius: 4px;
}

/* Hero Section */
.hero-section-home {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* Hero Heading */
.hero-heading-home {
  font-family: "Roboto Serif", serif;
  font-weight: 500;
  font-size: 52px;
  color: var(--home-hero-text-color);
}

/* Blue text */
.blue-text-home {
  color: #2563eb;
}

/* Sub text */
.hero-subtext-home {
  font-size: 18px;
  color: var(--home-sub-text-color);
  margin-top: 20px;
  margin-bottom: 35px;
  max-width: 500px;
}

/* CTA Button */
.cta-btn-home {
  background: var(--home-brand-blue);
  color: white;
  padding: 12px 40px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

.cta-btn-home:hover {
  background: #0b5ed7;
}

/* Hero Image */
.contracts-stack-img-home {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Responsive */
@media (max-width: 992px) {
  .hero-heading-home {
    font-size: 48px;
  }

  .hero-text-col-home {
    padding-right: 0;
    text-align: center;
  }

  .hero-subtext-home {
    margin-left: auto;
    margin-right: auto;
  }
}