@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

* {
  font-family: "Quicksand", sans-serif;
}

:root {
  --primary-color: #6a3508;
  --amber: #ffaa6c; /* Tangerine Orange */
  --amber-light: #ffbe8f; /* light shade */
  --amber-lighter: #ffe0c7; /* very light shade */
  --blue-color: #22355d;
  /* Brown */
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-amber {
  background-color: var(--amber) !important;
}

.bg-amber-light {
  background-color: var(--amber-light) !important;
}

.bg-amber-lighter {
  background-color: var(--amber-lighter) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-blue {
  color: var(--blue-color);
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* Background (shared by navbar + hero) */
.hero-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url("./images/banner.jpeg") center/cover no-repeat;
  color: #fff;
}

.hero-section {
  min-height: 100vh; /* allow content to expand */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-links {
  background: rgba(55, 63, 65, 0.8);
  padding: 0.2rem 1rem;
  border-radius: 0.5rem;
}
.nav-link:hover {
  text-decoration: underline;
}

/* Hero text */
.hero-content {
  padding-top: 6rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}

/* Bigger on large screens */
@media (min-width: 992px) {
  .hero-title {
    font-size: 4rem;
  }
  .hero-content h5 {
    font-size: 1.5rem;
  }
  .hero-content h6 {
    font-size: 1.25rem;
  }
  .hero-content {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

/* Stats cards */

.stats-card {
  border-radius: 1rem;
  text-align: center;
  padding: 1.5rem;
}

.latest-news {
  background-image: url("./images/latest-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.circle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%; /* perfect circle */
  background-color: #000; /* black */
  color: #fff; /* white text */
  font-weight: 600; /* bold letters */
}

.small-text {
  font-size: 16px !important;
}

.intro {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./images/roman-catholic.jpg");
  min-height: 70vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Keep text readable and centered */
.about-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 992px) {
  .intro {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .about-text {
    max-width: 90%;
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .intro {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .about-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* News Section */
.news-section h3 {
  font-weight: 600;
}

.news-item .news-img {
  width: 200px;
  height: auto;
}

.news-item p {
  line-height: 1.7;
}

.news-sidebar .form-control {
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
}

.sidebar-news-item img {
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .news-item .news-img {
    width: 100%;
  }
}

.overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
