﻿/* SUPPORT PAGE ONLY */

body {
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.support-hero {
  height: 90vh;
  background: url('images/support.webp') center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.3);
  height:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* GRID */
.support-grid {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 40px;
  padding: 60px 0;
}

/* MAIN */
.support-main h1 {
  color: var(--primary);
}

.highlight {
  background: #fff8e1;
  padding: 15px;
  border-left: 5px solid var(--accent);
  font-weight: 600;
}

/* POINTS */
.support-points {
  display: grid;
  gap: 20px;
  margin: 25px 0;
}

.point {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.point h4 {
  color: #b8962e;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* ASIDE */
.donation-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  position: sticky;
  top: 100px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.donation-card input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.donation-card input:focus {
  border-color: var(--accent);
}

.give-btn {
  margin-top: 20px;
  padding: 15px 25px;
  width: 100%;
  font-weight: bold;
  border: none;
  background: var(--accent);
  cursor: pointer;
  transition: 0.3s;
}

.give-btn:hover {
  background: #b8962e;
}

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}


/* MOBILE */
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}