     /* =========================
  Donation + Thank You Section
========================= */
.donation-thankyou-section {
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  padding: 100px 20px;
  text-align: center;
  border-radius: 25px;
  margin: 60px auto;
}

.donation-thankyou-section .section-title {
  font-size: 2.8rem;
  color: #9c27b0;
  margin-bottom: 15px;
}

.donation-thankyou-section .section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Donation Cards */
.donation-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.donation-card {
  background: white;
  width: 450px;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  text-align: left;
}

.donation-card:hover {
  transform: translateY(-12px);
}

.donation-card h3 {
  text-align: center;
  color: #9c27b0;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.donation-card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Thank You Message */
.thank-you-container {
  max-width: 900px;
  margin: auto;
  color: #4a148c;
}

.thank-you-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thank-you-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.thank-you-highlight {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Social Buttons */
.thank-you-actions {
  margin-bottom: 30px;
}

.thank-you-actions button {
  display: inline-block;
  padding: 14px 35px;
  margin: 8px;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  cursor: pointer;
  background: white;
  color: #9c27b0;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
}

.thank-you-actions button:hover {
  transform: translateY(-5px) scale(1.05);
  background: #fce4ec;
}

.social-btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 8px;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, opacity 0.3s;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.05);
  opacity: 0.9;
}

.social-btn.fb { background: #1877F2; }
.social-btn.tw { background: #1DA1F2; }
.social-btn.wa { background: #25D366; }
.social-btn.li { background: #0A66C2; }

/* Donation Note */
.donation-note {
  font-size: 1rem;
  margin-top: 25px;
  color: #4a148c;
}


    .photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fff;
    color: #333;
}

/* NAVBAR */
nav {
    position: fixed;
    width: 100%;
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

nav h2 {
    color: #9c27b0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #e91e63;
}

/* HEADER */
header {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 150px 20px 100px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
}

header p {
    margin-top: 10px;
    font-size: 1.2rem;
}

/* SECTIONS */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

h2.section-title {
    text-align: center;
    color: #9c27b0;
    margin-bottom: 50px;
}

/* CARDS */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: #e91e63;
    margin-bottom: 10px;
}

/* IMPACT */
.impact {
    background: #fce4ec;
    text-align: center;
    border-radius: 20px;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    font-weight: 600;
}

.donation-section {
    margin-left: 400px;
    background: #fce4ec;
    padding: 80px 20px;
    border-radius: 20px;
}

.donation-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.donation-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.donation-card:hover {
    transform: translateY(-8px);
}

.donation-card h3 {
    color: #9c27b0;
    margin-bottom: 20px;
}

.donation-card p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.donation-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
}
/* CTA */
.cta {
    text-align: center;
}

.cta button {
    padding: 14px 30px;
    margin: 10px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    cursor: pointer;
    background: #9c27b0;
    color: white;
    transition: 0.3s;
}

.cta button:hover {
    background: #e91e63;
}

/* FOOTER */
footer {
    background: #9c27b0;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

/* ANIMATION */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.thank-you-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #9c27b0, #c219d1);
    text-align: center;
    color: white;
}

.thank-you-container {
    max-width: 900px;
    margin: auto;
    color: white;

}

.thank-you-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.thank-you-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.thank-you-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.thank-you-actions button {
    padding: 14px 35px;
    margin: 10px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    cursor: pointer;
    background: white;
    color: #9c27b0;
    font-weight: 600;
    transition: 0.3s ease;
}

.thank-you-actions button:hover {
    background: #fce4ec;
}
