#happy {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  background-color: black; /* fallback */
}

.happy-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.happy-slideshow.next {
  z-index: 2; /* ensure the incoming slide is always on top */
  opacity: 0; /* start hidden */
}

.happy-overlay {
  pointer-events: none;
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.happy-overlay h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 10px; /* gives a subtle premium spacing */
  margin-bottom: 0.5rem;
}

.happy-overlay h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 10px; /* gives a subtle premium spacing */
  margin-bottom: 0.5rem;
}

.happy-overlay p {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  opacity: 0.85;
  line-height: 1.4; /* keeps it readable */
  font-style: italic; /* subtle quote effect */
}
