.home-image {
  position: relative;
  width: 100%;
  height: 83vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../pictures/new-pele-mele.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
}

.home-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem 3rem 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  max-width: 800px;
}

.home-content h1 {
  font-size: 2.5rem;
}

.home-content p {
  font-size: 1.2rem;
}

.ribbon {
  width: 250px;
  height: 250px;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
}

.ribbon span {
  position: absolute;
  display: inline-block;
  width: auto;
  min-width: 370px;
  max-width: 450px;
  white-space: nowrap;
  padding: 25px 20px;
  background: linear-gradient(135deg, #198754, #28a745);
  color: #fff;
  font-size: clamp(1rem, 1.1vw, 1.3rem);
  font-weight: bold;
  text-align: center;
  transform: rotate(-45deg);
  top: 45px;
  left: -90px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}


