/* =============================== */
/* ========= Base Layout ======== */
/* =============================== */
body {
  font-family: 'Montserrat', sans-serif;
  background: url('/images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =============================== */
/* ======== Typography =========== */
/* =============================== */

/* Default headings */
h1,
h2,
p {
  margin: 0;
}

h1 {
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 1px 1px 4px #000;
}

/* Hero title for the 8-column header */
.hero-title {
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 6px 6px 16px #000;
  margin-bottom: 1rem;
}

h2 {
  font-size: 4rem;
  font-weight: 400;
  color: #f1f1f1;
  text-shadow: 1px 1px 2px #000;
  margin-bottom: 1rem;
}

p {
  color: #f8f8f8;
}

/* =============================== */
/* ========= Cards ============== */
/* =============================== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.col-12,
.col-sm-6,
.col-md-6 {
  padding: 0 0.75rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.card {
  background-color: rgba(0, 0, 0, 0.75) !important;
  color: #ffffff !important;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-body {
  flex-grow: 1;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.card-text,
.card-text small {
  color: #e0e0e0 !important;
}

.row.equal-height > [class*='col-'] {
  display: flex;
  flex-direction: column;
}

/* =============================== */
/* ========= Buttons ============ */
/* =============================== */
.btn-donate {
  background-color: #ff2c2c;
  color: #fff;
  font-weight: bold;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.btn-donate:hover {
  background-color: #cc2222;
}

/* =============================== */
/* ========== Footer ============ */
/* =============================== */
footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #fff;
}

/* =============================== */
/* ======= Responsive Styles ==== */
/* =============================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .btn-donate {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}
