/* Hero banner on Home page */
.hero {
  position: relative;
  background: url('../images/hero.jpg') center/cover no-repeat;
  padding: 1px 20px;
  height: 520px;
  border-radius: 8px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.3),
    rgba(0,0,0,0)
  );
}

.hero-text {
  position: relative;
  max-width: 500px;
  text-align: left;

  margin-left: 150px;   /* pushes text toward center */
  margin-top: 370px;    /* lowers text */
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 20px;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #eee;
  margin: 0;
  padding: 0;
  text-align: center;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}
h1 {
  font-size: 48px;
  margin-bottom: 10px;
}
h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.nav {
  margin-bottom: 40px;
}
.nav a {
  color: #ccc;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}
.nav a:hover {
  color: #fff;
}
.box {
  background: #1d1d1d;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}
img, video {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}