/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 05 2026 | 10:57:55 */
/* ===== HOME PAGE ONLY ===== */
 
/* Smooth font rendering */
.home  *{*
  -webkit-font-smoothing: antialiased;
}
 
/ Navbar - glassmorphism effect */*
.home #sticky-header {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
  z-index: 9999;
  position: relative;
  transition: box-shadow 0.3s ease;
}
 
.home .sticky-wrapper {
  position: relative;
  z-index: 9999;
}
 
/ Logo - smooth scale on hover */*
.home .wp-block-group.is-layout-flex > figure.wp-block-image {
  margin: 0 !important;
  padding: 0 !important;
  transition: transform 0.3s ease;
}
 
.home .wp-block-group.is-layout-flex > figure.wp-block-image:hover {
  transform: scale(1.08) rotate(-2deg);
}
 
/ Site title - gradient text */*
.home .wp-block-group.is-layout-flex > .wp-block-site-title {
  margin: 0 !important;
  padding: 0 !important;
}
 
.home .wp-block-site-title a {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-decoration: none !important;
  letter-spacing: -0.5px;
  transition: opacity 0.3s ease;
}
 
.home .wp-block-site-title a:hover {
  opacity: 0.75;
}
 
/ Logo + Title layout */*
.home .wp-block-group.alignwide.is-layout-flex {
  gap: 12px !important;
  justify-content: flex-start !important;
  align-items: center !important;
}
 
/ Nav pushed to right */*
.home .wp-block-navigation {
  margin-left: auto !important;
}
 
/ Nav links - animated underline on hover */*
.home .wp-block-navigation-item__content {__
  position: relative;
  color: #1a1a2e !important;
  font-size: 15px !important;
  letter-spacing: 0.3px;
  padding-bottom: 4px !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
 
.home .wp-block-navigation-itemcontent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0f3460, #e94560);
  border-radius: 2px;
  transition: width 0.3s ease;
}
 
.home .wp-block-navigation-item__content:hover::after,__
.home .wp-block-navigation-item.current-menu-item .wp-block-navigation-itemcontent::after {
  width: 100%;
}
 
.home .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content {
  color: black !important;
}
 
/ Push image below navbar */
.home .wp-block-cover {
  margin-top: 82px;
}

/* ===== HOME PAGE ONLY ===== */
 
/* Group logo and site title together */
.home .wp-block-group.is-layout-flex > figure.wp-block-image,
.home .wp-block-group.is-layout-flex > .wp-block-site-title {
  margin: 0 !important;
  padding: 0 !important;
}
 
.home .wp-block-group.alignwide.is-layout-flex {
  gap: 10px !important;
  justify-content: flex-start !important;
}
 
/* Keep nav pushed to the right */
.home .wp-block-navigation {
  margin-left: auto !important;
}
 
/* Fix sticky header overlap */
.home .sticky-wrapper {
  position: relative;
  z-index: 9999;
}
 
.home #sticky-header {
  background-color: #ffffff;
  color:black;
  z-index: 9999;
  position: relative;
}
 
/* Push image/content below navbar */
.home .wp-block-cover {
  margin-top: 82px;
}
 
/* ===== ALL PAGES - Fix white text on nav links ===== */
.wp-block-navigation-item__content {__
  color: #1a1a2e !important;
}
 
.wp-block-navigation-itemcontent:hover {
  color: #0f3460 !important;
}
 
.wp-block-site-title a {
  color: #1a1a2e !important;
  text-decoration: none !important;
}