/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body{
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 120%;
}

h1{
  font-size: 3em;
  line-height: 120%;
}

/* HERO */
.hero {
  width: 100%;
  min-height: 100vh;              /* full screen height */
  background-image: url("images/hero.jpg"); /* change image here */
  background-size: cover;         /* fills screen */
  background-position: center;    /* keeps it centered */
  background-repeat: no-repeat;
  display: flex;                  /* easy centering of content */
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Optional dark overlay for text readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* adjust darkness */
}

/* Content sits above overlay */
.hero .hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding: 24px;
  max-width: 1000px;
}
