:root {
  --primary-color: #c6f294; /*#d6f294 */
  --accent-color: #fc826d;    /*#E2725B  */
  --text-color: #333;
  --bg-color: #fff;
  --font-family: 'Arial', sans-serif;
}

/* Base layout */
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: white;
  color: var(--text-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Header */
.logo-bar {
  padding: 2rem 1rem;
  background-color: var(--bg-color);
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* align children to the left */
}

.site-title h1,
.site-title p {
  font-family: 'Roboto', var(--font-family);
 /* or whatever font you imported */
  font-weight: 300;                   /* lighter weight for elegance */
  letter-spacing: 0.5px;              /* optional: adds a refined feel */
line-height: 0.9;                  /* tighter spacing */
}


.site-title {
  margin-left: 10px;
}

.site-title h1 {
  font-size: 1.4rem;
  color: var(--accent-color);   /* was #f96a54 */
  margin: 0;
}

.site-title p {
  font-size: 0.95rem;
  color: #666;
  margin: 0.5rem 0 0;
}

.site-title a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* keeps the same color as your heading */
}

.site-title a:hover {
  /*text-decoration: underline;  optional: show underline on hover */
  color: inherit;             /* keeps hover color consistent */
}


.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner {
  position: relative;
  z-index: 1;
  background-color: white; /* optional fallback */
}



/* Main layout */
.main-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: row;
  flex: 1;
  position: relative;
}

/* Accent strip (desktop only) */
.accent-strip {
  width: 60px;
  background-color: var(--accent-color);
  position: relative;
   flex: 0 0 60px; /* fixed coral-orange width */top: 0;
  left: 0;
 
  z-index: 0;
}

/* Sidebar (desktop) */
.sidebar {
  flex: 0 0 100px; /* fixed green width */
  background-color: var(--primary-color);
  padding: 3rem 1rem 1rem;;
  
  z-index: 1;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin-bottom: 0.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-size: .9rem;
}
.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--accent-color);
  transform: translateX(5px);
  text-decoration: underline;
  transition: color 0.3s ease, transform 0.3s ease;
}

.page-wrapper {
  max-width: 1200px;   /* or whatever width you want */
  margin: 0 auto;      /* centers horizontally */
  background-color: var(--bg-color); /* optional */
  box-shadow: 0 0 10px rgba(0,0,0,0.1); /* optional for a framed look */
}


/* Content */
.content {
  flex: 3 1 600px;
  padding: 2rem;
  background-color: var(--bg-color);
  z-index: 1;
  max-width: 600px; /* ✅ Add this line */
 
}

.heading {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);   /* was #f96a54 */
}

.heading_2 {
  font-weight: bold;
  color: #444;
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.0rem;
}

.legal-page .heading {
  font-size: 0.9rem;
  color: #000000;
}
.content p {
  margin-bottom: 1rem;
  line-height: 1.4;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 0.02rem;
  font-size: 0.9rem;
  border-top: 1px solid #ccc;
  z-index: 1;
}

.site-footer a {
  color: #333;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-color);
}

.legal-page .content p {
  font-size: 0.7rem; /* about 2pt smaller than 0.9rem */
}



.arrow {
  display: none;
}

/* Default: desktop */

   .flyout {
  display: none;
}

/* To deactivate the breadcrumbs for now since they don't look right */
.breadcrumbs {
  display: none !important;
}

.desktop-breadcrumb-bar {
  display: flex;
  align-items: center;
  min-height: 0.5rem; /* or try 48px */
  padding: 0.3rem 0.3rem; /* adds vertical space */
  background-color: #DEDEDE;
  box-sizing: border-box;
}


.mobile-green-bar {
  display: none;
}
.bullets {
  padding-left: 1.2rem;
  margin-bottom: 2rem;
  font-size: 0.90rem;
  line-height: 1.4;
  color: #333;
}

.bullets li {
  margin-bottom: 1rem;
}

.bullets ul {
  list-style-type: "– "; /* en dash for nested items */
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

/* XXXXXXXX   Responsive styles   XXXXXXXXX */
@media (max-width: 600px) {
  .arrow {
    display: inline-block;
    transform: scale(1.8);
    font-size: 0.7em;
    vertical-align: middle;
    margin-left: 0.4em;
  }

  .desktop-breadcrumb-bar {
    display: none !important;
  }

  .desktop-breadcrumb-bar .breadcrumbs {
    padding-left: 2rem;
  }

  /* Hide desktop-only elements */
  .sidebar,
  .accent-strip {
    display: none;
  }

  /* Layout adjustments */
  .container {
    flex-direction: column;
  }

  .content {
    padding: 1rem;
    font-size: 2rem;
  }

  .content p {
    font-size: 0.9rem;
  }

  .site-title {
    margin-left: 0;
  }

  /* Mobile tab bar styling */
  .tab-bar {
    margin-left: 0 !important;
    padding-left: 10px !important;
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: row;   /* horizontal layout */
    flex-wrap: wrap;       /* allow wrapping if screen is too narrow */
    justify-content: flex-start; /* or space-around/space-between if you prefer */
  }
  
   .tab-group {
    flex: 1 1 auto;        /* let each tab shrink/grow to fit */
    position: relative;
  }
  
  .tab {
    display: block;
    padding: 0.5rem 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    text-decoration: none;
    color: #333;
    background: #f5f5f5;
    border: none;
  }

  /* Mobile accent bar */
  .mobile-green-bar {
    display: flex;
    align-items: center;
    height: 3vh;
    background-color: var(--primary-color);
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .mobile-green-bar .breadcrumbs {
    padding-left: 0 !important;
    margin-left: 0 !important;
    width: 100%;
  }

  /* Flyout menu behavior (JS-controlled) */
  .flyout {
    display: none; /* hidden until JS adds .open */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 0.5rem 0.75rem;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
  }

  .flyout.open {
    display: flex; /* show when JS toggles */
  }

  .flyout a {
    display: block;
    padding: 0.3rem 0;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
  }

  .flyout a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
}
/* XXXXXXXX   END Responsive styles   XXXXXXXXX */



.highlight-green {
  color: #94c63f;
  font-weight: 600;
  font-style: normal;
}
.tab-bar {
  display: flex;
  justify-content: flex-start; /* align tabs to the left */
  background-color: white !important;
  padding: 0;
  margin-left: 220px;   
  /* match green bar width */
  position: relative;
  z-index: 2;
}




.tab-group {
  position: relative;
  display: inline-block;
}







.breadcrumbs {
   padding-left: 3.8rem; /* default left padding */
  font-size: 0.70rem;
  color: #666666;
  width: 100%;
  margin: 0;
}

.breadcrumb-label {
  font-weight: bold;
  margin-right: 0.5rem;
}

.breadcrumbs a {
  color: #666666;
  text-decoration: none;
  margin-right: 0.25rem;
  font-weight: 600; /* Add this line */

}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: #666666;
  font-weight: 600;
}

.tab {
  letter-spacing: 0.8px;
  background-color: var(--accent-color);   /* was #fc826d */
  color: white;
  border: none;
  padding: 0.3rem 0.5rem;
  margin: 0 0.15rem;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
  font-family: var(--font-family);
  text-decoration: none; /* removes underline */
  -webkit-font-smoothing: antialiased; /* for improving font look in some browsers */
  -moz-osx-font-smoothing: grayscale; /* for improving font look in some browsers */

  
}


.tab:not(.active):hover,
.tab:not(.active):focus {
  background-color: var(--accent-color);   /* was #f96a54 */
}


.tab.active {
  background-color: var(--accent-color); /* accent strip color */
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* darker, more visible shadow */
  z-index: 3;
}



