body { font-family: 'Segoe UI', sans-serif; }
header { background: url('/static/img/header-bg.jpg') center/cover no-repeat; color: white; }
header .lead { opacity: 0.8; }
/* Header adjustments */
#hero {
  position: relative;
  min-height: 75vh;               /* make it taller */
  background: url('{{ url_for("static", filename="img/background.png") }}') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* lighter overlay */
  z-index: 0;                     /* behind the content */
}
#hero .content {
  position: relative;
  z-index: 1;                     /* above the overlay */
  color: #fff;                    /* ensure white text */
  text-shadow: 0 2px 8px rgba(0,0,0,0.8); /* stronger shadow */
}
#hero .content h1,
#hero .content p {
  color: #fff;                    /* double-enforce bright text */
}
