
:root { --brand:#0d6efd; }
* { box-sizing: border-box; }
body { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.card img { object-fit: cover; height: 200px; }
.navbar .btn { white-space: nowrap; }


/* Skyline hero background from logo (buildings only) */
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.9)),
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero .display-5,
.hero .lead {
  text-shadow: 0 2px 4px rgba(0,0,0,0.75);
}

/* Brighter skyline hero background */
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55)),
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero .display-5,
.hero .lead {
  text-shadow: 0 2px 4px rgba(0,0,0,0.55);
}

/* Even lighter skyline hero background, shifted up */
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35)),
  background-size: cover;
  background-position: top center;   /* shift upward */
  color: #fff;
}
.hero .display-5,
.hero .lead {
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}

/* Slightly darker skyline hero background, still lifted up */
.hero {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45)),
    url('/assets/hero-skyline.jpg');
  background-size: cover;
  background-position: top center;
  color: #fff;
}
.hero .display-5,
.hero .lead {
  text-shadow: 0 1px 3px rgba(0,0,0,0.55);
}
