:root {
    --primary-green: #61764d;
    --dark-green: #1d2715;
    --light-green: #a8b896;
    --bs-focus-ring-color: rgba(0, 0, 0, 0.25) !important; 
}

html {
    scroll-behavior: smooth;
}

.body-fade {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.body-fade.loaded {
    opacity: 1;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}


h3{
    font-size: 1.6rem !important;
}

a{
    text-decoration: none;
    color: inherit;
}

a:hover{
    font-weight: bold;
}

.dropdown-item:active {
    background-color: var(--dark-green) !important; /* your color */
    color: #fff !important;           /* text color */
}


.active{
    background-color: var(--primary-green) !important;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--primary-green);
}

.navbar {
    background-color: var(--primary-green) !important;
    padding: 1rem 0;
}

.navbar-brand, .nav-link {
    color: white !important;
    font-size: 1.1rem;
}

.nav-link:hover {
    color: #f0f0f0 !important;
}

.dropdown-menu {
    background-color: var(--light-green);
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background-color: var(--dark-green);
    color: white;
}

.hero-section {
    position: relative;
    background-color: #2a2a2a;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/images/brooke-cagle-g1Kr4Ozfoac-unsplash.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 600px;
}

.hero-logo {
    width: 150px;
    margin-bottom: 2rem;
}

.section-content {
    background-color: var(--primary-green);
    color: white;
    padding: 60px 0;
}

.section-title {
    /* font-size: 2rem; */
    margin-bottom: 2rem;
    font-weight: 300;
}

.highlight-text {
    font-weight: bold;
}

.services-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s;
    width: fit-content;
}

.services-btn:hover {
    background-color: white;
    color: var(--primary-green);
}

.contact-section {
    background-color: #2a2a2a;
    color: white;
    padding: 60px 0;
}

.contact-info {
    line-height: 2;
}

.contact-info a{
    text-decoration: none;
    color: inherit;
}

.contact-info a:hover{
    font-weight: bold;
}

.map-container {
    height: 300px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.footer {
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

img {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

img.lazy-loaded {
    opacity: 1;
}
