/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.fade-in-title, .fade-in-subtitle {
  opacity: 0;
  animation: fadeIn 3.0s ease-in forwards;
}
.fade-in-title {
  animation-delay: 0.2s;
}
.fade-in-subtitle {
  animation-delay: 0.8s;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.contact-intro {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 24px rgba(32, 201, 151, 0.07);
  padding: 2rem 2.5rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  color: #343a40;
  font-size: 1.15rem;
  line-height: 1.7;
}
.contact-intro p:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: #ff0000;
}

@media (max-width: 767.98px) {
  #about .row .col-md-6.col-xl-7 .row.g-3 > div {
    max-height: none !important;
  }
}

.news-card {
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
}

.news-card:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(32,201,151,0.12), 0 1.5px 6px rgba(0,0,0,0.08);
  z-index: 2;
}

.news-card-img-top {
  height: 210px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}

.news-article-container {
  max-width: 1100px;
}

.news-article-share-buttons {
  top: 35%; 
  left: 1rem; 
  min-width: 48px; 
  width: 48px; 
  height: fit-content;
  flex-shrink: 0;
  position: fixed; 
  z-index: 1050;
}

.news-article-share-button {
  width: 35px;
}

.news-article-image {
    border-radius: 0.5rem;
    box-shadow: 0 4px 24px rgba(32, 201, 151, 0.10);
    background: #fff;
    max-height: 650px;
    height: auto;
    margin: 1.2rem 1.2rem 0 0;
    display: inline-block;
    vertical-align: top;
    transition: box-shadow 0.2s, transform 0.2s;
    box-sizing: border-box;
    object-fit: cover;
}

@media (max-width: 767.98px) {
  .news-article-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-right: 0;
    margin-left: 0;
    display: block;
  }
}

.news-article-image:hover {
    box-shadow: 0 8px 32px rgba(32,201,151,0.18), 0 1.5px 6px rgba(0,0,0,0.10);
    transform: scale(1.03);
}

/* Add margin between images that are next to each other */
.news-article-image + .news-article-image {
    margin-left: 0;
    margin-right: 1.2rem;
}

.news-article-video {
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(32, 201, 151, 0.10);
  background: #fff;
  max-height: 650px;
  max-width: 100%;
  height: auto;
  margin: 1.5rem 1.2rem 1.5rem 0;
  display: inline-block;
  vertical-align: top;
}

/* Add margin between adjacent videos */
.news-article-video + .news-article-video {
  margin-left: 0;
  margin-right: 1.2rem;
}

/* Responsive: stack on small screens */
@media (max-width: 767.98px) {
  .news-article-video {
    display: block;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
  }
}

.btn-outline-facebook {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}