/* =====================================================================
   Public Main CSS (Extracted & Cleaned from index.html)
   ===================================================================== */

/* Floating Analog Clock Widget */
.hero-clock-container {
  position: absolute;
  top: 100px;
  left: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(7, 31, 20, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 12px 16px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.hero-clock-container:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(212, 175, 55, 0.5);
}
.analog-clock {
  width: 70px;
  height: 70px;
  position: relative;
}
.clock-face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
  background: radial-gradient(circle, rgba(13,59,46,0.8) 0%, rgba(7,31,20,0.95) 100%);
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.3);
}
.center-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.hour-hand, .min-hand, .sec-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 4px;
}
.hour-hand {
  width: 3px;
  height: 20px;
  background: #fff;
  z-index: 3;
}
.min-hand {
  width: 2px;
  height: 28px;
  background: var(--gold);
  z-index: 2;
}
.sec-hand {
  width: 1px;
  height: 32px;
  background: #e74c3c;
  z-index: 1;
}
.clock-date {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
@media (max-width: 992px) {
  .hero-clock-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    margin: 0 auto 1.5rem auto;
  }
}

/* Premium Alert Modal */
.alert-modal {
  position: fixed; inset: 0; z-index: 11000;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.alert-modal.active { opacity: 1; visibility: visible; }
.alert-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); }
.alert-card {
  position: relative; width: 100%; max-width: 400px;
  background: linear-gradient(135deg, #071f14, #0a0a0a); 
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px; padding: 2.5rem; text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transform: scale(0.9) translateY(20px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.alert-modal.active .alert-card { transform: scale(1) translateY(0); }
.alert-icon { 
  width: 70px; height: 70px; background: rgba(212, 175, 55, 0.1); 
  color: #d4af37; border-radius: 50%; display: flex; 
  align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.alert-card h4 { font-size: 1.5rem; color: #fff; margin-bottom: 0.75rem; font-family: 'Amiri', serif; }
.alert-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; }
.alert-btn-ok { 
  background: #d4af37; color: #071f14; border: none; padding: 12px 40px; 
  border-radius: 12px; font-weight: 800; cursor: pointer; width: 100%; transition: 0.3s;
}
.alert-btn-ok:hover { transform: scale(1.03); filter: brightness(1.1); }

/* Donation Modal Premium */
.don-modal {
  position: fixed; inset: 0; z-index: 12000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; visibility: hidden; transition: 0.3s;
}
.don-modal.active { opacity: 1; visibility: visible; }
.don-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(15px); }
.don-modal-content {
  position: relative; width: 100%; max-width: 500px;
  background: linear-gradient(135deg, #071f14, #0a0a0a); 
  border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 35px;
  padding: 3rem; transform: scale(0.9) translateY(30px); transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.don-modal.active .don-modal-content { transform: scale(1) translateY(0); }

.don-modal-close {
  position: absolute; left: 25px; top: 25px; background: rgba(255,255,255,0.05);
  color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.don-modal-close:hover { background: #e74c3c; transform: rotate(90deg); }

.don-modal-icon {
  width: 80px; height: 80px; background: rgba(212, 175, 55, 0.1);
  color: var(--gold); border-radius: 20px; font-size: 2.2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.don-modal-title { font-size: 1.8rem; font-family: 'Amiri', serif; color: #fff; text-align: center; margin-bottom: 8px; }
.don-modal-desc { color: rgba(255,255,255,0.4); text-align: center; font-size: 0.95rem; margin-bottom: 2.5rem; }

.don-label { display: block; color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; font-weight: 700; opacity: 0.8; }
.don-amounts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.don-amt-btn {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 12px; border-radius: 12px; font-weight: 700; cursor: pointer; transition: 0.3s;
}
.don-amt-btn:hover, .don-amt-btn.selected { background: var(--gold); color: #000; border-color: var(--gold); }

.don-custom-input {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
  padding: 15px; border-radius: 12px; color: #fff; font-size: 1.1rem; text-align: center; margin-bottom: 2rem;
}

.iban-display-box {
  background: rgba(212,175,55,0.05); border: 1px dashed rgba(212,175,55,0.3);
  padding: 15px; border-radius: 15px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.iban-txt { font-family: monospace; font-size: 0.9rem; color: var(--gold); letter-spacing: 1px; direction: ltr; }
.btn-copy-iban { background: var(--gold); color: #000; border: none; padding: 6px 15px; border-radius: 8px; font-size: 0.8rem; font-weight: 800; cursor: pointer; }

.don-final-btn {
  width: 100%; background: var(--gold); color: #000; border: none; padding: 18px;
  border-radius: 15px; font-size: 1.1rem; font-weight: 900; cursor: pointer; transition: 0.4s;
  box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}
.don-final-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212,175,55,0.4); filter: brightness(1.1); }
