html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

body {
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}


.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-container {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-container video {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.overlay-text {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  z-index: 2;
  font-family: 'Lato';
}

@media (max-width: 768px) {
  .overlay-text {
    font-size: 2rem;
    top: 15px;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .overlay-text {
    font-size: 1.5rem;
    top: 10px;
    left: 10px;
  }
}

.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: white;
  animation: pulse 2s infinite;
  z-index: 2;
  pointer-events: none;
}


@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(10px);
  }

  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  .scroll-arrow {
    display: none;
  }
}



.aboutproject {
  margin-top: 3rem;
}

.aboutprojecttext {
  font-size: clamp(2rem, 5vw, 2rem);
  font-size: 1.25rem;
  font-weight: 300;
}



.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

#projectvideo {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}




.video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  color: black;
  font-size: 24px;
  padding: 12px 20px;
  border-radius: 32px;
  font-weight: 600;
  user-select: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.play-icon i {
  font-size: 28px;
}



@media (max-width: 600px) {
  .play-icon {
    display: none;
  }
}






.donategoal {
  --donategoal-bar-bg: rgba(0, 0, 0, .05);
  --donategoal-bar-progress-bg: #63D9B3;
  --donategoal-bar-point-bg: #63D9B3;
  --donategoal-bar-point-border: #E8FFF7;
}

.donategoal {
  max-width: 700px;
  text-align: center;
  margin: 50px auto;
}

.donategoal>* {
  margin-bottom: 35px;
}

.donategoal h2 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}



.donategoal .donated-text {
  margin-top: 3rem;
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 600;
  text-align: center;
}





.donategoal .number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(2.2rem, 6vw, 5rem);
  letter-spacing: -0.5px;
  line-height: 1.1;
  font-weight: 600;
  color: #46A787;
  background: linear-gradient(260deg, rgba(99, 217, 179, 1) 0%, rgba(70, 167, 135, 1) 51%, rgba(83, 198, 160, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}



#progress-bar {
  width: 100%;
  height: 20px;
  background-color: #eee;
  position: relative;
  margin-bottom: 1em;
  border-radius: 10px;
  overflow: hidden;
}

#progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: var(--donategoal-bar-progress-bg);
  transition: width 1.5s ease-out;
}


#progress-bar.visible::before {
  width: var(--bar-width, 0%);
}




.donategoal .donate-stats {
  padding-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 21px;
}


.donategoal .updateintervalinfo {
  margin-top: 1rem;
  font-size: clamp(1rem, 5vw, 1rem);
  text-align: center;
}



.donation-options {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #58727b;
  color: white
}

.donation-options h1 {
  margin-bottom: 3rem;
}

.donation-options .donation-options-item {
  max-width: 22rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-height: 100%;
}

.donation-options-item img,
.donation-options-item svg,
.donation-options-icon {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.donation-options-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.donation-options-icon i {
  font-size: 2rem;
  color: #0d6efd;
}

.donation-options p {
  font-size: 1rem;
  line-height: 1.5;
}

.donation-options a {
  color: black;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .donation-options .row>div {
    margin-bottom: 2rem;
  }

  .donation-options .donation-options-item {
    max-width: 100%;
  }
}




.slideshow-header {
  margin-top: 3rem;
  font-size: clamp(2rem, 5vw, 2rem);
  text-align: center;
}


@media (max-width: 600px) {
  .slideshow-header {
    margin-top: 3rem;
    font-size: clamp(1.1rem, 5vw, 1.1rem);
    font-weight: 600;
    text-align: center;
  }
}


.carousel-slideshow-container {
  max-width: 900px;
  width: 90%;
  position: relative;
  margin: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.carousel-slide {
  display: none;
}

.carousel-active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.carousel-caption {
  text-align: center;
  padding: 10px 15px;
  font-size: 1.2em;
  background-color: rgba(63, 63, 63, 0.7);
  color: white;
  border-radius: 0 0 8px 8px;
  max-width: 100%;
  margin: 0 auto;
}

/*code to move captions below the images. if used; remove .carousel-caption from @media for mobile*/
/* .carousel-caption {
  position: static;
  background-color: transparent;
  color: #333;
  padding: 10px 0 0 0;
  font-size: 1.2em;
  text-align: center;
  border-radius: 0;
  max-width: 100%;
  margin: 0 auto 20px auto;
} */

.carousel-prev,
.carousel-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 18px 22px;
  margin-top: -25px;
  color: white !important;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 24px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.carousel-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.carousel-prev {
  left: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


@media (max-width: 600px) {
  .carousel-slideshow-container {
    max-width: 100%;
    width: 95%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .carousel-caption {
    position: static;
    background-color: #f8f8f8;
    color: #333;
    border-radius: 6px;
    padding: 10px 15px;
    margin: 10px auto 20px auto;
    max-width: 700px;
  }

  .carousel-prev,
  .carousel-next {
    font-size: 18px;
    padding: 8px 12px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}







.involved-parts-logos {
  position: relative;
  background-color: #343a40;
  padding: 5rem 0;
}

.involved-parts-logos:before {
  content: "";
  position: absolute;
  background-color: #1c375e;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: 0;
}

.involved-parts-logos .container {
  position: relative;
  z-index: 1;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  margin-bottom: 1rem;
}

.logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1;
}