@font-face {
  font-family: 'Stolzl-Thin';
  src: url('/fonts/Stolzl-Thin.woff2') format('woff2'), url('/fonts/Stolzl-Thin.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
body,
html {
  height: 100%;
  margin: 0;
  font-family: Stolzl-Thin, sans-serif;
  /* Default font for the page */
}
.splash-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #fff;
  /* White background */
}
.logo-img {
  max-width: 500px;
  /* Logo size */
  margin-bottom: 20px;
  /* Space between logo and text */
}
.splash-text {
  font-family: 'Stolzl-Thin', sans-serif;
  /* Apply Stolzl Thin font */
  font-weight: 150;
  /* Thin version of Stolzl */
  font-size: 36px;
  color: #053357;
  text-align: center;
  margin-bottom: 30px;
  /* Space between text and buttons */
}
.button-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  /* Set the width of the container */
}
.btn {
  display: inline-block;
  font-size: 24px;
  /* Font size */
  font-weight: bold;
  text-align: center;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  height: 400px;
  /* Set the height to a fixed value */
  width: 400px;
  /* Set the width to the same value as height to make it square */
  margin: 0 1%;
  /* Add margin to create a gap between buttons */
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-tenant {
  background-color: #053357;
}
.btn-tenant:hover {
  background-color: #00C7ED;
}
.btn-realtor {
  background-color: #053357;
}
.btn-realtor:hover {
  background-color: #00C7ED;
}
.letterbox-button {
  display: block;
  height: 90px;
  border-radius: 12px;
  padding: 0 1rem;
  transition: background-color 0.2s ease-in-out;
}
.letterbox-button:hover {
  opacity: 0.95;
  text-decoration: none;
}
.icon-bg {
  background: #fff;
  border: 2px solid #e1e5eb;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Optional: Add shadow for more pop */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.swytcheroo-btn {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 1.1rem 1.5rem;
  min-width: 170px;
  min-height: 54px;
  transition: box-shadow 0.2s, transform 0.1s, filter 0.2s;
  filter: brightness(1);
  cursor: pointer;
}
.swytcheroo-btn:active {
  filter: brightness(0.96);
}
.btn-blue {
  background: linear-gradient(90deg, #053357 75%, #235c94 100%);
}
.btn-yellow {
  background: linear-gradient(90deg, #FCA300 75%, #ffd166 100%);
  color: #253040;
}
.btn-cyan {
  background: linear-gradient(90deg, #00C7ED 75%, #27e3fc 100%);
}
.swytcheroo-btn:hover,
.swytcheroo-btn:focus {
  box-shadow: 0 12px 32px rgba(0, 199, 237, 0.13), 0 1.5px 8px rgba(0, 199, 237, 0.11);
  transform: scale(1.07) translateY(-3px);
  transition: box-shadow 0.18s, transform 0.18s;
  filter: brightness(1.08);
  outline: none;
}
.btn-yellow:hover,
.btn-yellow:focus {
  color: #053357;
}
.hover-up:hover,
.hover-up:focus {
  box-shadow: 0 12px 32px rgba(0, 199, 237, 0.11);
  transform: translateY(-4px) scale(1.03);
  transition: all 0.18s;
}
.moving-banner-container {
  background: #e7f2ff;
  border-radius: 8px;
  overflow: hidden;
  /* This is important! */
  margin-top: 2rem;
  padding-left: 0;
  padding-right: 0;
}
.moving-banner-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.moving-banner-text {
  color: #053357;
  white-space: nowrap;
  display: inline-block;
  animation: scroll-left 22s linear infinite;
  padding-left: 100%;
  /* Ensures text fully enters before leaving */
  box-sizing: content-box;
}
.state-service-card {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: #000;
}
.state-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.state-service-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 1rem;
}
.state-service-card-title {
  font-size: 1.2rem;
  font-weight: 600;
}
@media (max-width: 420px) {
  .state-service-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .state-service-card img {
    width: 48px;
    height: 48px;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.modal-body {
  font-weight: 700 !important;
}
.modal-title {
  font-weight: 700 !important;
}
.animated-bg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #e7f2ff 0%, #fff 100%);
  animation: bg-move 14s ease-in-out infinite alternate;
}
@keyframes bg-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/* Mobile-first adjustments */
.accordion-button {
  font-size: 1rem;
  padding: 1rem;
  background-color: #f8f9fa;
  /* light grey for contrast */
}
.accordion-button:not(.collapsed) {
  background-color: #e9ecef;
  /* slightly darker when open */
}
.accordion-body {
  font-size: 1.1rem !important;
  line-height: 1.5;
}
/* Stronger look on larger screens */
@media (min-width: 768px) {
  .accordion-button {
    font-size: 1.1rem;
  }
  .accordion-body {
    font-size: 1rem;
  }
}
/* === Full-bleed container that ignores parent .container max-width === */
.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  /* pull to the left edge of the viewport */
  margin-right: -50vw;
  /* pull to the right edge of the viewport */
  width: 100vw;
  /* span the entire viewport */
  padding-left: 0;
  padding-right: 0;
}
/* Media Query for Mobile */
@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
    /* Stack buttons vertically */
    align-items: center;
    /* Center the buttons */
  }
  .btn {
    width: 80%;
    /* Make the buttons take up 80% of the width */
    margin: 10px 0;
    /* Add vertical margin between stacked buttons */
    height: 150px;
    /* Adjust the button height for mobile */
  }
}
/* For Larger Screens (reducing gap between buttons) */
@media (min-width: 769px) {
  .button-container {
    justify-content: center;
    /* Center the buttons */
  }
  .btn {
    margin: 0 5%;
    /* Reduce the gap between buttons */
  }
}
/*# sourceMappingURL=welcome.css.map */