/* Custom CSS for KY Dirt Diggers */

/* Branding Colors:
   Primary: Navy Blue (#0C2340) and Dark Gray (#333333)
   Accent/CTA: Orange (#FF8C00)
*/

:root {
  /* Override Theme Variables */
  --primary-accent: #0C2340; /* Navy Blue */
  --navbar-border-top: #333333; /* Dark Gray */
  --button-border: #0C2340; /* Navy Blue */

  /* Adjust other derived colors if necessary */
  --link-focus: #1B3F8B;
  --link-hover-bg: #1B3F8B;
  --navbar-focus: #1B3F8B;
}

/* Override Top Bar Background */
#top {
  background: #333333; /* Dark Gray */
  color: #eeeeee;
}

#top a {
  color: #ffffff;
}

/* Buttons - Orange CTA */
.btn-template-main {
  color: #ffffff;
  background-color: #FF8C00; /* Orange */
  border-color: #FF8C00;
}

.btn-template-main:hover,
.btn-template-main:focus,
.btn-template-main:active,
.btn-template-main.active {
  background-color: #e67e00; /* Darker Orange */
  border-color: #e67e00;
  color: #ffffff;
}

/* Ensure links in text are visible/branded */
a {
  color: #0C2340; /* Navy Blue */
}

a:hover,
a:focus {
  color: #FF8C00; /* Orange on hover */
}

/* Navbar Brand/Logo Text */
.navbar-brand {
    font-weight: 700;
    color: #0C2340 !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #333333;
}

/* Utilities for text colors if needed */
.text-primary {
    color: #0C2340;
}

.text-accent {
    color: #FF8C00;
}
