/*
Theme Name: TechForce
Author: Your Name
Description: A custom theme for TechForce LLC, created for WordPress.
Version: 1.1
*/

/* --- Global Styles & Variables --- */
:root {
    --primary-blue: #0a2b4c;
    --accent-blue: #007bff;
    --light-gray: #f8f9fa;
    --dark-text: #343a40;
    --light-text: #fdfdfd;
    --body-text: #5a5a5a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--body-text);
    background-color: #fff;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: var(--accent-blue);
        margin: 0.75rem auto 0;
    }

.cta-button {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--light-text);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

    .cta-button:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

/* --- Header & Navigation --- */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.2rem;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark-text);
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        position: relative;
        padding-bottom: 5px;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-blue);
            transition: width 0.3s ease;
        }

        .nav-links .current-menu-item > a::after, .nav-links a:hover::after {
            width: 100%;
        }

/* --- Hero Section --- */
.hero {
    background-image: linear-gradient(rgba(10, 43, 76, 0.8), rgba(10, 43, 76, 0.8)), url('https://coloradotechforce.com/wp-content/uploads/2025/09/qtq80-pwNt6n.jpeg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
}

.hero-content {
    max-width: 850px;
    padding: 1rem;
}

.hero h1 {
    font-size: 3.8rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Services Section --- */
#services {
    background-color: var(--light-gray);
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    }

    .service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin: 1.5rem 1rem 0.5rem 1rem;
    }

    .service-card p {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }

/* --- About & Contact Shared Styles --- */
.content-section {
    padding: 6rem 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.content-image {
    flex: 1;
    min-width: 300px;
}

    .content-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.content-text {
    flex: 1.2;
    min-width: 300px;
}

    .content-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: var(--primary-blue);
    }

/* --- Contact Section Specific --- */
#contact {
    background-color: var(--light-gray);
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

    .contact-info ul li {
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

.contact-info a {
    color: var(--body-text);
    text-decoration: none;
    transition: color 0.3s;
}

    .contact-info a:hover {
        color: var(--accent-blue);
    }

div.wpcf7-response-output {
    margin-top: 20px;
}
/* Style for Contact Form 7 messages */

/* --- Footer --- */
.footer {
    background-color: var(--primary-blue);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2rem 0;
}

    .footer p {
        margin: 0.25rem 0;
    }

    .footer a {
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s;
    }

        .footer a:hover {
            opacity: 0.8;
        }

.footer-badges {
    text-align: center;
    margin-top: 20px;
}

.badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .badges-container img {
        height: 50px;
        width: auto;
        max-width: 100%;
    }

/* --- Mobile Responsive Styles --- */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 8px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            text-align: center;
            margin: 0.5rem 0;
        }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }

        .menu-toggle .bar {
            width: 25px;
            height: 3px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
}
/* --- Site Icon in Header --- */
.nav-logo {
    display: flex;
    align-items: center; /* Vertically aligns the icon and text */
    gap: 10px; /* Adds a small space between the icon and title */
}

.site-icon {
    height: 32px; /* Matches the size we requested in the PHP */
    width: 32px;
}
