body {
	font-size: 1.1rem;
  -webkit-font-smoothing: antialiased;
	text-rendering: optimizelegibility;
}
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.text-pritchard{
  color: #3d5e38;
}
.text-pritchard a{
  color: #3d5e38;
  text-decoration: underline;
}
.text-pritchard:hover{
  color: #3d5e38;
  opacity: .8;
}
/* ===============
Navbar
=================*/
.navbar-dark .navbar-nav .nav-link {
    color: #ccc;
}
.navbar-dark .navbar-nav .nav-link:hover {
    border-bottom: thin white solid;
}

/* ==========================
Custom CSS for the Header Overlay 
==========================

1. Set the Header as the reference point for absolute positioning */
.header-overlay {
    position: relative; 
}

/* 2. Create the semi-transparent black layer (the actual overlay) */
.header-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    
    /* Adjust the last value (0.5 here) to make the overlay lighter or darker */
    background: rgba(0, 0, 0, 0.6); 
    /* Ensure the overlay is placed beneath the text content */
    z-index: 1; 
}

/* 3. Ensure the text and button container is always visible above the overlay */
.header-overlay > .container {
    position: relative;
    z-index: 2; 
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
/*
=======================
Fade in the Header text
=======================
*/
/* Custom CSS for Fade-in Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0; /* Start invisible */
  animation: fadeIn 1.2s ease-out forwards;
}

/* Delay subsequent elements for a staggered look */
.fade-in-up-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-up-delay-2 {
  animation-delay: 0.4s;
}
.btn-pritchard {
	background-color: #3d5e38;
	border-color: #fff;
	  text-decoration: none;
	  color: white;
  }
  .btn-pritchard:hover {
	  background-color: #3d5e38;
	  border-color: #fff;
	  color:white;
    opacity: .8;
  }
  /* ============= 
  Location Pages
  ============== */
  .nap-address{
    font-weight: bold;
  }
  .nap-address a{
    color: #3d5e38;
  }
  .nap-address:hover{
    opacity: .8;
  }

/* 
Employees
*/
/* Card styling */
.employee-card {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}
.employee-card:hover {
    transform: translateX(5px); /* Slide slightly right on hover */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-color: #0d6efd; /* Highlight border on hover */
}

/* Image styling */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the left side without distortion */
    min-height: 200px; /* Ensures height on mobile */
}

/* Social Icon styling */
.social-btn {
    display: inline-flex;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3d5e3826;
    color: #555;
    margin-right: 8px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.social-btn:hover {
    background-color: #0d6efd;
    color: white;
}
/* Custom Brand Color Classes for #3d5e38 */
.text-focus { color: #3d5e38 !important; }
.bg-focus { background-color: #3d5e38 !important; color: #ffffff; }
.border-focus { border-color: #3d5e38 !important; border-width: 2px !important; }

/* Solid Button */
.btn-focus {
    background-color: #3d5e38;
    color: #ffffff;
    border-color: #3d5e38;
}
.btn-focus:hover, .btn-focus:focus {
    background-color: #2f492b; /* Slightly darker shade for hover */
    color: #ffffff;
    border-color: #2f492b;
}

/* Outline Button */
.btn-outline-focus {
    color: #3d5e38;
    border-color: #3d5e38;
}
.btn-outline-focus:hover, .btn-outline-focus:focus {
    background-color: #3d5e38;
    color: #ffffff;
    border-color: #3d5e38;
}

/* Hover Lift Effect for Cards */
.hover-lift { transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; }