/* ========================================
   PGC 2025 Main Stylesheet
   ======================================== */
/* ========================================
   Header Styles
   ======================================== */
.header_bar {
  height: 100px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 1110px) {
  .header_bar {
    height: 80px;
  }
}

.headerLogo {
  float: left;
}

.headerLogo .logo {
  width: 190px;
}

/* Responsive adjustments */
@media screen and (max-width: 1110px) {
  .headerLogo img {
    margin-top: 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .headerLogo .logo {
    width: 190px;
  }
}
/* ========================================
   Navigation Styles
   ======================================== */
/* Mobile Sidebar Styles */
.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.mobile-sidebar.active {
  right: 0;
}
.mobile-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4ecca2;
}
.mobile-sidebar-header h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.mobile-sidebar-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}
.mobile-sidebar-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.mobile-sidebar-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile-sidebar-menu li {
  border-bottom: 1px solid #f0f0f0;
}
.mobile-sidebar-menu li:last-child {
  border-bottom: none;
}
.mobile-sidebar-menu a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-sidebar-menu a:hover {
  background-color: #f8f8f8;
  color: #4ecca2;
}
.mobile-sidebar-menu .current-menu-item a {
  background-color: #f0f8f5;
  color: #4ecca2;
  font-weight: 600;
}

/* Mobile hamburger button improvements */
button#menu-hamburger {
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 10000;
  background: none !important;
  display: none;
}
button#menu-hamburger:hover {
  background: none !important;
}
button#menu-hamburger .hamburger-inner {
  transition: background-color 0.2s ease;
}
button#menu-hamburger .hamburger-inner::before {
  transition: background-color 0.2s ease;
}
button#menu-hamburger .hamburger-inner::after {
  transition: background-color 0.2s ease;
}
button#menu-hamburger.is-active .hamburger-inner {
  background-color: white !important;
}
button#menu-hamburger.is-active .hamburger-inner::before {
  background-color: white !important;
}
button#menu-hamburger.is-active .hamburger-inner::after {
  background-color: white !important;
}

/* Show hamburger menu at 1110px and lower */
@media screen and (max-width: 1110px) {
  button#menu-hamburger {
    display: block;
  }
}
/* Prevent body scroll when sidebar is open */
body.sidebar-open {
  overflow: hidden;
}

/* Desktop Navigation Styles */
.header_menu {
  margin-left: 240px;
  padding-top: 15px;
}

.nav-menu {
  margin-top: 10px;
}

.menu-item {
  float: left;
  padding-right: 30px;
}
.menu-item a {
  color: gray;
  transition: opacity 0.2s ease;
}
.menu-item a:hover {
  color: gray;
  opacity: 0.8;
}
.menu-item a:active, .menu-item a:visited {
  color: gray;
}

.current-menu-item a {
  color: #ccc !important;
}

/* Hide site navigation at 1110px and smaller */
@media screen and (max-width: 1110px) {
  #site-navigation {
    display: none !important;
  }
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .header_menu {
    margin-left: 0;
    padding-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .mobile-sidebar {
    width: 280px;
    right: -280px;
  }
}
