/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Montserrat:wght@400;700&display=swap');

/*
 Theme Name: Gruntec Theme
 Author: Grok
 Description: A custom theme for Gruntec, LLC.
 Version: 1.0
*/

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #4B5563; /* Tech Gray for content */
}

header {
    background: #171A3B; /* Very dark navy blue from logo background */
    color: white;
    text-align: center;
    padding: 1em 0;
}

header img {
    max-width: 150px; /* As adjusted previously */
}

nav {
    background: #171A3B; /* Very dark navy blue from logo background */
    padding: 1em;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif; /* Headers font for navigation */
}

main {
    max-width: 800px;
    margin: 2em auto;
    padding: 0 1em;
    background: #F9FAFB; /* Light background for contrast */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Headers font */
}

button, .btn {
    background: #06B6D4; /* Bright Cyan */
    color: white;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif; /* Headers font for buttons */
}

button:hover, .btn:hover {
    background: #0284AD; /* Darker Cyan on hover */
}

footer {
    background: #171A3B; /* Very dark navy blue from logo background */
    color: white;
    text-align: center;
    padding: 1em 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Existing styles for hero and services remain unchanged */
.hero {
    background: #171A3B; /* Very dark navy blue from logo background */
    color: white;
    text-align: center;
    padding: 3em 1em;
}

.hero .logo {
    max-width: 250px;
    margin-bottom: 1em;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0.5em 0;
}

.subtitle {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    color: #D1D5DB;
}

.services {
    max-width: 800px;
    margin: 2em auto;
    padding: 0 1em;
    color: #4B5563;
}

.services h2 {
    text-align: center;
    color: #1E3A8A;
}

.services ul {
    list-style-type: none;
    padding: 0;
}

.services ul li {
    padding: 0.5em 0;
    position: relative;
}

.services ul li:before {
    content: "•";
    color: #06B6D4;
    font-weight: bold;
    position: absolute;
    left: -1em;
}

/* Optional: Add form styling if not already present */
label {
    font-weight: bold;
    color: #4B5563;
}

input, textarea {
    width: 100%;
    max-width: 400px;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #4B5563;
    font-family: 'Open Sans', sans-serif; /* Match body font */
}




/* About Page Styles */
.about-hero {
    background: #171A3B; /* Dark navy blue from logo */
    color: white;
    text-align: center;
    padding: 3em 1em;
}

.about-content {
    max-width: 800px;
    margin: 2em auto;
    padding: 0 1em;
    color: #4B5563; /* Tech Gray */
}

.about-content h2 {
    color: #1E3A8A; /* Navy Blue for headers */
    margin-top: 1.5em;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 1.5em;
}


