/* General Styles */
body {
  font-family: Tahoma, Geneva, sans-serif;
  background: linear-gradient(to right, #e6e6e6, #f5f5f5);
  font-size: 14px;
  color: #333;
  transition: background 0.5s ease;
}

body p {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.5s ease;
}

.pkp_structure_head, .pkp_structure_page {
  background-color: #DCDCDC;
  border-bottom: 1px solid #BEBEBE;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease, border-bottom-color 0.5s ease;
}

.pkp_structure_head:hover, .pkp_structure_page:hover {
  background-color: #f0f0f0;
  border-bottom-color: #A9A9A9;
}

/* Typography */
.pkp_structure_main h1 {
  font-weight: 700;
  font-size: 24px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.pkp_structure_main h1:hover {
  color: #005c99;
  letter-spacing: 2px;
}

/* Links */
a {
  color: #003851;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: #4682B4;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.pkp_navigation_primary_row {
  background-color: #003851;
  text-align: left;
  padding-left: 15px;
  transition: background-color 0.3s ease;
}

#navigationPrimary a {
  font-size: 14px;
  color: #f2f2f2;
  font-weight: 400;
  text-transform: capitalize;
  transition: color 0.3s ease, transform 0.3s ease;
}

#navigationPrimary a:hover {
  color: #ffffff;
  transform: scale(1.05);
}

#navigationPrimary ul {
  background: #003851;
  transition: background-color 0.3s ease;
}

#navigationPrimary [aria-expanded="true"]:before {
  border-bottom-color: #005c99;
}

/* Sidebar */
.pkp_structure_sidebar {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pkp_structure_sidebar:hover {
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Footer */
.pkp_structure_footer_wrapper {
  background-color: #003851;
  color: #f2f2f2;
  padding: 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.pkp_structure_footer_wrapper a {
  color: #f2f2f2;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.pkp_structure_footer_wrapper a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Animations */
.pkp_block .title {
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  padding-bottom: 0.5em;
  position: relative;
  animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.pkp_structure_head img, .pkp_site_name .is_img img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkp_structure_head img:hover, .pkp_site_name .is_img img:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.obj_galley_link {
  font-weight: 700;
  text-transform: capitalize;
  background: #003851;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.obj_galley_link:hover {
  background-color: #4682B4;
  transform: translateY(-3px);
}

/* Breadcrumbs */
.cmp_breadcrumbs {
  text-transform: capitalize;
  font-size: 14px;
  color: #003851;
  transition: color 0.3s ease;
}

.cmp_breadcrumbs a {
  color: #4682B4;
  transition: color 0.3s ease;
}

.cmp_breadcrumbs a:hover {
  color: #005c99;
}
