/* ============================================
   GIVE PAGE - Donation Form Styles
   Reuses style.css base, adds give-specific layout
   Color scheme: Gold #C4B28C / Hover #7F9392 / Deep green #2c5530
   ============================================ */

/* === GIVE PAGE OUTER === */
.give-main-outer {
  padding: 60px 0 80px;
  background: #f8f6f3;
  min-height: 70vh;
}

/* === GIVE TWO-COLUMN LAYOUT === */
.give-main {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}

/* === LEFT: CONTENT & FORM === */
.give-content {
  max-width: 700px;
}

/* === DONATION FORM === */
.give-form {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

/* Title */
.give-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #2c5530;
  line-height: 1.25;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tabs (One-time / Monthly) */
.give-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0d8cf;
}

.give-tab {
  flex: 1;
  padding: 12px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  background: #f8f6f3;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.give-tab:hover {
  color: #2c5530;
  background: #f0ebe4;
}

.give-tab.active {
  color: #fff;
  background: #C4B28C;
}

/* Amount Buttons — 2 rows × 4 columns */
.give-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.give-amount-btn {
  padding: 14px 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #555;
  background: #f8f6f3;
  border: 2px solid #e0d8cf;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.give-amount-btn:hover {
  border-color: #C4B28C;
  color: #2c5530;
}

.give-amount-btn.active {
  background: #C4B28C;
  color: #fff;
  border-color: #C4B28C;
  box-shadow: 0 4px 12px rgba(196,178,140,0.3);
}

/* Custom Amount */
.give-custom-amount {
  margin-bottom: 20px;
}

.give-custom-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  color: #333;
  background: #f8f6f3;
  border: 2px solid #e0d8cf;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s ease;
  box-sizing: border-box;
}

.give-custom-input:focus {
  border-color: #C4B28C;
  background: #fff;
}

.give-custom-input::placeholder {
  color: #999;
}

/* Submit Button */
.give-submit-btn {
  width: 100%;
  padding: 16px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: #C4B28C;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(196,178,140,0.35);
}

.give-submit-btn:hover {
  background: #7F9392;
  box-shadow: 0 6px 20px rgba(127,147,146,0.35);
  transform: translateY(-1px);
}

/* === INTRO TEXT === */
.give-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* === SUBTITLE === */
.give-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2c5530;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === LIST === */
.give-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.give-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.give-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C4B28C;
  font-weight: 700;
  font-size: 16px;
}

/* === CLOSING TEXT === */
.give-closing {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  font-style: italic;
}

/* === RIGHT: IMAGE === */
.give-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(135deg, #2c5530 0%, #1a3a1e 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding-bottom: 50px;
}

.give-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,85,48,0.8) 0%, rgba(44,85,48,0.2) 50%, transparent 100%);
  z-index: 1;
}

.give-image-donate-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: #C4B28C;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(196,178,140,0.4);
  z-index: 2;
}

.give-image-donate-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.give-image-donate-btn:hover {
  background: #7F9392;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(127,147,146,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .give-main {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }
  .give-image {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .give-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .give-main-outer {
    padding: 40px 0 60px;
  }

  .give-form {
    padding: 25px;
  }

  .give-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .give-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  .give-image {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .give-form {
    padding: 20px;
  }

  .give-title {
    font-size: 20px;
  }

  .give-amounts {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .give-amount-btn {
    padding: 12px 6px;
    font-size: 16px;
  }
}
