/*==============================
  Global Styles
==============================*/
:root {}

body {
  /* font-family: "Dosis", sans-serif; */
}

/*==============================
  Image Containers
==============================*/

/* Common image container styles */
.wel_img_div,
.event_img_div,
.card-img-container,
.two_col_img_div,
.two_col_shot_img_div,
.three_col_img_div,
.four_col_contain_img_div,
.three_col_img_div_contain {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wel_img_div,
.event_img_div {
  height: 500px;
  border-radius: 8px;
  background: white;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 1;
}

.event_img_div {
  height: 400px;
}

.card-img-container {
  height: 400px;
}

.two_col_img_div {
  height: 250px;
}

.two_col_shot_img_div,
.three_col_img_div,
.four_col_contain_img_div,
.three_col_img_div_contain {
  height: 250px;
}

/* Image element styling */
.wel_img_div img,
.event_img_div img,
.card-img-container img,
.two_col_img_div img,
.two_col_shot_img_div img,
.three_col_img_div img,
.four_col_contain_img_div img,
.three_col_img_div_contain img {
  width: 100%;
  height: 100%;
  transition: transform 1s ease;
}

.wel_img_div img,
.two_col_img_div img,
.two_col_shot_img_div img,
.card-img-container img {
  object-fit: cover;
  object-position: top;
}

.event_img_div img {
  object-fit: contain;
}


.four_col_contain_img_div img {
  object-fit: contain;
  object-position: top;
}

.three_col_img_div_contain img {
  object-fit: contain;
}

.three_col_img_div img {
  object-fit: contain;
  /* Commented as per original */
}


/*==============================
  Carousel Navigation
==============================*/
.carousel_nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  display: flex;
  gap: 15px;
}

.carousel_arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(12, 130, 192, 0.2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.carousel_arrow:hover {
  background: #0C82C0;
  transform: translateY(-3px);
}

.carousel_arrow:hover .carousel_icon {
  fill: white;
}

.carousel_icon {
  width: 20px;
  height: 20px;
  fill: #0C82C0;
  transition: all 0.3s ease;
}


/*==============================
  Icon & Circle Image Styles
==============================*/
.icon-container,
.rounded-circle-icon_size {
  width: 40px;
  height: 40px;
}

.rounded-circle-icon_size-5 {
  width: 45px;
  height: 45px;
}

.rounded-circle-image {
  width: 200px;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  /* Prevent resizing in flex container */
}


/*==============================
  Background Utilities
==============================*/
.bg-custome-light {
  background: #F1F1F0 !important;
}


/*==============================
  Utility Classes
==============================*/
.content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-pink{
  color: #DD3FA0 !important;
}

/*==============================
  Button Classes
==============================*/
.btn-custom-pink {
  background-color: #DD3FA0;
  color: #fff;
}

.btn-custom-pink:hover{
  background-color: #DD3FA0;
  color: #fff;
  transform: translateY(-2px);
}

  .donation-amounts {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

 .donation-amount-btn {
    flex: 1;
    min-width: 80px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #333;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .donation-amount-btn:hover, .donation-amount-btn.active {
    border-color: #d63384;
    background-color: rgba(214, 51, 132, 0.1);
    color: #d63384;
  }

/*==============================
  Background Classes
==============================*/
.bg-pink{
    background-color: #DD3FA0 !important;
}

.bg-custom-gray{
  background-color: #EDEDED !important;
}