@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

:root {
  --header-font: 'Patrick Hand';
  --body-font: 'Poppins';
  --primary-color: #F7A234;
  --secondary-color: rgb(36, 171, 160);
  --page-background: #f8f4f4;
}

/* general styles */
/* body {
  background-color: var(--page-background);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
} */


/* Hero section */
.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgb(36, 171, 160, 0.7)),
    url('../img/community/images/hero_image.jpg');
   
  background-size: cover;
  background-position: center center;
  height: 450px;
}

.hero-btn {
  padding: 10px 15px;
  background-color: var(--primary-color);
  font-family: var(--body-font);
  border: none;
  border-radius: 20px;
  color: white;
  font-family: Poppins;
  font-weight: 600;
}

.hero-1,
.hero-0 {
  color: white;
}

.hero-0 {
  font-family: var(--body-font);
}

.hero-1 {
  font-family: 'Patrick Hand';
}


.provider-text {
  font-family: var(--body-font);
}

.provider-text-header {
  font-family: 'Patrick Hand';
  margin-top: -20px;
  color: var(--primary-color);
}

.provider-intro {
  font-family: var(--body-font);
}


.provider-card {
  width: 100%;
  /* max-width: 260px; */
  height: 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: var(--body-font);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.provider-img-wrapper {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.provider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.provider-hours {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--secondary-color);
  color: white;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.color-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: gray;
}

.color-indicator.active {
  background-color: #28a745;
}

.provider-name {
  font-family: 'Patrick Hand', cursive;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.provider-title {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #6c757d;
}

.provider-details {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  flex-grow: 1;
}

.provider-contact {
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: auto;
}

/* NEWS ARTICLE SECTION */
.news-art-head {
  font-family: var(--header-font);
  font-weight: 400;
  line-height: 10%;
  color: var(--primary-color);
}

.news-art-subhead {
  font-family: var(--body-font);
  font-weight: 500;
}

/* .right-arrow,
.left-arrow {
  width: 45;
  height: 45;
  border-radius: 40px;
  padding: 10px;
  gap: 10px;
  border: 1px solid var(--secondary-color);

}

.right-arrow {
  background-color: var(--secondary-color);
  margin-left: 10px;

} */

.news-art-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 280px;
  margin-bottom: 25px;
  background-color: white;
  border-radius: 8px;
  padding-bottom: 15px;
  overflow: hidden;
}

.news-art-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 185px !important;
  width: 100%;
  object-fit: cover;
  /* border: 2px red solid; */
}

.article-details {
  margin-top: -12px; /* pull slightly over the image */
  padding: 5px 10px;
  background: var(--primary-color);
  border-radius: 10px;
  text-align: center;
  color: white;
  font-family: var(--body-font);
  font-size: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.art-title {
  color: var(--primary-color);
  text-align: center;
  font-family: 'Patrick Hand';
  margin: 20px 0 5px;
}

.art-summary {
  font-family: var(--body-font);
  font-weight: 400;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 10px;
}

.art-date {
  padding: 0 5px;
  border-left: 2px solid;
  border-right: 2px solid;
  margin: 0 2px;
}

.support-title {
  font-family: var(--header-font);
  color: var(--primary-color);
}

.form-container {
  max-width: 540px !important;
}

input,
textarea {
  background: #f8f8f8 !important;
  resize: none;
}
