body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  text-align: center;
}

header {
  /* background: #4b0082; */
  color: white;
  padding: 10px 10px 0px;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.logo {
  margin-top: 10px;
  width: 200px;
}

.motto {
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 5px;
  color: #59575f;
  display: none;
}

.swiper {
  width: 100%;
  padding: 50px 0;
}

.swiper-slide {
  width: 90vw;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  padding: 5px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper-slide-active img {
  transform: scale(1.05);
}

.social-links {
  margin: 30px 0 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-links a {
  font-size: 24px;
  color: #4b0082;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #6a0dad;
}

footer {
  background: #eee;
  padding: 15px 10px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.skeleton {
  background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.2s infinite;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.wa-button {
  width: 200px;
}

.image-wrapper img {
  display: none;
  width: 100%;
  height: auto;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


/* Responsive Text */
@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  .motto {
    font-size: 1rem;
  }

  footer {
    font-size: 0.85rem;
  }

  .bottom {
    margin-top: 100px;
  }
}