body {
  font-family: "Noto Sans", sans-serif;
}

.vh-85{
    height: 85vh!important;
}

.vh-75{
    height: 75vh!important;
}

.vh-50{
    height: 50vh!important;
}

.vh-25{
    height: 25vh!important;
}


.min-vh-85{
  min-height: 85vh!important;
}

.min-vh-75{
  min-height: 75vh!important;
}

.min-vh-50{
  min-height: 50vh!important;
}

.min-vh-25{
  min-height: 25vh!important;
}


.loading-screen{
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(249,249,251, 0.75);
}

.custom-nav {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(249,249,251, 0.75);
}

.custom-bg {
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(191,208,231, 0.75);
}

.frost-background {
  background-color: rgba(249,249,251, 1);
}

.gray-frost-background {
  background-color: rgba(215,217,229, 1);
}

.blue-frost-background {
  background-color: rgba(191,208,231, 1);
}


.shimmer {
  color: grey;
  display: inline-block;
  mask: linear-gradient(-60deg, #000 30%, #0005, #000 70%) right/350% 100%;
  animation: shimmer 2.5s infinite;
  font-size: 50px;
  max-width: 200px;
}

@keyframes shimmer {
  100% {
    mask-position: left;
  }
}


.dropdown-desktop{
  padding:0rem;
}

.dropdown-desktop-item{
  padding: 1.0rem;
}


.main-carousel-image{
  object-fit: cover;
  object-position: center;
}

.main-carousel-card {
  width: 75%;
}

.main-carousel-subimage{
  height: 128px;
  width: 128px;
  padding: 20px;
}

.main-carousel-subtext{
  margin-top: 10px;
  font-size: 1.3rem;
}

.main-carousel-button{
  top:35%;
  left:30%;
}

.hover-zoom{
  position: relative;
  overflow: hidden;
}

.hover-zoom:hover .hover{
  transform:scale(1.15);
	transition:1s;
}

.hover{
  transition: 1s;
}

.inverted{
  filter:invert(100%);
}


.cross {
  opacity: 0.1;
  width: 100px;
  height: 100px;
}

.prepare-card{
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(240,240,240,0.3) 100%);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border-top: 4px solid #8B0000;
  width: 75% !important;
}


.content-container {
  padding: 3rem;
}

.page-image{
  width: 100% !important;
  height:52vh !important;
}

.contact-map{
  width: 100% !important;
  height: 50vh;
}

.nav-accordion-btn{
  width: 60px !important;
  background-color: transparent !important;
  border-bottom: transparent;
  box-shadow: none !important;
}

.nav-accordion-item{
  background-color: transparent !important;
  border-bottom: transparent;
}


.zoom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .4s ease;
}

.zoom-img:hover {
  transform: scale(1.2);
}



.custom-card{
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.custom-card-img-wrapper {
  overflow: hidden;
  position: relative;
  padding-top: 80%; /* 4:3 aspect ratio */
}
.custom-card-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.custom-card:hover .custom-card-img-top {
  transform: scale(1.1);
}
.custom-card-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.custom-card-title {
  color: white;
  font-weight: normal;
  transition: font-weight 0.3s ease;
}
.custom-card:hover .custom-card-title {
  font-weight: bold;
}

.masonry-card {
  margin-bottom: 1rem;
  break-inside: avoid;
}
.masonry-container {
  columns: 1;
  column-gap: 1rem;
}
@media (min-width: 576px) {
  .masonry-container {
      columns: 2;
  }
}
@media (min-width: 992px) {
  .masonry-container {
      columns: 3;
  }
}
@media (min-width: 1200px) {
  .masonry-container {
      columns: 4;
  }
}


.countdown-section {
  text-align: center;
  background:url("../../media/page_asset/consecration.jpg");
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
}

.countdown-box {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
}
.time-segment {
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1;
  margin: 10px 0;
}
.time-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}
.title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}


.required-field::after {
  content: "*";
  color: red;
  margin-left:2px
}


.masonry-gallery {
  columns: 1;
  column-gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .masonry-gallery {
      columns: 2;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  border-radius: 0.375rem;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}




.fullscreen-modal {
  background: rgba(0, 0, 0, 0.95);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fullscreen-modal.active {
  display: flex;
}

.modal-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.sliding {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.sliding img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1060;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1060;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

.image-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  z-index: 1060;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 15px;
  border-radius: 20px;
}



@media(max-width:768px){

  .main-carousel{
    height:45vh !important;
  }

  .main-carousel-image{
    height: 75% !important;
  }

  .main-carousel-card{
    border-radius: 0px;
    width: 100% !important;
  }

  .main-carousel-card-body{
    padding: 4px !important;
  }

  .main-carousel-subimage{
    height: 64px;
    width: 64px;
    padding: 0px !important;
  }

  .main-carousel-subtext{
    margin-bottom: 0px !important;
    font-size: 0.66rem;
  }

  .main-carousel-button{
    top:0%;
    left:0%;
    font-size: 0.85rem;
  }

  .prepare-card{
    width: 100% !important;
  }

  .content-container {
    padding: 1.5rem;
  }

  .page-image{
    width: 100% !important;
    height:25vh !important;
  }

  .contact-map{
    width: 100% !important;
    height: 35vh;
  }
  
  .footer-content {
    text-align: center !important;
  }

  .spc-youth-vm {
    width: 100% !important;
  }

  .spc-youth-value {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}


@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn ease 1s;
  }
  
  .dropdown:hover .dropdown-toggle::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-toggle.show::after {
    border-top: 0;
    border-bottom: 0.3em solid;
  }
}



.fundraising {
    margin-top: 18%;
    margin-left: 50%;
    height: 50px;
    width: 80% !important;
}

.fundraising-text{
  font-size: 0.85rem;
  width: 100px;
}

.fundraising-text-center{
  font-size: 0.85rem;
}

.musical-text{
  margin-top: 235px; 
  margin-left:18px; 
  font-size:0.9rem;
}

@media (min-width: 992px) {

  .fundraising-text{
    font-size: 1.2rem;
    width: 140px;
  }

  .fundraising-text-center{
    font-size: 1.2rem;
  }
}



@media (max-width: 700px) {

  .fundraising {
    margin-top: 20%;
    margin-left: 50%;
    height: 50px;
    width: 80% !important;
  }

  .fundraising-text-center{
    font-size: 0.55rem;
  }

  .fundraising-text{
    font-size: 0.55rem;
    width: 65px;
  }

}


#canvases canvas {
  width: 100% !important;
}




/* Floating scroll indicator styles */
.scroll-indicator {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(41, 128, 185, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.scroll-indicator:hover {
  background-color: rgba(41, 128, 185, 1);
  transform: translateX(-50%) scale(1.1);
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Floating animation */
@keyframes float {
  0% {
      transform: translateX(-50%) translateY(0px);
  }
  50% {
      transform: translateX(-50%) translateY(-10px);
  }
  100% {
      transform: translateX(-50%) translateY(0px);
  }
}

.floating {
  animation: float 2s ease-in-out infinite;
}

/* For demo purposes - tracking scroll position */
.scroll-tracker {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  z-index: 1000;
}
