/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #1a3a5c;
  --secondary-color: #ffffff;
  --third-color: #5b8db8;
  --accent-color: #c8dff0;
  --text-color: #1a1f2e;
  --text-white: #ffffff;

  /* Extended palette */
  --primary-dark: #0f2340;
  --primary-light: #eef4fa;
  --border-color: #b0ccdf;
  --hover-bg: #f4f8fc;
  --shadow-color: rgba(26, 58, 92, 0.18);
}

.pkp_site_name_wrapper,
.pkp_site_name,
.pkp_site_name > a {
  padding: 0 !important;
}

.pkp_navigation_primary_row,
#navigationPrimary ul {
  background: var(--secondary-color);
}

.pkp_site_name .is_img img {
  max-height: 250px !important;
}

#navigationPrimary a,
.pkp_navigation_search_wrapper a,
#navigationPrimary ul a {
  color: var(--text-color);
}

#navigationPrimary li a,
a.pkp_search.pkp_search_desktop {
  background: var(--secondary-color);
}

/* =====================
   ABOUT SECTION
   ===================== */
.custom_about_section {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px var(--shadow-color);
  margin-bottom: 20px;
  text-align: justify;
  border-left: 4px solid var(--primary-color);
}

.custom_about_section h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-family: "Montserrat", sans-serif;
}

.custom_about_section p {
  margin-bottom: 10px;
  color: var(--text-color);
}

.custom_about_section ul {
  padding-left: 20px;
}

.custom_about_section li {
  margin-bottom: 8px;
  color: var(--text-color);
}

.custom_about_section a {
  color: var(--primary-color);
  text-decoration: none;
}

.custom_about_section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* =====================
   SIDEBAR
   ===================== */
.side-bar-header,
.pkp_block .title {
  display: block !important;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  color: var(--text-white);
  text-align: center;
  text-transform: uppercase;
  background-color: var(--primary-color);
  border-bottom: 3px solid var(--primary-dark) !important;
  border-radius: 4px 4px 0 0;
}

.side-bar-item {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.side-bar-item:last-child {
  border-bottom: none;
}

.side-bar-item:hover {
  background-color: var(--hover-bg);
}

.side-bar-item a {
  font-family: sans-serif;
  color: var(--text-color);
  text-decoration: none;
  display: block;
  padding: 14px 0px;
  transition: all 0.3s ease;
  font-size: 15px;
  text-transform: capitalize;
}

.side-bar-item a:hover {
  color: var(--primary-color);
  padding-left: 25px;
}

.side-bar-item em {
  width: 20px;
  margin-right: 10px;
  color: var(--third-color);
  text-align: center;
}

.side-bar-item:hover i {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}

/* =====================
   ARTICLE SUMMARY
   ===================== */
.obj_article_summary {
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 3px 3px var(--primary-color);
  transition: box-shadow 0.3s ease;
}

.obj_article_summary:hover {
  box-shadow: 3px 3px var(--primary-dark);
}
