/* Footer styles */
.footer {
  background: var(--grey-900);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  width: 44px;
  height: 41px;
  object-fit: contain;
}

.footer-logo .logo-text {
  width: 89px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 260px; }

.social-links { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background .2s, color .2s, transform .2s;
}

.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }

.footer-col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}

.footer-col a:hover { color: var(--orange-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
}

/* Donation Popup Styles */
.donation-popup {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  z-index: 950;
  max-width: 520px;
  width: calc(100% - 2rem);
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 40px, 0) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.donation-popup.visible {
  opacity: 1;
  pointer-events: none;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.donation-popup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 40px, 0) scale(0.95);
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.donation-popup-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  position: relative;
  transform: translate3d(-50%, 0, 0);
  left: 50%;
  width: max-content;
  max-width: 90vw;
  margin: 0;
  pointer-events: none;
}

.bee-container {
  position: absolute;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
  pointer-events: none;
  left: 50%;
  top: 50%;
  margin-left: -140px;
  margin-top: -140px;
}

.donation-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.bee {
  position: absolute;
  font-size: 2rem;
  user-select: none;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  left: 50%;
  top: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.donation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, var(--orange) 0%, #e68a00 100%);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  
}

.donation-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 152, 0, 0.6);
  background: linear-gradient(135deg, #ff9800 0%, #d27d00 100%);
}

.donation-btn:active {
  transform: translateY(-2px) scale(0.98);
}

.donation-close {
  position: absolute;
  top: -12px;
  right: -15px;
  width: 28px;
  height: 28px;
  border: none;
  background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%);
  color: var(--white, #fff);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
  flex-shrink: 0;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
  pointer-events: auto;
  
  
}

.donation-close:hover {
  background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%);
  color: var(--white);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 152, 0, 0.6);
}

.donation-close:active {
  transform: rotate(90deg) scale(0.95);
}

@media (max-width: 768px) {
  .donation-popup-content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }
  
  .donation-buttons-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .donation-btn {
    margin-right: 0;
    width: 100%;
  }
  
  .donation-close {
    margin-left: 0;
    position: absolute;
    top: -12px;
    right: -15px;
  }
}















