:root {
    --primary-color: #0f2c2a;
    --secondary-color: #ea4800;
    --accent-color: #185401;
    --text-color: #111;
    --background-color: #7a6256;
    --border-color: #ccc;
}

body {
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-color) url('../images/canvas.gif');
}

.main-container {
    box-shadow: 0 3px 15px rgba(0,0,0,.25);
    min-height: 100vh;
}

.navbar-bg-wrapper {
    background: white;
    border-bottom: 3px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Featured section background with fading mask effect */
.featured-section-bg {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.featured-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/top_bg.gif') repeat-x top;
    background-size: 100% auto;
    mask: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: -1;
}

.hero-section {
    padding: 60px 0 0 0;
}

h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1rem;
}

h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-color);
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

.service-card {
    background: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .card-title {
    color: var(--secondary-color);
    font-family: 'Merriweather', serif;
}

.service-card .card-title span {
    font-size: 0.8em;
    color: var(--text-color);
}

.btn-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

.btn-custom:hover {
    background-color: #258102;
    border-color: #258102;
    color: white;
    transform: translateY(-2px);
}

.location-section {
    background: #f8f9fa;
    padding: 60px 0;
    border: 2px solid var(--border-color);
}

/* Location section specific styling */
.location-section h2 {
    color: var(--secondary-color);
}

.contact-section {
    padding: 60px 0;
}

.contact-item {
    text-align: center;
    padding: 30px 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.facility-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.facility-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.location-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}

.footer-section {
    background: #261a13;
    color: #eee;
    padding: 40px 0;
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

.footer-section img {
    max-width: 100px;
    height: auto;
}

.navbar-brand {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color) !important;
    margin-left: 20px;
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

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

/* Process Steps Infographic Styles */
.process-step {
    background: #fff;
    border: 2px solid #f1f3f4;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
    border-color: var(--accent-color);
}

.step-icon-container {
    position: relative;
    display: inline-block;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--secondary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #258102);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
}

.step-title {
    color: var(--primary-color);
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

/* Add DM Sans to general text elements */
p, li, span, .card-text, .facility-feature span, .contact-item p {
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

/* Responsive adjustments for mobile */
@media (max-width: 991px) {
    .process-step {
        margin-bottom: 2rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-section {
        padding: 40px 0 0 0;
    }
    
    .contact-item {
        margin-bottom: 30px;
    }
    
    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}