/* Custom styles and animations */

.donate-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.donate-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.donate-form-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.donate-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.donate-form label {
  text-align: left;
  font-weight: 500;
  color: #555;
}

.donate-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.donate-form button {
  padding: 12px;
  background-color: #e91e63;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.donate-form button:hover {
  background-color: #d81b60;
}

.qr-section {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.qr-section img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 15px 0;
}

.qr-section p {
  margin: 10px 0;
  color: #555;
  font-weight: 500;
}

.qr-section .upi-id {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  background: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
  margin-top: 15px;
}


/* Smooth transition for all elements */
* {
    transition: all 0.3s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Gallery styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.gallery-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-size: 1.1em;
    font-weight: 500;
}

.lb-data .lb-number {
    font-size: 0.9em;
}

.lb-closeContainer {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

/* Custom focus styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Custom button hover effect */
button:hover {
    transform: translateY(-2px);
}

/* Custom section transitions */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
} 