/* ==========================================
   GIVING PAGE STYLES
   ========================================== */

/* Section 1: Giving Hero (Primary Red Accent, Watermark Logo) */
.give-hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 480px;
  overflow: hidden;
  background-color: var(--primary);
  /* Red accent */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  opacity: 0.06;
  /* Very dim central watermark */
  pointer-events: none;
  z-index: 1;
}

.hero-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  max-width: 850px;
  padding: 0 var(--grid-margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-container);
  /* Gold text accent */
  letter-spacing: 0.15em;
}

.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .hero-quote {
    font-size: 26px;
  }
}

.hero-scripture {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--on-primary-container);
  opacity: 0.9;
}

.hero-btns-container {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 12px;
}

.btn-give-sharp {
  background-color: #ffffff;
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 0 !important;
  /* Sharp edge */
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  border: 1px solid #ffffff;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 14px;
}

.btn-give-sharp:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-faq-sharp {
  background-color: transparent;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 0 !important;
  /* Sharp edge */
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  border: 1px solid #ffffff;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 14px;
}

.btn-faq-sharp:hover {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}


/* Section 2: Support Our Ministry (collage stack) */
.support-section {
  background-color: var(--surface);
  padding: 100px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.support-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.support-text-col .section-subtitle::after {
  left: 0;
  transform: none;
}

.support-collage-col {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.collage-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 380px;
}

.collage-item {
  position: absolute;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(112, 2, 16, 0.08);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlapping Grid Alignments */
.frame-top {
  width: 220px;
  height: 150px;
  top: 0;
  left: 20px;
  z-index: 1;
}

.frame-middle {
  width: 230px;
  height: 160px;
  top: 90px;
  right: 10px;
  z-index: 3;
  /* Overlaps top frame */
}

.frame-bottom {
  width: 210px;
  height: 150px;
  top: 200px;
  left: 0;
  z-index: 2;
  /* Overlaps middle frame from bottom-left */
}

.collage-item:hover {
  transform: scale(1.03) translateY(-4px);
  z-index: 4;
  /* Pull to front on hover */
  box-shadow: 0 20px 40px rgba(112, 2, 16, 0.15);
}


/* Section 3: Ways to Give & Note Box */
.ways-section {
  padding: 100px 0;
}

.ways-header {
  margin-bottom: 48px;
  text-align: center;
}

.ways-header .section-subtitle::after {
  left: 50%;
  transform: translateX(-50%);
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
}

@media (max-width: 992px) {
  .ways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ways-grid {
    grid-template-columns: 1fr;
  }
}

.give-card {
  background-color: var(--surface-container-lowest);
  border-radius: var(--rounded-lg);
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(112, 2, 16, 0.02);
  border: 1px solid rgba(140, 113, 111, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.give-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(112, 2, 16, 0.06);
}

.give-card-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--rounded-full);
  background-color: rgba(112, 2, 16, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.give-card-title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--on-surface);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.give-card-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--outline);
  letter-spacing: 0.05em;
}

.field-value {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface-variant);
}

.give-card-field.highlight-field {
  background-color: var(--surface-container-low);
  padding: 12px;
  border-radius: var(--rounded-md);
}

.account-copy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.account-num {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface);
}

.btn-copy-acc {
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--rounded-full);
  transition: var(--transition-smooth);
}

.btn-copy-acc:hover {
  background-color: rgba(112, 2, 16, 0.08);
}

/* Coming Soon Locked Card */
.card-locked {
  opacity: 0.8;
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--secondary);
  color: #ffffff;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--rounded-sm);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

/* Note section box */
.give-note-box {
  margin-top: 60px;
  background-color: var(--surface-container-lowest);
  border-left: 5px solid var(--primary);
  /* vertical red line left side */
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
  border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
}

.note-title {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.note-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-surface-variant);
}

.note-item i {
  color: var(--primary);
  font-size: 10px;
  margin-top: 6px;
}


/* Section 4: FAQ Accordion */
.give-faq-section {
  padding: 100px 0;
  background-color: var(--surface);
}

.faq-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

@media (max-width: 992px) {
  .faq-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq-header-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-header-side .section-subtitle::after {
  left: 0;
  transform: none;
}

.faq-accordion-side {
  width: 100%;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid rgba(140, 113, 111, 0.12);
  transition: var(--transition-smooth);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--on-surface);
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.faq-icon {
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, transform 0.3s ease;
}

.faq-content p {
  padding-bottom: 24px;
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.7;
}

/* Active State */
.faq-item.active {
  border-bottom-color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--secondary);
}

.faq-item.active .faq-content {
  opacity: 1;
  transform: translateY(0);
}

/* Subtitle and spacing helpers */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: inline-block;
}