@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&family=Dangrek&display=swap');



.finisher-header {
    position: relative;
    width: 100%;
    min-height: 150vh !important;
    overflow: hidden;
}


/*                         Donate Button                        */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  
  /* CSS */
  .button-82-pushable {
    font-family: "Fredoka", sans-serif;
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .button-82-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
  }
  
  .button-82-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      to left,
      hsl(340deg 100% 16%) 0%,
      hsl(340deg 100% 32%) 8%,
      hsl(340deg 100% 32%) 92%,
      hsl(340deg 100% 16%) 100%
    );
  }
  
  .button-82-front {
    display: block;
    position: relative;
    padding: 12px 27px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
  }
  
  @media (min-width: 768px) {
    .button-82-front {
      font-size: 1.25rem;
      padding: 12px 42px;
    }

    .finisher-header{
        height:fit-content !important;
        width: 100%;
        }
  }
  
  .button-82-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
  }
  
  .button-82-pushable:hover .button-82-front {
    transform: translateY(-6px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
  }
  
  .button-82-pushable:active .button-82-front {
    transform: translateY(-2px);
    transition: transform 34ms;
  }
  
  .button-82-pushable:hover .button-82-shadow {
    transform: translateY(4px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
  }
  
  .button-82-pushable:active .button-82-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
  }
  
  .button-82-pushable:focus:not(:focus-visible) {
    outline: none;
  }

/*                         Donate Button                        */

  
/*                         Cards                        */
  
  .card-icons {
    margin-top: 1rem;
    font-size: 2rem;
    color: #000000;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  



/*                      END   Cards                        */



/*                      Donate                        */
.donate-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
.donate-modal-content {
  background: white;
  padding: 2rem;
  padding-left: 3.2rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.donate-modal-content > * {
  margin-bottom: 1rem;
  max-width: 100%;
}

  

  
  .modal-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }
  
  
  






/* Full-width bubble container aligned left */
.section-bubble.left-align {
    margin-left: 0;
    margin-right: auto;
    padding-left: 5rem !important;
    padding-right: 5rem !important;
    border-radius: 0 50px 50px 0;
}

/* Full-width bubble container aligned right */
.section-bubble.right-align {
    margin-left: auto;
    margin-right: 0;
    padding-left: 5rem !important;
    padding-right: 5rem !important;
    border-radius: 50px 0 0 50px;
}


.section-bubble {
    background: #fff8f063;
    padding: 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 95%;
    max-width: 1200px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 80px;
    margin-top: 80px;
}


.section-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.section-content .text,
.section-content .image {
    flex: 1 1 45%;
}
.section-content .image-donate img {
    width: 100%;
    border-radius: 35% 65% 49% 51% / 65% 37% 63% 35%;
    object-fit: cover;
}

.section-content .image-volunteer img {
    width: 100%;
    border-radius: 49% 51% 69% 31% / 52% 43% 57% 48%;
    object-fit: cover;
}

.section-content .image-wishlist img {
    width: 100%;
    border-radius: 43% 57% 52% 48% / 70% 26% 74% 30%;
    object-fit: cover;
}

.alternate-section.left .section-content {
    flex-direction: row;
}

.alternate-section.right .section-content {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .section-content {
        flex-direction: column !important;
    }
    .section-content .text,
    .section-content .image {
        flex: 1 1 100%;
    }
}

.video-section video {
    width: 40%;
    height: 80% !important;
    max-width: 640px;
    border-radius: 20px;
}

  

  




#contact-header {
    height: 70vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-image: url('/images/home_cats.jpg');
    background-position: center;
}


.hero-slider-passenger{
    height: 100%;
    width: 100%;
}


.overlay-text {
    text-align: center;
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.4);
    padding: 25px;
    border-radius: 12px;
}


.volunteer-section {
    background-color: #fff8f0;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.volunteer-section h2,
.volunteer-section h3 {
    color: #cc6600;
}




.section-p1 .contact-text {
    text-align: center;
    color: rgb(0, 0, 72);
    letter-spacing: 0.8px;
    padding: 40px;
}


/* Contact Page */
#contact-details {
    max-width: 1800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px 40px;
}


#contact-details .details {
    color: black;
    padding: 40px 0;
    border: 0;
    max-width: 1800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


#contact-details .details span,
#form-details span {
    font-size: 12px;
}


#contact-details .details h1 {
    font: bold 200px arial, sans-serif;
    background-color: #6a3212;
    color: transparent;
    text-shadow: 2px 2px 3px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
       -moz-background-clip: text;
            background-clip: text;
    font-size: 30px;
    line-height: 35px;
    padding: 5px 0;
    text-align: center;
    width: 100%;
}




#contact-details .details li {
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 0;
}




#contact-details .details li i {
    font-size: 14px;
    padding-right: 22px;
}


#contact-details .details li p {
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
}


#contact-details .map {
    width: 55%; /* Takes 55% of the container */
    margin: 0; /* Remove any extra margin */
    padding: 10px 0;
}


#contact-details .map iframe {
    width: 100%;
    height: 450px;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}






@media (max-width: 799px) {
    .section-p1 .contact-text {
        padding: 5px;
    }


    #contact-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    #contact-details .details {
        align-items: flex-start;
        text-align: left;        
        padding-left: 20px;      
    }


    #contact-details .details li {
        justify-content: flex-start; /* ← aligns icon + text left */
    }


    #contact-details .details li p {
        margin-top: 5px;
    }


    #contact-details .details,
    #contact-details .map {
        width: 100% !important;
    }


    #contact-details .map {
        margin-top: 20px;
    }


    #contact-details .map iframe {
        height: 300px;
        padding-bottom: 10px;
    }
}






@media (max-width: 480px) {
    #contact-details .details {
        align-items: flex-start;
        text-align: left;
        padding-left: 15px;
    }


    #contact-details .details li {
        justify-content: flex-start;
    }


    #contact-details .details,
    #contact-details .map {
        width: 100% !important;
    }


    #contact-details .map {
        margin-top: 20px;
    }


    #contact-details .map iframe {
        height: 300px;
    }
}