:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;
  --footer-bg-color: #0d0d0d;
  --link-color: #3f5e5b;
  --header-bg-color: #ffffff;
  --font-family: 'Candara', Arial, sans-serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}
h2, h3 {
  color: var(--heading-color) ;
}
.content-area a {
  color: var(--link-color) ;
  text-decoration: underline;
}
.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}
      .sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}
.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}
.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}
.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}
.sidebar-page-list li a:hover {
  padding-left: 11px;
}
      .twitter-tweet {
  width: 279px !important;
}
.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}
.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 1.9rem 19px;
  text-align: center;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-links {
  display: flex;
  gap: 15px;
}
.footer-links a {
  color:white;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
 a {
    color: white;
    text-decoration: underline;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-divider {
  border: none;
  height: 1px;
  margin: 1.5rem auto;
  width: 60%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--link-color),
    transparent
  );
  opacity: 0.5;
}
.footer-bottom {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}
 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.hero-section {
  padding: 155px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}
.hero-section.with-bg {
  background-image: url('/images/california-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 30px;
  }
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }
  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    margin: 7px 0;
  }
  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }
  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }
  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}
.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}
.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}
.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}
.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
.dropdown.open .dropdown-menu {
  display: block;
}
@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }
  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
  .wiki-informative-section{
    --ink:#26292d;           
    --muted:#5b6673;         
    --paper:#ffffff;         
    --canvas:#f4f6f8;        
    --line:#d9e0e7;          
    --accent:#2b3a4a;        
    --accent-2:#4b647a;      
    position: relative;
    color: var(--ink);
    background: var(--canvas);
    overflow: hidden;
    padding: clamp(2.5rem, 4vw, 4rem) 0;
  }
  .wiki-informative-section::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:
      radial-gradient(900px 420px at 12% 10%, rgba(43,58,74,.10), transparent 55%),
      radial-gradient(780px 380px at 88% 24%, rgba(75,100,122,.08), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,0));
    pointer-events:none;
  }
  .wiki-informative-section::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.55;
    background-image:
      linear-gradient(to right, rgba(38,41,45,.06) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(38,41,45,.06) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(closest-side at 50% 35%, rgba(0,0,0,.9), rgba(0,0,0,.25) 60%, transparent 78%);
  }
  .wiki-informative-wrap{
    position: relative;
    z-index: 1;
  }
  .wiki-title{
    font-weight: 750;
    letter-spacing: .2px;
    color: var(--accent);
    margin-bottom: .75rem;
  }
  .wiki-title-rule{
    height: 4px;
    width: 88px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--accent), rgba(43,58,74,.15));
    margin: .75rem 0 1.25rem;
  }
  .wiki-lead{
    color: var(--muted);
    line-height: 1.75;
    max-width: 78ch;
  }
  .box-one{
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.1rem;
    box-shadow:
      0 10px 24px rgba(38,41,45,.06),
      0 2px 8px rgba(38,41,45,.05);
    height: 100%;
    position: relative;
  }
  .box-one::before{
    content:"";
    position:absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 4px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(90deg, rgba(43,58,74,.95), rgba(75,100,122,.35));
  }
  .box-icon{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-top: .35rem;
    margin-bottom: .7rem;
    border: 1px solid rgba(43,58,74,.18);
    background:
      radial-gradient(24px 24px at 30% 30%, rgba(43,58,74,.18), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.9), rgba(244,246,248,.9));
    color: var(--accent);
  }
  .box-icon i{
    font-size: 1.25rem;
    line-height: 1;
  }
  .box-one h3{
    font-size: 1.15rem;
    margin-bottom: .65rem;
    color: var(--ink);
    font-weight: 750;
  }
  .box-one p{
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: .9rem;
  }
  .box-one p:last-child{ margin-bottom: 0; }
  .box-divider{
    height: 1px;
    background: linear-gradient(90deg, rgba(217,224,231,1), rgba(217,224,231,0));
    margin: .35rem 0 .9rem;
  }
.informative-section{
  --ink:#1f2a33;
  --muted:#5f6b77;
  --paper:#ffffff;
  --canvas:#f3f5f7;
  --line:#d8dee6;
  --accent:#2c3e50;
  position: relative;
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--canvas);
  color: var(--ink);
  overflow: hidden;
}
.informative-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(31,42,51,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,42,51,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity:.5;
  pointer-events:none;
}
.informative-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 400px at 10% 0%, rgba(44,62,80,.08), transparent 60%),
    radial-gradient(700px 350px at 90% 20%, rgba(44,62,80,.06), transparent 65%);
  pointer-events:none;
}
.informative-section > *{
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.informative-section h2{
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--accent);
  line-height: 1.3;
  border-left: 5px solid var(--accent);
  padding-left: 1rem;
}
.informative-section h3{
  font-size: 1.25rem;
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}
.informative-section h3::after{
  content:"";
  display:block;
  width:70px;
  height:2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin-top:6px;
}
.informative-section p{
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.informative-section a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(44,62,80,.4);
  transition: border-color .2s ease, color .2s ease;
}
.informative-section a:hover{
  color: #000;
  border-color: var(--accent);
}
.informative-section h3 + p{
  margin-top: .5rem;
}
.informative-section{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 12px 30px rgba(31,42,51,.05);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter{
  --ink:#1f2a33;
  --muted:#5f6b77;
  --paper:#ffffff;
  --canvas:#f3f5f7;
  --line:#d8dee6;
  --accent:#2c3e50;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1rem;
  box-shadow:
    0 10px 22px rgba(31,42,51,.06),
    0 2px 7px rgba(31,42,51,.05);
  position: relative;
  overflow: hidden;
}
.newsletter::before{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 4px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(90deg, rgba(44,62,80,.95), rgba(44,62,80,.25));
}
.newsletter__head{
  padding-top: .2rem;
  margin-bottom: .9rem;
}
.newsletter__title{
  margin: 0 0 .25rem 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--ink);
}
.newsletter__desc{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.newsletter__form{
  margin: 0;
}
.newsletter__label{
  display: block;
  font-size: .9rem;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: .45rem;
}
.newsletter__row{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
  align-items: center;
}
.newsletter__input{
  width: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(243,245,247,.9));
  border-radius: 12px;
  padding: .7rem .8rem;
  color: var(--ink);
  outline: none;
  font-size: .95rem;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.newsletter__input::placeholder{
  color: rgba(95,107,119,.75);
}
.newsletter__input:focus{
  border-color: rgba(44,62,80,.55);
  box-shadow:
    0 0 0 .18rem rgba(44,62,80,.14),
    inset 0 1px 0 rgba(255,255,255,.7);
}
.newsletter__btn{
  border: 1px solid rgba(44,62,80,.25);
  background: linear-gradient(180deg, rgba(44,62,80,.9), rgba(44,62,80,.75));
  color: #fff;
  border-radius: 12px;
  padding: .7rem .95rem;
  font-weight: 750;
  font-size: .95rem;
  letter-spacing: .2px;
  cursor: not-allowed; 
  opacity: .55;        
  box-shadow:
    0 10px 18px rgba(31,42,51,.12),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.newsletter__note{
  margin: .65rem 0 0 0;
  font-size: .85rem;
  color: rgba(95,107,119,.9);
  line-height: 1.5;
  border-top: 1px dashed rgba(216,222,230,.9);
  padding-top: .65rem;
}
.newsletter{
  background:
    radial-gradient(240px 160px at 18% 10%, rgba(44,62,80,.06), transparent 55%),
    radial-gradient(220px 140px at 92% 30%, rgba(44,62,80,.045), transparent 60%),
    var(--paper);
}
  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  