/* Donate Section Styles */
.donate-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.donate-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  border: 2px solid #c89d9c;
  background-color: white;
  color: #202a41;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.donate-button:hover {
  background-color: #c89d9c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.donate-button i {
  margin-right: 10px;
  font-size: 18px;
}

.groom-button {
  border-color: #7a9cc6;
}

.groom-button:hover {
  background-color: #7a9cc6;
}

.bride-button {
  border-color: #c89d9c;
}

.bride-button:hover {
  background-color: #c89d9c;
}

/* Modal Styles */
.donate-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
}

.donate-modal-content {
  background-color: #fefefe;
  margin: 80px auto;
  border-radius: 15px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.donate-close {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #c89d9c;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.donate-close:hover {
  color: #333;
  transform: scale(1.1);
}

.donate-modal-body {
  padding: 20px;
}

.donate-card {
  text-align: center;
  padding: 15px;
}

.donate-card h3 {
  color: #202a41;
  margin-bottom: 20px;
  font-size: 20px;
  font-family: inherit;
  font-weight: 600;
}

.qr-code-container {
  margin: 20px auto;
  max-width: 200px;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.qr-code-image {
  width: 100%;
  height: auto;
}

.bank-info {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.bank-info p {
  margin: 5px 0;
  color: #333;
  font-size: 15px;
}

/* Responsive styles */
@media (max-width: 576px) {
  .donate-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .donate-modal-content {
    margin: 60px auto;
    width: 95%;
  }
  
  .donate-card h3 {
    font-size: 18px;
  }
  
  .bank-info p {
    font-size: 14px;
  }
}

#groom-modal .donate-card h3,
#groom-modal .donate-close {
  color: #7a9cc6;
}

#bride-modal .donate-card h3,
#bride-modal .donate-close {
  color: #c89d9c;
}
