/* UrbanTS overrides for the Dev Space / Yeo template
   Keep spectre + yeo.css as-is, and load this last. */
/* --- HERO sizing (desktop + mobile) --- */
.slogan-content h1{
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.05;
  font-size: 44px;              /* was huge */
}

.slogan-content h1 .slogan-bold{
  display: block;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 1100px){
  .slogan-content h1{ font-size: 38px; }
}

/* Mobile */
@media (max-width: 840px){
  .slogan-content h1{ font-size: 30px; }
}
:root{
  --urbants-accent: #0f3d66;
  --urbants-accent-dark: #0b2e4d;
}

/* Brand + buttons */
.navbar .navbar-brand span{
  font-weight: 700;
  letter-spacing: .2px;
}

.btn.btn-primary,
.btn.btn-primary:focus{
  background: var(--urbants-accent);
  border-color: var(--urbants-accent);
}

.btn.btn-primary:hover{
  background: var(--urbants-accent-dark);
  border-color: var(--urbants-accent-dark);
}

/* Make "link buttons" less shouty */
.btn.btn-link{
  opacity: .9;
}
.btn.btn-link:hover{
  opacity: 1;
  text-decoration: none;
}

/* Improve readability */
.slogan-content p{
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52ch;
}

/* Replace “Trusted by” vibe with “Platforms” vibe */
.yeo-client .feature-title{
  letter-spacing: .2px;
}

/* Panels: look a bit more premium */
.panel{
  border-radius: 10px;
}
.panel .panel-title span{
  letter-spacing: .8px;
}

/* Service cards: make them feel clickable */
.yeo-do-content a{
  font-weight: 600;
}

/* Footer links */
.yeo-footer a{
  opacity: .9;
}
.yeo-footer a:hover{
  opacity: 1;
}

/* Mobile menu behaviour */
@media (max-width: 840px){
  .navbar-section.hide-sm{ display: none !important; }

  .urbants-mobile-toggle{ display: inline-flex !important; }

  .urbants-mobile-menu{
    display: none;
    padding: 12px 0;
  }
  .urbants-mobile-menu.is-open{ display: block; }

  .urbants-mobile-menu a{
    display: block;
    padding: 10px 0;
  }
}

/* --- MOBILE NAV: hidden by default on desktop --- */
.urbants-mobile-toggle{ display: none !important; }
.urbants-mobile-menu{ display: none !important; }

/* Only enable on small screens */
@media (max-width: 840px){
  .navbar-section.hide-sm{ display: none !important; }     /* hide desktop nav */
  .urbants-mobile-toggle{ display: inline-flex !important; }
  .urbants-mobile-menu{ display: none !important; padding: 12px 0; }
  .urbants-mobile-menu.is-open{ display: block !important; }

  .urbants-mobile-menu a{
    display:block;
    padding: 10px 0;
  }
}

/* Capabilities strip (replaces the old logo row) */
.urbants-capabilities{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.urbants-capability{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 600;
  letter-spacing: .2px;
}

/* If your strip sits on a light background instead of the gradient, use this */
.yeo-client{
  background: #fff;            /* keep clean */
}
.yeo-client .feature-title{
  color: #111;
}

/* Make the pills dark-on-light when on white */
.yeo-client .urbants-capability{
  border: 1px solid #e6e8ee;
  background: #f6f7f9;
  color: #111;
}