/* ---------------------------- */
/*         BACKGROUND           */
/* ---------------------------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff7f9;
  overflow-x: hidden;
}

/* Balloons Canvas */
#sparkles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Heading */
.heading {
  text-align: center;
  font-size: 48px;
  color: #d6336c;
  margin-top: 30px;
  font-weight: 700;
  font-family: 'Great Vibes', cursive;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Main Container (Column Always) */
.content-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Invitation Card */
.invitation-card {
  width: 100%;
  max-width: 600px;
}
.invitation-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  object-fit: contain;
}

/* Video Section */
.video-section video {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  object-fit: contain;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  font-size: 22px;
  color: #d6336c;
  font-family: 'Great Vibes', cursive;
  font-weight: 700;
}

/* ---------------------------- */
/*        RESPONSIVE CSS        */
/* ---------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .heading {
    font-size: 42px;
  }
  .video-section video {
    max-width: 350px;
  }
}

/* Large Mobile / Mid Tablet */
@media (max-width: 768px) {
  .heading {
    font-size: 36px;
  }
  .video-section video {
    max-width: 300px;
  }
  footer {
    font-size: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .heading {
    font-size: 30px;
  }
  .video-section video {
    max-width: 260px;
  }
  footer {
    font-size: 16px;
  }
}
