/**
 * Custom Stylesheet for ExteriorImagesPainting.com
 *
 * Overrides and supplements Bootstrap styles.
 *
 * @package ExteriorImagesPainting
 * @version 1.0.0
 * @author Lexi (HandyKnox LLC)
 */

/* Start Path Comment: /home/nxscom/exteriorimagespainting.com/assets/css/style.css */

/* --- Global Styles & Variables (Optional) --- */
:root {
    /* Define custom colors if needed - examples */
    --primary-color: #0d6efd; /* Default Bootstrap Blue */
    --secondary-color: #6c757d; /* Default Bootstrap Gray */
    --light-bg: #f8f9fa; /* Default Bootstrap Light */
    --dark-bg: #212529; /* Default Bootstrap Dark */
    --brand-font: 'Roboto', sans-serif; /* Example using Google Font */
}

body {
    font-family: var(--brand-font);
    /* Ensures footer is pushed down even if content is short */
    /* display: flex; Already handled by Bootstrap classes in header */
    /* flex-direction: column; */
    /* min-height: 100vh; */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700; /* Bolder headings by default */
}

/* --- Header & Navigation --- */
.navbar-brand {
    font-weight: bold;
}
.navbar-text a {
    color: inherit; /* Make phone number link inherit navbar text color */
    text-decoration: none;
}
.navbar-text a:hover {
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background-color: var(--dark-bg); /* Ensure dark background */
}
.footer a {
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
    color: #dee2e6 !important; /* Slightly lighter text on hover */
}
.footer .list-unstyled li {
    margin-bottom: 0.5rem;
}
.footer .text-muted {
     color: #adb5bd !important; /* Slightly lighter muted text on dark */
}

/* --- Page Specific Styles --- */

/* Hero Section */
.hero-section {
    /* Ensure background image covers well */
    background-attachment: fixed; /* Optional: Parallax effect */
    /* Add minimum height if needed */
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section h1 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Add subtle shadow to text */
}

/* Trust Factor Bar */
.trust-factors i {
    font-size: 2rem; /* Make icons slightly larger */
}

/* Services Sections */
.services-overview .card:hover,
.services-detailed .service-item img:hover {
    transform: translateY(-5px); /* Subtle lift effect on hover */
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; /* Enhance shadow on hover */
}
.services-detailed .service-item ul {
    padding-left: 1.2rem; /* Adjust list indentation */
    list-style: none; /* Remove default bullets */
}
.services-detailed .service-item ul li::before {
    content: "\f058"; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free'; /* Ensure correct font family */
    font-weight: 900; /* Solid icon style */
    color: var(--primary-color); /* Or text-success color */
    display: inline-block;
    width: 1em;
    margin-left: -1.2em;
    margin-right: 0.2em;
}


/* Why Choose Us Section */
.why-choose-us ul {
    padding-left: 0;
    list-style: none;
}
.why-choose-us ul li i {
    /* Adjust icon alignment if needed */
}

/* Testimonials */
.testimonials-content blockquote {
    font-style: italic;
    color: var(--secondary-color);
}
.testimonials-content blockquote p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.testimonials-content figure {
    border-left: 5px solid var(--primary-color);
}

/* Contact Form */
#contactForm .form-control.is-invalid {
    border-color: #dc3545; /* Ensure Bootstrap's danger color */
}
#contactForm .invalid-feedback {
    display: block; /* Ensure feedback is shown */
}


/* Utility Classes (Add as needed) */
.shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important; }


/* Responsive Adjustments (Add specific overrides if needed) */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem; /* Smaller heading on mobile */
    }
    .trust-factors h5 {
        font-size: 1rem; /* Slightly smaller heading */
    }
}

/* End Path Comment: /home/nxscom/exteriorimagespainting.com/assets/css/style.css */