/* Reset stylów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff5f5;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.content {
  text-align: center;
  padding: 20px;
  max-width: 600px;
}

h1 {
  font-size: 2.2rem;
  color: #ff6b6b;
  margin-bottom: 15px;
}

.wish {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
}

.photos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.photo {
  width: 100%;
  max-width: 150px;
}

.photo img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 5px;
}

.photo p {
  font-size: 0.9rem;
  color: #333;
}

/* Animacja serduszek */
@keyframes fall {
  0% { transform: translateY(-100px) rotate(0deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.heart {
  position: absolute;
  color: #ff6b6b;
  font-size: 25px;
  opacity: 0;
  animation: fall 5s infinite;
}

/* Styl dla przycisku prezentu */
.gift-button {
  font-size: 1.5rem;
  background-color: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-top: 20px;
}

.gift-button:hover {
  transform: scale(1.05);
}

/* Animacja wiadomości prezentu */
.gift-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 30px;
}

.gift-message {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff6b6b;
  color: white;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, top 1s ease;
}

.gift-message.visible {
  opacity: 1;
  top: -100px;
}
