/**
 * Aradhya India — Phase 1 overrides
 * Loaded only on adviser.php and donate.php
 * Does not modify existing theme CSS files.
 */

/* --------------------------------------------------------------------------
   Advisory Board (adviser.php)
   -------------------------------------------------------------------------- */

.phase1-advisers {
  padding: 48px 0 64px;
}

.phase1-advisers__header {
  max-width: 800px;
  margin: 0 auto 28px;
  text-align: center;
}

.phase1-advisers__title {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.phase1-advisers__subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}

.phase1-advisers__intro {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.phase1-advisers__intro p {
  margin: 0;
}

.phase1-advisers__divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin: 0 auto 32px;
  max-width: 200px;
}

.phase1-advisers__section-title {
  margin: 0 auto 28px;
  max-width: 960px;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
}

.phase1-advisers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .phase1-advisers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
  }
}

.phase1-advisor-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.phase1-advisor-card__avatar {
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f4f4f4;
  border: 3px solid #d5271e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: #d5271e;
  letter-spacing: 0.02em;
}

.phase1-advisor-card__photo {
  width: 112px;
  height: 112px;
  margin: 0 auto 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d5271e;
  display: block;
}

.phase1-advisor-card__name {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.phase1-advisor-card__role {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #d5271e;
  line-height: 1.4;
}

.phase1-advisor-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  text-align: left;
}

/* --------------------------------------------------------------------------
   Donate page (donate.php)
   -------------------------------------------------------------------------- */

.phase1-donate {
  padding: 40px 0 56px;
}

.phase1-donate__section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.phase1-donate__section:last-of-type {
  margin-bottom: 0;
}

.phase1-donate__kicker {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d5271e;
}

.phase1-donate__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.25;
}

.phase1-donate__subtitle {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

.phase1-donate__body {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

.phase1-donate__body p {
  margin: 0 0 14px;
}

.phase1-donate__body p:last-child {
  margin-bottom: 0;
}

.phase1-donate__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.phase1-donate__list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.phase1-donate__list li:last-child {
  border-bottom: none;
}

.phase1-donate__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5271e;
}

.phase1-donate__tiers {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}

.phase1-donate__tiers li {
  padding: 16px 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a1a;
}

.phase1-donate__tiers li:last-child {
  border-bottom: none;
}

.phase1-donate__tier-amt {
  font-weight: 700;
  color: #d5271e;
  margin-right: 8px;
}

.phase1-donate__important {
  color: #d5271e;
  font-weight: 700;
}

.phase1-donate__tier-primary {
  background: #fff6f4;
  border-left: 4px solid #d5271e;
}

.phase1-donate__tier-desc {
  display: block;
  margin-top: 6px;
  margin-left: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.phase1-donate__bank {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.phase1-donate__bank dl {
  margin: 0;
}

.phase1-donate__bank dt {
  margin: 14px 0 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #666;
}

.phase1-donate__bank dt:first-child {
  margin-top: 0;
}

.phase1-donate__bank dd {
  margin: 0;
  font-size: 16px;
  color: #1a1a1a;
  word-break: break-word;
}

.phase1-donate__trust {
  display: grid;
  gap: 12px;
}

@media (min-width: 600px) {
  .phase1-donate__trust {
    grid-template-columns: 1fr 1fr;
  }
}

.phase1-donate__trust-item {
  padding: 16px 18px;
  background: #f9f9f9;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  border: 1px solid #ececec;
}

.phase1-donate__disclaimer {
  margin: 0;
  padding: 16px 18px;
  background: #f4f4f4;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

/* Donate button in header when on donate page */
.phase1-header-donate--active {
  background-color: #d5271e !important;
  color: #fff !important;
  border-color: #d5271e !important;
}

/* --------------------------------------------------------------------------
   Donation calculator (donate.php)
   -------------------------------------------------------------------------- */

.phase1-donate__calculator-help {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.phase1-donate__calculator-box {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px 22px;
  max-width: 420px;
}

.phase1-donate__calculator-label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.phase1-donate__calculator-input {
  width: 100%;
  max-width: 200px;
  padding: 10px 14px;
  font-size: 16px;
  line-height: 1.3;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.phase1-donate__calculator-input:focus {
  outline: 2px solid rgba(213, 39, 30, 0.45);
  outline-offset: 2px;
  border-color: #d5271e;
}

.phase1-donate__calculator-total {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.phase1-donate__calculator-total strong {
  font-size: 1.15em;
  color: #d5271e;
}

.phase1-donate__bank.phase1-donate__highlight {
  animation: phase1-bank-highlight 0.55s ease-out;
  box-shadow: 0 0 0 3px rgba(213, 39, 30, 0.28), 0 4px 18px rgba(0, 0, 0, 0.08);
  border-color: #d5271e;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

@keyframes phase1-bank-highlight {
  from {
    box-shadow: 0 0 0 0 rgba(213, 39, 30, 0.45);
  }
  to {
    box-shadow: 0 0 0 3px rgba(213, 39, 30, 0.28), 0 4px 18px rgba(0, 0, 0, 0.08);
  }
}

/* --------------------------------------------------------------------------
   Bank details visual emphasis (donate.php)
   -------------------------------------------------------------------------- */

.phase1-donate__bank {
  border: 2px solid #d5271e;
  background: #fffaf9;
  box-shadow: 0 4px 12px rgba(213, 39, 30, 0.15);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.phase1-donate__bank:hover {
  box-shadow: 0 6px 18px rgba(213, 39, 30, 0.25);
  transform: translateY(-2px);
}

.phase1-donate__bank.phase1-donate__highlight-init {
  animation: phase1-bank-init-highlight 1.2s ease-out 1;
}

@keyframes phase1-bank-init-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(213, 39, 30, 0.35), 0 4px 12px rgba(213, 39, 30, 0.15);
    background: #fff6f4;
  }
  100% {
    box-shadow: 0 4px 12px rgba(213, 39, 30, 0.15);
    background: #fffaf9;
  }
}
