/* Custom Styles for Tool Belt Handyman Service */

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.font-display {
    font-family: 'Outfit', sans-serif;
}

/* Primary color override for Bootstrap */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.text-primary {
    color: var(--primary-color) !important;
}

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

/* Card hover effect */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    box-shadow: 0 8px 30px -6px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3) !important;
    transform: translateY(-2px);
}

/* Linked service cards */
a .card {
    color: inherit;
}

a:hover .card {
    color: inherit;
}

a:hover .card h3,
a:hover .card p {
    color: inherit;
}

/* Service area button hover */
.hover-primary:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.hover-primary:hover i {
    color: white !important;
}

/* Mobile menu transitions */
#mobileMenu {
    transition: all 0.3s ease;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Footer link hover */
footer a:hover {
    color: white !important;
    padding-left: 4px;
    transition: all 0.3s ease;
}

/* Responsive typography */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 3rem;
    }
}

/* Hero section adjustments */
section.position-relative {
    min-height: 600px;
}

@media (min-width: 992px) {
    section.position-relative {
        min-height: 700px;
    }
}

/* Tracking wide for uppercase text */
.tracking-wide {
    letter-spacing: 0.05em;
}

/* Services dropdown styling */
.dropdown-toggle::after {
    margin-left: 0.5em;
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

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

.dropdown-item:focus {
    background-color: var(--primary-color);
    color: white;
}

/* Mobile services accordion */
.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

