/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.hero {
  /* background: url('https://www.wfp.org/sites/default/files/styles/featured/public/2021-06/WFP-0000127432.jpg') center/cover no-repeat; */
  min-height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  /* background: rgba(0, 0, 0, 0.6); */
  text-align: center;
  padding: 20px;
  color: #2f4f4f;
  width: 100%;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}


/* Donation Section Layout */
.donation-section {
  display: flex;
  gap: 20px;
  padding: 30px;
  /* max-width: 1200px; */
  /* margin: auto; */
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
  gap: 20px;
}

/* Left Form */
.form-container {
  flex: 1;
}

.form-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h2 {
  color: #333;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 15px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  resize: none;
}

.checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-grid label {
  background: #f1f1f1;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
   text-align: center;
}

.btn {
  width: 100%;
  padding: 12px;
  background: #0066cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: #e3ece7; color: #555;;
}

/* Right Campaign Content */
.campaign-container {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.campaign-video video {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
  object-fit: cover;
}


/* Responsive */
@media (max-width: 600px) {
  .hero {
    min-height: 180px;
    padding: 10px 0;
  }

  .hero-overlay h1 {
    font-size: 1.1rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
   .form-card,
  .campaign-container {
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
  }

  h2 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
@media (max-width: 900px) {
  .donation-section {
    flex-direction: column; /* stack one on top, one on bottom */
    min-height: unset;
  }

  .form-container,
  .campaign-container {
    width: 100%;
    margin-bottom: 20px; /* spacing between sections */
  }
}
}
@media (max-width: 600px) {
  .two-col {
    grid-template-columns: 1fr; /* stack fields vertically */
  }
}