:root,
[data-bs-theme="light"] {
  --bs-primary: #206167; /* primary Terranux green */
  --bs-secondary: #0d2e3c; /* secondary Terranux dark green */

  --bs-body-bg: #f8f4ea; /* Terranux cream body background */
  --bs-body-color: #0d2e3c; /* Terranux dark green text */

  --bs-white: #fff;
  --bs-black: #000;

  --bs-gray-100: #F7F9FF; /* light gray */
  --bs-gray-600: #646569; /* dark gray */

  --bs-link-color: #206167;
  --bs-link-hover-color: #0d2e3c;

  /* subtle backgrounds and borders with transparency adjusted */
  --bs-primary-bg-subtle: rgba(32, 97, 103, 0.1);
  --bs-secondary-bg-subtle: rgba(13, 46, 60, 0.1);
  --bs-border-color: #646569;
  --bs-border-color-translucent: rgba(100, 97, 103, 0.2);

  --bs-focus-ring-color: rgba(32, 97, 103, 0.25);
}

[data-bs-theme="dark"] {
  color-scheme: dark;

  --bs-primary: #206167;
  --bs-secondary: #0d2e3c;

  --bs-body-bg: #0d2e3c; /* dark background */
  --bs-body-color: #f8f4ea; /* cream text */

  --bs-white: #fff;
  --bs-black: #000;

  --bs-gray-100: #646569;
  --bs-gray-600: #F7F9FF;

  --bs-link-color: #f8f4ea;
  --bs-link-hover-color: #206167;

  --bs-primary-bg-subtle: rgba(32, 97, 103, 0.3);
  --bs-secondary-bg-subtle: rgba(13, 46, 60, 0.3);
  --bs-border-color: #f8f4ea;
  --bs-border-color-translucent: rgba(248, 244, 234, 0.2);

  --bs-focus-ring-color: rgba(248, 244, 234, 0.25);
  --about-text-color: #f8f4ea; /* Terranux cream for About section */

}
#mainNav.navbar-shrink {
    background-color: #f8f4ea; /* Terranux cream */
}

#mainNav.navbar-shrink .navbar-brand {
    color: #206167; /* Terranux green */
}

#mainNav.navbar-shrink .nav-link {
    color: #206167;
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 0.25rem solid rgba(0, 0, 0, 0);
}

#mainNav.navbar-shrink .nav-link:hover {
    color: #0d2e3c; /* Terranux dark green */
}

#mainNav.navbar-shrink .nav-link:active {
    color: #0d2e3c;
}

#mainNav.navbar-shrink .nav-link.active {
    color: #206167;
    outline: none;
    border-bottom: 0.25rem solid #206167;
}
.masthead {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 35rem;
    padding: 15rem 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 46, 60, 0.9) 0%,   /* Dark Terranux green top */
        rgba(248, 244, 234, 0.35) 75%, /* Cream mid */
        rgba(13, 46, 60, 0.9) 100%  /* Dark Terranux green bottom */
      ),
      url("../assets/img/bg-masthead.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
  }
/* Masthead title and description outline */
.masthead h1,
.masthead h2 {
  color: #f8f4ea; 
  -webkit-text-stroke: 2px #206167
}
.masthead h2 {
  color: #206167; 
  -webkit-text-stroke: .25px #f8f4ea
}
/* Terranux "Our Offering" section */
#about {
    background: linear-gradient(135deg, var(--bs-primary) 70%, var(--bs-body-bg) 100%);
  }
  #about h2.text-white.mb-4,
  #about h4,
  #about p {
    color: var(--about-text-color);
    -webkit-text-stroke: .25px #f8f4ea
}
#getstarted {
    background-color: #206167 !important; /* Terranux green */
    border-color: #206167 !important;
    color: #fff !important;
  }
  
  #getstarted:hover {
    background-color: #0d2e3c !important; /* Darker green on hover */
    border-color: #0d2e3c !important;
    color: #fff !important;
  }
  .contact-section {
    background-color: #0d2e3c !important;
  }
/* FOOTER */
.footer {
    background-color: #0d2e3c; /* same dark green as contact section */
    color: #f8f4ea; /* cream text */
  }
  
  .footer a {
    color: #f8f4ea;
    text-decoration: underline;
  }
  
  .footer a:hover {
    color: #206167; /* lighter Terranux green hover effect */
  }
  .footer.bg-black {
    background-color: #0d2e3c !important; /* overrides Bootstrap's black */
    color: #f8f4ea;
}