/* styles.css */

/* Reset */
header {
  background-color: #c81e78;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 2rem;
  font-weight: bold;
}

main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}
h1, h2 {
  color: #c81e78;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}
p, ul {
  margin: 0 0 1rem 0;
}
ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
ul li {
  margin-bottom: 0.5rem;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery img {
  width: 200px;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(200, 30, 120, 0.3);
  animation: pulse 3s infinite ease-in-out;
  will-change: transform, box-shadow;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(200, 30, 120, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 6px rgba(200, 30, 120, 0.5), 0 0 14px rgba(200, 30, 120, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(200, 30, 120, 0.9), 0 0 30px rgba(200, 30, 120, 0.6);
    transform: scale(1.03);
  }
  
 }


footer {
  background-color: #c81e78;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 600px) {
  .gallery img {
    width: 100%;
    height: auto;
  }
}
