body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: linear-gradient(to right, #ffe4f2, #e6d0ff);
  color: #333;
  overflow-x: hidden;
}

header.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffb6c1, #dda0dd);
  color: white;
  animation: fadeIn 2s ease-in;
}

h1.title {
  font-size: 3rem;
  animation: bounce 2s infinite alternate;
}

.subtitle {
  font-size: 1.5rem;
  margin-top: 10px;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.about img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.about img:hover {
  transform: scale(1.1) rotate(-3deg);
}

.gallery .products {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

footer {
  background: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s;
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: zoomIn 0.5s ease;
}

.modal-content img {
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes bounce {
  from { transform: translateY(0px); }
  to { transform: translateY(-15px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
