body {
  background-color: #fce4ec;
  font-family: "Comic Sans MS", cursive, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  color: #a46a7e;
}

header {
  background-color: #f8d7da;
  padding: 1rem;
  border-bottom: 3px solid #f6c1c9;
}

h1 {
  margin: 0;
  color: #b76e79;
  font-size: 1.8rem;
}

#addBtn {
  background: linear-gradient(45deg, #f9c5d1, #f6d1b3);
  border: none;
  border-radius: 14px;
  padding: 10px 22px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#addBtn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #f7b7c2, #f0cfa1);
}

#gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 25px;
}

/* Picture container */
.pic {
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  background-color: #fffafc;
  transition: transform 0.3s;
}

.pic:hover {
  transform: scale(1.05);
}

.pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover controls */
.pic .actions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 192, 203, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pic:hover .actions {
  opacity: 1;
}

.actions button {
  background: #fff;
  border: 2px solid #f6b8c0;
  color: #b76e79;
  border-radius: 10px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.actions button:hover {
  background: #f7d8dc;
  color: #8f4e5b;
}

/* Shapes */
.circle {
  border-radius: 50%;
}

.roundedsquare {
  border-radius: 25px;
}

.roundedrectangle {
  border-radius: 35px;
  aspect-ratio: 4 / 3;
}

/* ✅ Bigger heart (fills area like star) */
.heart {
  clip-path: path("M50 15C35 0 10 0 0 25C-10 50 25 85 50 100C75 85 110 50 100 25C90 0 65 0 50 15Z");
}

/* Rounder, puffier heart */
.rounder {
  clip-path: path("M50 10C32 -5 5 -5 -10 25C-25 55 20 95 50 110C80 95 125 55 110 25C95 -5 68 -5 50 10Z");
}

.star {
  clip-path: polygon(
    50% 0%, 63% 35%, 98% 35%, 
    70% 57%, 79% 91%, 50% 70%, 
    21% 91%, 30% 57%, 2% 35%, 37% 35%
  );
}
