	body {
  background: url('images/background1.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Quintessential', cursive;
  font-size: 18px;
  line-height: 1.6;
  color: #2c2c2c;
  padding: 40px;
  max-width: 700px;
  margin: auto;
}

/* RSVP Box */
.rsvp-box {
  border: 2px solid #d8c6e0;
  background-color: #f9f6fc;
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 0 12px rgba(201, 163, 227, 0.4);
  text-align: center;
}

.rsvp-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1em;
  color: #4b1c6b;
  text-align: left;
}

.rsvp-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Quintessential', cursive;
}

.accept-button,
.decline-button {
  font-family: 'Quintessential', cursive;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  margin: 10px;
  transition: background-color 0.3s ease;
}

.accept-button {
  background-color: #6a2c91;
  color: white;
  border: none;
  box-shadow: 0 0 8px #b88edc;
}

.accept-button:hover {
  background-color: #4b1c6b;
}

.decline-button {
  background-color: #eaeaea;
  color: #4b1c6b;
  border: 1px solid #999;
}

.decline-button:hover {
  background-color: #d6d6d6;
}

.invitation-link {
  margin-top: 30px;
}

.invitation-link a {
  color: #6a2c91;
  text-decoration: none;
  font-size: 1.1em;
  border-bottom: 1px dotted #b88edc;
  transition: color 0.3s ease;
}

.invitation-link a:hover {
  color: #4b1c6b;

}
.butterfly-float {
  width: 60px;
  height: auto;
  position: absolute;
  top: 20%;
  right: 5%;
  animation: floatButterfly 14s ease-in-out infinite;
  z-index: 10;
  opacity: 0.8;
}
@keyframes floatButterfly {
  0%   { left: 10%; top: 150px; transform: rotate(0deg); }
  20%  { left: 20%; top: 130px; transform: rotate(10deg); }
  40%  { left: 40%; top: 160px; transform: rotate(-5deg); }
  60%  { left: 60%; top: 140px; transform: rotate(8deg); }
  80%  { left: 80%; top: 170px; transform: rotate(-10deg); }
  100% { left: 100%; top: 150px; transform: rotate(0deg); }
}

.message-box {
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid #c9a3e3;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 12px rgba(201, 163, 227, 0.5);
  text-align: center;
}

.elegant-heading {
  font-size: 1.8em;
  color: #4b1c6b;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8), 0 0 8px #c084fc;
  margin-bottom: 20px;
}

.elegant-text {
  font-size: 1.2em;
  line-height: 1.6;
  color: #2f1b3f;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.6);
}

.message-box {
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid #c9a3e3;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 12px rgba(201, 163, 227, 0.5);
  text-align: center;
}

.invitation-text p {
  margin: 8px 0;
}

.quintessential {
  font-family: 'Quintessential', cursive;
  font-size: 1em; /* Previously 1.2em */
  color: #6a2c91;
}

.engagement {
  font-family: 'Engagement', cursive;
  font-size: 2.9em;
  color: #6a2c91; /* Authored purple */
  font-weight: normal;
  margin: 16px 0;
  text-shadow:
    1px 1px 6px rgba(255, 255, 255, 0.9),
    0 0 10px #ffd700, /* Gold glow */
    0 0 14px #ffecb3; /* Soft yellow highlight */
}

.spacer {
  margin: 0 5px;
  color: #999;
}

.navigation-links {
  text-align: center;
  margin-top: 30px;
}

.nav-button {
  font-family: 'Quintessential', cursive;
  font-size: 1.1em;
  background-color: #f9f6fc;
  color: #6a2c91;
  border: 2px solid #d8c6e0;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  box-shadow: 0 0 8px rgba(201, 163, 227, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button:hover {
  background-color: #eae3f0;
  color: #4b1c6b;
}
.angel-icon {
  width: 80px;
  height: auto;
  position: absolute;
  top: 10%;
  center: 5%;
  z-index: 5;
  filter: drop-shadow(0 0 12px #c084fc) brightness(1.2);
  transition: filter 0.3s ease;
}

/* Optional: subtle animation */
@keyframes angelGlow {
 0% { filter: drop-shadow(0 0 8px #d8bfff); }
  50% { filter: drop-shadow(0 0 16px #e6ccff); }
  100% { filter: drop-shadow(0 0 8px #d8bfff); }
}

.button-wrap {
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid #c9a3e3;
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 0 12px rgba(201, 163, 227, 0.4);
}

.nav-button {
  font-family: 'Quintessential', cursive;
  font-size: 1.1em;
  background-color: #f9f6fc;
  color: #6a2c91;
  border: 2px solid #d8c6e0;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 8px rgba(201, 163, 227, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button:hover {
  background-color: #eae3f0;
  color: #4b1c6b;
}

.button-wrap {
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid #c9a3e3;
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 0 12px rgba(201, 163, 227, 0.4);
}

.nav-button {
  font-family: 'Quintessential', cursive;
  font-size: 1.1em;
  background-color: #f9f6fc;
  color: #6a2c91;
  border: 2px solid #d8c6e0;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 8px rgba(201, 163, 227, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button:hover {
  background-color: #eae3f0;
  color: #4b1c6b;
}

