
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: white;
  color: black;
}

.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
}

.site-header:not(.transparent-header) {
  position: sticky;
  top: 0;
  background: black;
  color: black;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.logo {
  height: 40px;
}
.menu-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.menu-desktop a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.menu-desktop a:hover {
  color: orange;
}
.menu-mobile-icon {
  font-size: 2rem;
  color: black;
  display: none;
  cursor: pointer;
}
.menu-mobile {
  display: none;
  background: white;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
}
.menu-mobile ul {
  list-style: none;
  padding: 1rem;
  margin: 0;
}
.menu-mobile a {
  display: block;
  padding: 0.8rem;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #ccc;
}
.menu-mobile a:hover {
  background: rgba(255, 165, 0, 0.3);
}
@media (max-width: 768px) {
  .menu-desktop { display: none; }
  .menu-mobile-icon { display: block; }
}

/* Slideshow */
.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
}
.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(255, 165, 0, 0.5);
  color: white;
  padding: 1rem;
  max-width: 400px;
  font-size: 1.1rem;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .caption {
    font-size: 0.9rem;
    padding: 0.8rem;
    max-width: 90%;
  }
}

/* WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.whatsapp-button img {
  width: 30px;
  height: 30px;
}

.seo-hidden { position: absolute; left: -9999px; top: -9999px; visibility: hidden; }
