/* Banner.css */
/* Banner area with background image and overlay text */

.banner {
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/1/16/Christmas_banner_2020.jpg');
  background-size: cover;
  background-position: center;
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
}

.banner-text {
  position: relative;
  z-index: 1;
}

.banner-text h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.banner-text p {
  font-size: 1.2em;
}
