/* style.css - Piston Monochromatic Theme */
:root {
    --primary-color: #000000; /* Pure Black */
    --secondary-color: #333333; /* Dark Grey */
    --accent-color: #555555; /* Medium Grey */
    --light-gray: #f4f4f4;
    --white: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--secondary-color);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* Layout */
.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    /*padding: 20px 0;*/
}

/* Header & Nav */
header {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 0;
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 90px; /* Adjust height based on preference */
    width: auto;
    display: block;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav li {
    display: inline-block;
    margin-left: 25px;
}

header nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: auto;
    color: #ccc;
}

/* Content Sections */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--light-gray);
    padding: 30px;
    border: 1px solid #ddd;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.2rem;
}

.content-block {
    padding: 30px 0;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    font-size: 0.9rem;
}

footer a {
    color: #ccc;
}

/* Responsive */
@media(max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    header nav {
        margin-top: 20px;
    }
    header nav li {
        display: block;
        margin: 15px 0;
    }
    .hero h2 {
        font-size: 2rem;
    }
}