/* ==========================================================================
   Front Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section 1 – Hero Banner
   -------------------------------------------------------------------------- */
.fp-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  background-color: #003a71;
  background-image: linear-gradient(135deg, #003a71 0%, #003a71 50%, #003a71 100%);
  padding: 60px 20px;
  text-align: center;
}

.fp-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}

.fp-hero__headline {
  font-size: clamp(2rem, 5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Section 2 – Filter Buttons
   -------------------------------------------------------------------------- */
.fp-filters {
  background-color: #f4f4f4;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.fp-filters__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.fp-filters__btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #ffffff;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.fp-filters__btn:hover,
.fp-filters__btn:focus {
  background-color: #1a1a2e;
  color: #ffffff;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Section 3 – Latest Campaigns Grid
   -------------------------------------------------------------------------- */
.fp-campaigns {
  padding: 48px 0 60px;
  background-color: #ffffff;
}

.fp-campaigns__empty {
  text-align: center;
  color: #6c757d;
  font-size: 1rem;
}

/* Campaign card */
.fp-campaign-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
  background-color: #ffffff;
}

.fp-campaign-card:hover,
.fp-campaign-card:focus {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}

/* Image wrapper – fixed 280×158 */
.fp-campaign-card__img-wrap {
  width: 100%;
  aspect-ratio: 280 / 158;
  overflow: hidden;
  background-color: #e9ecef;
}

.fp-campaign-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fp-campaign-card__img--placeholder {
  width: 100%;
  height: 100%;
  background-color: #dee2e6;
}

/* Card body */
.fp-campaign-card__body {
  padding: 14px 16px 18px;
}

.fp-campaign-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: #1a1a2e;
}
