* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  color: #222;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 5vw;
  height: 80px;
  box-sizing: border-box;
}

.logo {
  height: 160px;
  transform: translateX(-30px);
  object-fit: contain;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
}

/* Buttons on the right */
.nav-buttons {
  display: flex;
  align-items: center;
}

.nav-buttons .btn {
  margin-left: 0.75rem;
}

.btn {
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 16px;
  transition: background-color 0.3s;
}

.btn.yellow {
  background-color: #fdd835;
  color: #000;
}

.btn.yellow:hover {
  background-color: #fbc02d;
}

/* wrapper */
/* ============================= */
/* DONATION SECTION (UPDATED UI) */
/* ============================= */

.donation-wrapper{
  max-width:520px;
  margin:40px auto;
  padding:0 15px;
}

/* headings */
h1{
  color:#f5b400;
  text-align:center;
  margin-bottom:6px;
}

.subtitle{
  text-align:center;
  margin-bottom:25px;
  font-size:14px;
  color:#666;
}


/* ================= */
/* FORM CARD         */
/* ================= */
.form-card{
  background:#ffffff;
  padding:32px;
  border-radius:18px;
  box-shadow:0 12px 32px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:440px;
  margin:auto;
  font-family:"Nunito", sans-serif;
}

/* heading */
.form-card h3{
  text-align:center;
  font-size:22px;
  font-weight:700;
  margin-bottom:10px;
  color:#222;
}


/* ================= */
/* INPUTS            */
/* ================= */
input, textarea{
  width:100%;
  padding:14px;
  border-radius:12px;
  border:1px solid #e3e3e3;
  font-size:14px;
  transition:.25s;
  background:#fafafa;
}

input:focus, textarea:focus{
  border-color:#f5b400;
  background:#fff;
  box-shadow:0 0 0 3px rgba(245,180,0,.15);
  outline:none;
}


/* ================= */
/* CHECKBOX STYLE FIX */
/* ================= */
.check{
  display:flex;
  align-items:flex-start; /* top align */
  gap:10px;
  font-size:14px;
  cursor:pointer;
}

.check input{
  flex-shrink:0;
  width:18px;
  height:18px;
  margin-top:4px;
  color:#f5b400;
}

.check p{
  margin:0;
  line-height:1.5;
  word-break:break-word;
}

/* ================= */
/* AMOUNT BUTTONS    */
/* ================= */
.quick-amounts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

.amt-btn{
  padding:10px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  transition:.2s;
}

.amt-btn:hover{
  background:#fff8d6;
  border-color:#f5b400;
  transform:translateY(-2px);
}


/* ================= */
/* DONATE BUTTON     */
/* ================= */
.donate-btn{
  margin-top:10px;
  padding:15px;
  background:#f5b400;
  border:none;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:.25s;
}

.donate-btn:hover{
  background:#e0a800;
  transform:translateY(-2px);
}


/* ================= */
/* MOBILE            */
/* ================= */
@media(max-width:480px){
  .quick-amounts{
    grid-template-columns:repeat(2,1fr);
  }

  .form-card{
    padding:22px;
  }
}
/* ================= */
/* RECEIPT + MODAL   */
/* ================= */

.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
  padding:15px;
}

.modal-content{
  background:#fff;
  padding:25px;
  border-radius:12px;
  max-width:400px;
  width:100%;
}

.receipt-line{
  font-size:14px;
  margin-bottom:6px;
}

.close-btn{
  background:#000;
  color:#fff;
  padding:10px;
  width:100%;
  margin-top:8px;
  border:none;
  border-radius:6px;
}


/* ================= */
/* MOBILE            */
/* ================= */

@media(max-width:500px){

  .amount-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .form-card{
    padding:18px;
  }
}

/* ================= */
/* RECEIPT POPUP */
/* ================= */

.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  justify-content:center;
  align-items:center;
  padding:15px;
}

.modal-content{
  background:#fff;
  padding:25px;
  border-radius:12px;
  max-width:400px;
  width:100%;
}

.modal h2{
  color:green;
  margin-bottom:12px;
}

.receipt-line{
  font-size:14px;
  margin-bottom:6px;
}

.print-btn{
  background:#f5b400;
  border:none;
  padding:10px;
  width:100%;
  margin-top:12px;
  cursor:pointer;
}

.close-btn{
  background:#000;
  color:#fff;
  padding:10px;
  width:100%;
  margin-top:8px;
}
/* Footer Base Styles */
.footer {
  background-color: #fff;
  color: #000;
  font-family: inherit;
  margin-top: 60px;
}

.footer-top {
  background-color: #f5d400;
  padding: 30px 20px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-main {
  text-align: center;
  padding: 40px 20px;
}

.footer-cta {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.volunteer-footer-btn {
  padding: 12px 25px;
  background-color: #f5d400;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-links div {
  text-align: left;
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  margin: 10px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  /*background-color: #000;*/
  padding: 15px;
  border-radius: 50%;
  color: #000;
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}

.whatsapp-float {
  width: 48px;
  height: 48px;
  color: green;
}

.quick-amounts{
  display:flex;
  gap:10px;
  margin-bottom:10px;
}

.quick-amounts button{
  background:#f5b400;
  border:none;
  padding:8px 14px;
  border-radius:6px;
  cursor:pointer;
  font-weight:600;
}

.quick-amounts button:hover{
  background:#e0a800;
}

