@charset "utf-8";
/* CSS Document */
/* =========================================================
   Phoenix Family - custom_home.css
   Purpose: Homepage-specific custom styling
   ========================================================= */

/* --------------------------
   GENERAL GLOBAL TWEAKS
--------------------------- */
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  color: #222;
}

.btn {
  border-radius: 0;
  font-weight: 600;
  text-transform: none;
}

/* --------------------------
   HERO SECTION - Mission Elf
--------------------------- */
/* --------------------------
   HERO SECTION - Mission Elf
--------------------------- */
.hero-me {
  position: relative;
  background-image: url('../img/slides/missionelf-hero2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  text-align: center;
  padding: 140px 0 120px;
  overflow: hidden;
}

/* Lighter overlay so image stays bright */
.hero-me::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Content layer */
.hero-inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: rgba(0, 0, 0, 0.55); /* this box sits behind text only */
  padding: 35px 45px;
  border-radius: 12px;
  max-width: 850px;
}

/* Text readability */
.hero-title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.btn-me-primary {
  background-color: #bb1654;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.btn-me-primary:hover,
.btn-me-primary:focus {
  background-color: #9a1245;
  color: #fff;
}

.btn-me-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 30px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-me-secondary:hover,
.btn-me-secondary:focus {
  background-color: #fff;
  color: #bb1654;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-me {
    padding: 100px 0;
  }
  .hero-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .hero-me {
    padding: 80px 0;
    background-position: 50% 25%;
  }
  .hero-inner {
    padding: 25px 20px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.65); /* slightly darker for mobile */
  }
  .hero-title {
    font-size: 26px;
    line-height: 1.3;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.6;
  }
  .btn-me-primary,
  .btn-me-secondary {
    display: block;
    width: 100%;
    margin: 10px auto;
  }
}


/* Buttons */
.btn-me-primary {
  background-color: #bb1654;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.btn-me-primary:hover,
.btn-me-primary:focus {
  background-color: #9a1245;
  color: #fff;
}

.btn-me-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 30px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-me-secondary:hover,
.btn-me-secondary:focus {
  background-color: #fff;
  color: #bb1654;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-me {
    padding: 100px 0;
  }
  .hero-title {
    font-size: 36px;
  }
}

@media (max-wi

/* Primary button (pink/red) */
.btn-me-primary {
  background-color: #bb1654;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.btn-me-primary:hover,
.btn-me-primary:focus {
  background-color: #9a1245;
  color: #fff;
}

/* Secondary button (white outline or neutral) */
.btn-me-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 30px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-me-secondary:hover,
.btn-me-secondary:focus {
  background-color: #fff;
  color: #bb1654;
}

/* OVERVIEW SECTION with side highlights */
.section-overview .overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-overview .highlight-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.section-overview .highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.section-overview .highlight-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.section-overview .highlight-text {
  background: #fff;
  padding: 15px 18px;
}

.section-overview .highlight-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #bb1654;
  margin-bottom: 5px;
}

.section-overview .highlight-text p {
  font-size: 14px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .section-overview .overview-highlights {
    margin-top: 40px;
  }
}


/* --------------------------
   RESPONSIVE ADJUSTMENTS
--------------------------- */
@media (max-width: 991px) {
  .hero-me {
    padding: 100px 0;
  }
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-me {
    padding: 80px 0;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 20px;
  }
  .btn-me-primary,
  .btn-me-secondary {
    display: block;
    width: 100%;
    margin: 10px auto;
  }
}

/* --------------------------
   SECTION HEADERS
--------------------------- */
section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

/* --------------------------
   IMPACT STATS
--------------------------- */
section p {
  font-size: 18px;
  color: #444;
}

section .row h3 {
  font-size: 36px;
  font-weight: 700;
  color: #bb1654;
}

/* --------------------------
   FOOTER TWEAKS
--------------------------- */
#footer {
  background-color: #333;
  color: #fff;
  padding-top: 60px;
}

#footer h4 {
  color: #fff;
  font-weight: 700;
}

#footer a {
  color: #fff;
}

#footer a:hover {
  color: #E37A33;
}
