/* juneteenth-festival.css */

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 70vh;
  text-align: center;
  padding-top: 80px;     /* space for the fixed header */
  padding-bottom: 80px;  /* space above the footer */

  background: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url('JFBackground.jpg') no-repeat center center;
  background-size: contain;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  color: #fff;
}
