/*
Theme Name: NWR Slate
Theme URI: http://wildlifetrapper.com
Author: Garrett Jewell
Description: High-contrast slate theme with Bootstrap 5 for Nuisance Wildlife Removal Inc.
Version: 1.0
*/

/* --- Theme Variables --- */
:root {
    --primary-slate: #0f172a; 
    --secondary-slate: #1e293b; 
    --accent-orange: #f59e0b; 
    --accent-green: #10b981; 
    --text-silver: #94a3b8;
    --light-bg: #f8fafc;
    --text-dark: #0f172a;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    padding-top: 80px; /* Offset for fixed navbar */
}

/* --- Navigation Styles --- */
.navbar-custom {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: white !important;
}

.navbar-brand i { color: var(--accent-orange); }

.nav-link {
    color: var(--text-silver) !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active, .current-menu-item a {
    color: white !important;
}

/* --- Hero & Sections --- */
.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

/* Overlay for Hero */
.hero-section::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7));
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.section-padding { padding: 80px 0; }
.bg-slate { background-color: var(--primary-slate); color: white; }

.section-title {
    color: var(--primary-slate);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}
.bg-slate .section-title { color: white; }

.section-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0; width: 60px; height: 4px;
    background-color: var(--accent-green);
}

/* --- Cards --- */
.card-service {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
    border-top: 4px solid var(--accent-green);
}
.card-service:hover { transform: translateY(-5px); }
.icon-box { font-size: 2.5rem; color: var(--accent-green); margin-bottom: 15px; }

/* --- Footer --- */
footer {
    background-color: var(--primary-slate);
    color: #cbd5e1;
    padding: 60px 0 20px;
}
footer h5 { color: white; font-weight: 700; margin-bottom: 20px; }
footer a { color: #cbd5e1; text-decoration: none; }
footer a:hover { color: var(--accent-orange); }