/* Custom overrides for Fortune Future site */

/* Logo: container 150px in navbar */
.navbar-brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

/* Footer logo: larger at 300px */
.footer-logo img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

/* Footer contact: make plain text white (not just links) */
.footer-contact .contact-inner ul li {
  color: #fff;
}

/* Top bar: keep contacts on same line on desktop */
@media (min-width: 992px) {
  .header-area .left ul {
    white-space: nowrap;
  }
  .header-area .left ul li {
    white-space: nowrap;
  }
}

/* Work area (Why Fortune Future) - add opacity overlay like hero section */
.work-area {
  position: relative;
  color: #fff;
}

.work-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #302c51;
  opacity: 0.8;
  z-index: 0;
}

.work-area .work-content,
.work-area .work-img {
  position: relative;
  z-index: 1;
}

.work-area .sub-title,
.work-area h2 {
  color: #fff;
}
