/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom right, #f7ecec, #f0e4e4);
  color: #333;
  min-height: 100vh;

}
.card-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 20px);
}

/* Confetti Animation */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 182, 193, 0.8);
  opacity: 0.8;
  border-radius: 50%;
  animation: fall 5s linear infinite;
}

/* Create multiple confetti elements */
@keyframes fall {
  0% { transform: translateY(-100vh) rotate(0); opacity: 1; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

.confetti:nth-child(1) { left: 10%; animation-duration: 3s; background-color: #f28e8e; }
.confetti:nth-child(2) { left: 20%; animation-duration: 4s; background-color: #f9c3c3; }
.confetti:nth-child(3) { left: 30%; animation-duration: 5s; background-color: #ffc1cc; }
.confetti:nth-child(4) { left: 40%; animation-duration: 3.5s; background-color: #ffb3ba; }
.confetti:nth-child(5) { left: 50%; animation-duration: 4.5s; background-color: #ffa8a8; }
.confetti:nth-child(6) { left: 60%; animation-duration: 5.2s; background-color: #f9a8b3; }
.confetti:nth-child(7) { left: 70%; animation-duration: 4.8s; background-color: #ffd1dc; }
.confetti:nth-child(8) { left: 80%; animation-duration: 5.4s; background-color: #ffe4e1; }
.confetti:nth-child(9) { left: 90%; animation-duration: 3.2s; background-color: #ffccd5; }

/* Card Container */
.card {
  max-width: 520px;
  width: 100%;
  padding: 25px;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-align: center;
  border-top: 6px solid #8e7d6b;
  border-bottom: 6px solid #8e7d6b;
  position: relative;
  z-index: 1;
}

/* Header Icon */
.card img.icon {
  width: 60px;
  margin: 20px 0;
}

/* Text Styles */
.card h1 {
  font-size: 1.8em;
  color: #8e7d6b;
  font-weight: 700;
  margin: 15px 0;
}
.card p {
  margin: 10px 0;
  color: #666;
  font-size: 1em;
}
.card h2 {
  font-size: 1.6em;
  color: #4f4f4f;
  margin: 20px 0;
}

/* Date and Time */
.card .date-time {
  font-weight: 500;
  color: #8e7d6b;
  margin: 12px 0;
  font-size: 1.2em;
}

/* Google Maps Embed */
.map-embed {
  margin: 25px 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

/* Venue Link */
.venue-link {
  color: #8e7d6b;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed #8e7d6b;
  margin-top: 15px;
  display: inline-block;
}
.venue-link:hover {
  color: #4f4f4f;
}

/* Footer */
.footer {
  font-size: 0.8em;
  color: #333;
  margin-top: 30px;
}
.footer a {
  color: #42969C;
  text-decoration: none;
  font-weight: 600;
}
.footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .card h1 { font-size: 1.6em; }
  .card h2 { font-size: 1.4em; }
  .card .date-time { font-size: 1.1em; }
  .map-embed iframe { height: 250px; }
}