/* ------------------------------------------------------
   BenCode Studio — Global Theme Styles
   Light Mode Branding
------------------------------------------------------ */
/* Prevent frontend dark mode from affecting Gutenberg editor */
body.wp-admin {
    background: auto !important;
    color: inherit !important;
}
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #8b5cf6, #6a1b9a);
  z-index: 2000;
  transition: width 0.1s ease;
}

/* ------------------------------------------------------
   Header
------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.site-branding {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 700;
  font-size: 20px;
}

/* ------------------------------------------------------
   Hero Section
------------------------------------------------------ */

.hero-section {
  padding: 120px 0;
  background: #fafafa;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--purple);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 20px;
  color: #555;
}

/* ------------------------------------------------------
   Footer
------------------------------------------------------ */

.site-footer {
  background: #fafafa;
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: 80px;
}

.site-credit {
  font-size: 0.9rem;
  color: #777;
  margin-top: 4px;
}

/* ------------------------------------------------------
   Navigation
------------------------------------------------------ */

.site-nav {
  display: flex;
}

.primary-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.primary-menu li a {
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
}

.primary-menu li a:hover {
  color: var(--purple);
}
