/* styles.css - Global styles for Kelman Solutions website */

/* Reset default margins and set base font */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styling (title and tagline) */
header {
    background-color: #007bff; /* Primary color - blue, changeable here */
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

/* Navigation bar (top bar) */
nav {
    background-color: #0056b3; /* Darker blue for nav - adjustable */
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main content sections */
main {
    padding: 20px 0;
}

h2 {
    color: #007bff; /* Match primary color */
    font-size: 2em;
    margin-bottom: 10px;
}

section {
    margin-bottom: 30px;
}

section p {
    margin: 10px 0;
}

/* Specific for solutions page - product cards */
.solution {
    background-color: white;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.solution h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }
}
