@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&family=Instrument+Sans:ital,wdth,wght@0,75..100,400..700;1,75..100,400..700&family=Sora:wght@100..800&display=swap);
/* p {
  color: aquamarine;
} */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;

  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.instrument {
  font-family: 'Instrument Sans', sans-serif;
}
.instrument-condensed {
  font-family: 'Instrument Sans', sans-serif;
  font-variation-settings: 'wdth' 75;
  font-stretch: 75%;  /* This sets the width to 75 */
}
.sora {
  font-family: 'Sora', sans-serif;
}
.DM-sans {
  font-family: 'DM Sans', sans-serif;
}
.inknutAntiqua{
  font-family: 'Inknut Antiqua', serif;
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageReveal {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroSlideRightToLeft {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroBgSlideRightToLeft {
  0% {
    opacity: 0;
    background-position: center;
  }
  100% {
    opacity: 1;
    background-position: center;
  }
}

.hero-animate {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

.hero-animate-delay-1 {
  animation-delay: 0.1s;
}

.hero-animate-delay-2 {
  animation-delay: 0.25s;
}

.hero-animate-delay-3 {
  animation-delay: 0.4s;
}

.hero-image-animate {
  opacity: 0;
  animation: heroImageReveal 0.9s ease forwards;
  animation-delay: 0.2s;
}

.hero-slide {
  opacity: 0;
  animation: heroSlideRightToLeft 0.7s ease forwards;
}

.hero-bg-slide {
  animation: heroBgSlideRightToLeft 0.8s ease forwards;
}

.partnership-select option:hover,
.partnership-select option:focus,
.partnership-select option:checked {
  background-color: #f97316;
  color: #ffffff;
}

.donation-select option:hover,
.donation-select option:focus,
.donation-select option:checked {
  background-color: #022c22;
  color: #ffffff;
}

.volunteer-select option:hover,
.volunteer-select option:focus,
.volunteer-select option:checked {
  background-color: #be123c;
  color: #ffffff;
}

.advocacy-select option:hover,
.advocacy-select option:focus,
.advocacy-select option:checked {
  background-color: #7e22ce;
  color: #ffffff;
}

.modal-scroll {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  /* scrollbar-gutter: stable both-edges; */
}

.modal-scroll:hover,
.modal-scroll:focus-within {
  scrollbar-color: #fdba74 transparent;
}

.modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.modal-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.modal-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 999px;
}

.modal-scroll:hover::-webkit-scrollbar-thumb,
.modal-scroll:focus-within::-webkit-scrollbar-thumb {
  background-color: #fdba74;
}

.donation-modal-scroll {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  /* scrollbar-gutter: stable both-edges; */
}

.donation-modal-scroll:hover,
.donation-modal-scroll:focus-within {
  scrollbar-color: #34d399 transparent;
}

.donation-modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.donation-modal-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.donation-modal-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 999px;
}

.donation-modal-scroll:hover::-webkit-scrollbar-thumb,
.donation-modal-scroll:focus-within::-webkit-scrollbar-thumb {
  background-color: #34d399;
}

.volunteer-modal-scroll {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  /* scrollbar-gutter: stable both-edges; */
}

.volunteer-modal-scroll:hover,
.volunteer-modal-scroll:focus-within {
  scrollbar-color: #760E3E transparent;
}

.volunteer-modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.volunteer-modal-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.volunteer-modal-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 999px;
}

.volunteer-modal-scroll:hover::-webkit-scrollbar-thumb,
.volunteer-modal-scroll:focus-within::-webkit-scrollbar-thumb {
  background-color: #760E3E;
}

.volunteer-submit-btn {
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: background-position 300ms ease;
}

.volunteer-submit-btn:hover {
  background-position: 100% 50%;
}

.advocacy-modal-scroll {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  /* scrollbar-gutter: stable both-edges; */
}

.advocacy-modal-scroll:hover,
.advocacy-modal-scroll:focus-within {
  scrollbar-color: #7e22ce transparent;
}

.advocacy-modal-scroll::-webkit-scrollbar {
  width: 6px;
}

.advocacy-modal-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.advocacy-modal-scroll::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 999px;
}

.advocacy-modal-scroll:hover::-webkit-scrollbar-thumb,
.advocacy-modal-scroll:focus-within::-webkit-scrollbar-thumb {
  background-color: #7e22ce;
}

/* Autofill styles (opt-in per field) */
.autofill-emerald:-webkit-autofill,
.autofill-emerald:-webkit-autofill:hover,
.autofill-emerald:-webkit-autofill:focus,
.autofill-emerald:-webkit-autofill:active {
  -webkit-text-fill-color: #d1d5db;
  box-shadow: 0 0 0px 1000px #022c22 inset;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

.autofill-orange:-webkit-autofill,
.autofill-orange:-webkit-autofill:hover,
.autofill-orange:-webkit-autofill:focus,
.autofill-orange:-webkit-autofill:active {
  -webkit-text-fill-color: #6d6d6d;
  box-shadow: 0 0 0px 1000px #fff7ed inset;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

.autofill-rose:-webkit-autofill,
.autofill-rose:-webkit-autofill:hover,
.autofill-rose:-webkit-autofill:focus,
.autofill-rose:-webkit-autofill:active {
  -webkit-text-fill-color: #374151;
  box-shadow: 0 0 0px 1000px #fff1f2 inset;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

.autofill-purple:-webkit-autofill,
.autofill-purple:-webkit-autofill:hover,
.autofill-purple:-webkit-autofill:focus,
.autofill-purple:-webkit-autofill:active {
  -webkit-text-fill-color: #374151;
  box-shadow: 0 0 0px 1000px #d8b4fe inset;
  -webkit-transition: background-color 9999s ease-in-out 0s;
  transition: background-color 9999s ease-in-out 0s;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #DD1778;
  transition: width 0.3s ease-out;
}

.nav-link:hover::after {
  width: 100%;
}

@keyframes ourStoryMobileMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.375rem));
  }
}

.our-story-mobile-marquee-track {
  animation: ourStoryMobileMarquee 24s linear infinite;
}

@media (min-width: 768px) {
  .our-story-mobile-marquee-track {
    animation: none;
  }
}

