body {
  background: url('../img/leopard-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: "Poppins", sans-serif;
  color: #222;
  margin: 0;
  padding: 0;
}

.header, .main-content, .footer {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.header h1 {
  color: #222;
  text-align: center;
  margin: 0;
}

.tagline {
  text-align: center;
  color: #444;
  font-style: italic;
}

.slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

.footer {
  text-align: center;
  font-size: 0.9em;
}
