/* RSVP Page Specific Styles */
.rsvp-container {
  padding: 2rem;
  background: #fff;
  border-radius: 0 0 20px 20px;
}

.rsvp-title {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #111;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.couple-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

/* Event Details */
.event-details {
  background: linear-gradient(135deg, #ffe5ec 0%, #f7c6d9 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(220, 120, 170, 0.1);
}

.event-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #111;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.details-grid {
  display: grid;
  gap: 0.8rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.detail-item .icon {
  font-size: 1.2rem;
}

.detail-item .label {
  font-weight: 600;
  color: #4d3c3c;
  min-width: 60px;
}

.detail-item .value {
  font-weight: 700;
  color: #111;
}

/* Form Styles */
.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #4d3c3c;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f7c6d9;
  box-shadow: 0 0 0 3px rgba(247, 198, 217, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  background: #fff;
}

.radio-option:hover {
  border-color: #f7c6d9;
  background: #fff6fa;
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}

.radio-option input[type="radio"]:checked + .radio-custom {
  border-color: #f7c6d9;
  background: #f7c6d9;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.radio-label {
  font-weight: 500;
  color: #4d3c3c;
  font-size: 1rem;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #f7c6d9 0%, #ffe5ec 100%);
  color: #4d3c3c;
  border: none;
  border-radius: 16px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(220, 120, 170, 0.2);
  margin-top: 1rem;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ffe5ec 0%, #f7c6d9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 120, 170, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.2);
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.success-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #155724;
  margin: 0;
}

.success-content p {
  color: #155724;
  font-size: 1rem;
  margin: 0;
}

/* Back Button */
.back-btn {
  display: block;
  background: #6c757d;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1rem;
}

.back-btn:hover {
  background: #5a6268;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 600px) {
  .rsvp-container {
    padding: 1rem;
  }

  .rsvp-title {
    font-size: 2rem;
  }

  .event-details {
    padding: 1rem;
  }

  .event-info h2 {
    font-size: 1.1rem;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }

  .detail-item .label {
    min-width: auto;
  }

  .radio-group {
    gap: 0.5rem;
  }

  .radio-option {
    padding: 0.6rem 0.8rem;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .success-message {
    padding: 1.5rem;
  }

  .success-content h3 {
    font-size: 1.3rem;
  }
}
