@charset "UTF-8";

:root {
--gold: #c2973b;
--black: #000000;
--white: #ffffff;
--light-gold: #e6d3ae;
--dark-gold: #a17f1a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: none;
}
.navbar .logo,
.navbar .nav-links a {
  color: white;
  transition: color 0.3s ease;
}
.navbar.scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
  color: black;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
     height: 70px;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    padding-right: 70px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding-top:25px;
}
    .nav-links a {
  text-decoration: none !important; /* Ensures no underline */
}
/* Default nav text (desktop, matches transparent background) */
.navbar .nav-links a,
.navbar .logo {
  color: white;
  transition: color 0.3s ease;
}
/* Override nav link color on scroll */
.navbar.scrolled .nav-links a,
.navbar.scrolled .logo {
  color: black;
}

.nav-links a:hover {
    color: var(--gold);
}
.nav-cta {
    background: linear-gradient(145deg, var(--gold), var(--dark-gold));
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid var(--dark-gold);
    box-shadow: 0 3px 6px rgba(194, 151, 59, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
     margin-left: 175px;
  padding-left: 60px;
}
.nav-cta:hover {
    background: linear-gradient(145deg, #d4a248, var(--gold));
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(194, 151, 59, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(194, 151, 59, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* Hero Section */
.hero {
    height: 1080px;
    background-image:url("../images/homeless_1080.webp");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
      z-index: 0;
}
.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-3d {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.2s ease;
    border-radius: 10px; /* Rounded corners */
    text-decoration: none;
    box-shadow: 0 6px 0 #a07d2e, 0 10px 15px rgba(0, 0, 0, 0.3);
}
.btn-3d:hover {
    background: var(--light-gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #a07d2e, 0 15px 20px rgba(0, 0, 0, 0.4);
}
.btn-3d:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #a07d2e, 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    background-color: var(--gold);
    color: #ffffff;
    border: none;
    transform-style: preserve-3d;
    transition: all 0.2s ease;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 6px 0 #a07d2e, 0 10px 15px rgba(0, 0, 0, 0.3);
}
#scrollToTopBtn:hover {
    background: var(--light-gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #a07d2e, 0 15px 20px rgba(0, 0, 0, 0.4);
}
#scrollToTopBtn:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #a07d2e, 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}
/* Impact Stats */
.impact-stats {
    background: var(--white);
    padding: 4rem 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}
.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 500;
    opacity: 0.8;
}
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gold), #f5f0e8);
    position: relative;
  z-index: 1;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
#site-header {
  min-height: 30px;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}
.section-title-dk {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--black);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}
.service-card p {
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.service-link:hover {
    color: var(--dark-gold);
}
/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--black), #333333);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}
/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    color: var(--light-gold);
    opacity: 0.8;
}

        /* Animations */
        @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-counter {
    animation: countUp 2s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
.hero h1 {
    font-size: 2.5rem;
}
.nav-links {
    display: none;
}
.services-grid {
    grid-template-columns: 1fr;
}
.stats-container {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 480px) {
.stats-container {
    grid-template-columns: 1fr;
}
.hero-cta {
    flex-direction: column;
    align-items: center;
}
}
   /* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.scrolled .hamburger span {
  background: black !important;
}
/* Fullscreen Overlay Menu */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.nav-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.nav-menu a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: var(--gold);
}
.navbar.scrolled .nav-menu a {
  color: white !important;
}
.navbar.scrolled .hamburger.active span {
  background: white !important;
}
/* Responsive Rules */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
      padding-left: 40px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
}
    /* Desktop nav shown by default */
.desktop-nav {
  display: flex;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .nav-cta {
    display: none;
  }
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-section {
  margin: 10px;
}
.footer-section h3 {
  color: #c2973b;
  margin-bottom: 1rem;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-section ul li a:hover {
  color: #c2973b;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 10px;
  color: #e6d3ae;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.mission-dark-bg{
  background-color: #222;
}
.subtitle {
  font-size: clamp(60px, 8vw, 150px);
}
.sub-banner {
  margin-top: 70px;                      /* offset for fixed navbar */
  min-height: clamp(220px, 30vh, 420px); /* responsive banner height */
  padding: clamp(32px, 6vh, 72px) 0;     /* responsive vertical padding */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;                         /* center the heading */
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.sub-banner h1 {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,.35);
}}
@media (max-width: 768px) {
  .sub-banner {
    height: 250px;
  }
}

@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUpCustom 0.8s ease forwards;
}



/* Force navbar to be white on about page */
body.about-page .navbar {
  background: white !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

body.about-page .navbar .logo,
body.about-page .navbar .nav-links a {
  color: black !important;
}

/* Swiper Navigation Arrows - Gold Theme */
.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--light-gold) !important;
  transform: translateY(-50%) scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
}

/* Ensure arrows are visible on dark backgrounds */
.mission-dark-bg .swiper-button-next,
.mission-dark-bg .swiper-button-prev {
  color: var(--gold) !important;
} 

/* Enhanced Vertical Timeline - Icons Inside Panels */
.timeline-vertical {
  position: relative;
  padding-left: 40px;
  border-left: 4px solid var(--gold);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  min-height: 60px;
}

.timeline-item.left .timeline-panel {
  margin-left: 60px;
}

.timeline-item.right {
  justify-content: flex-end;
}

.timeline-item.right .timeline-panel {
  margin-right: 60px;
  order: -1;
}

.timeline-panel {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  max-width: 600px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(194, 151, 59, 0.3);
}

.timeline-content {
  flex: 1;
}

.timeline-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  margin-bottom: 0;
  opacity: 0.9;
}

/* Scroll-activated timeline highlight */
.timeline-item.active-step .timeline-icon {
  background-color: var(--dark-gold);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.timeline-item.active-step .timeline-panel {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--gold);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .timeline-vertical {
    padding-left: 15px;
    border-left: 3px solid var(--gold);
  }
  
  .timeline-item,
  .timeline-item.right {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .timeline-item.right .timeline-panel,
  .timeline-item.left .timeline-panel {
    margin-left: 30px;
    margin-right: 15px;
    order: unset;
    max-width: calc(100vw - 60px);
    width: calc(100vw - 60px);
  }
  
  .timeline-panel {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    align-items: flex-start;
  }
  
  .timeline-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    align-self: center;
    margin-bottom: 0.5rem;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .timeline-content h4 {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  
  .timeline-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .timeline-item.right .timeline-panel,
  .timeline-item.left .timeline-panel {
    margin-left: 20px;
    margin-right: 10px;
    max-width: calc(100vw - 40px);
    width: calc(100vw - 40px);
  }
  
  .timeline-panel {
    padding: 0.75rem;
  }
  
  .timeline-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Fix padding on navbar and offset content */
.navbar {
  padding: 1rem 0;
}

/* Offset for fixed header */
.sub-banner {
  margin-top: 70px;
}

/* Milestones: mobile square, desktop 4:3 for landscape friendliness */
.milestoneSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;   /* mobile: square */
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .milestoneSwiper .swiper-slide img {
    aspect-ratio: 16 / 9; /* desktop/tablet: wider for landscape photos */
  }
}


.sub-banner h1 {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,.35);
}}

.sub-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (min-width: 992px) {
  .sub-banner {
    min-height: 50vh; /* taller height for desktop */
  }
}

/* === Ensure sub-banner image always fills and is centered === */
.sub-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fill container */
  object-position: center; /* center focus */
  z-index: 0;
}


/* Lite YouTube thumbnail play button */
.yt-lite-thumb {
  position: relative;
  cursor: pointer;
  display: block;
}
.yt-lite-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(0,0,0,0.6);
  border-radius: 14%;
}
.yt-lite-play::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 14px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent white;
}
/* test-2025-08-13-1 */



/* Facebook feed section */
.social-section {
  padding: 4rem 0;
}
.social-section .powr-facebook-feed {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .social-section {
    padding: 3rem 0;
  }
}


/* Gold gradient band (About page alt background) */
.gold-bg {
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--white);
}


/* Utility background gold for small elements (icons, pills) */
.bg-gold {
  background-color: var(--gold);
  color: var(--white);
}


/* Utility text gold */
.text-gold {
  color: var(--gold);
}


/* Board of Directors section tweaks */
.gold-bg .card-title,
.gold-bg .card-text {
  color: #ffffff;
}

.gold-bg .card-body {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
}


/* Leadership Team section tweaks */
.section-title + .row .card-title,
.section-title + .row .card-text {
  color: var(--black);
}

.section-title + .row .card-body {
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  padding: 1rem;
}


/* Hover effects for Leadership and Board cards */
.section-title + .row .card,
.gold-bg .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-title + .row .card:hover,
.gold-bg .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}


/* Hover effects for circular staff/board photos */
.section-title + .row .card-img-top.rounded-circle,
.gold-bg .card-img-top.rounded-circle {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-title + .row .card:hover .card-img-top.rounded-circle,
.gold-bg .card:hover .card-img-top.rounded-circle {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


/* Force white text inside Board of Directors cards */
.gold-bg .card .card-title,
.gold-bg .card .card-text {
  color: #ffffff !important;
}

.gold-bg .card .card-text {
  color: rgba(255,255,255,0.85) !important;
}


/* Force section titles inside gold-bg to white */
.gold-bg .section-title {
  color: #ffffff !important;
}
