/*
Theme Name: Dark Business
Theme URI: https://example.com
Author: Your Business
Author URI: https://example.com
Description: A minimal dark theme for modern businesses. Clean, professional, and focused on content.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dark-business
Tags: dark, minimal, business, clean, modern, one-column, two-columns, custom-menu, featured-images
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --accent: #ffffff;
    --border: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--accent);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Layout */
.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

/* Header */
.site-header {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
}

.site-header .header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
}

.site-title a {
    color: var(--accent);
}

.site-logo {
    display: inline-block;
    line-height: 0;
}

.site-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.site-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation li {
    display: inline-block;
}

.main-navigation a {
    color: var(--text-primary);
    font-weight: 500;
}

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

/* Posts & Pages */
article {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

article:last-child {
    border-bottom: none;
}

.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: var(--accent);
}

.entry-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.entry-meta a {
    color: var(--text-secondary);
}

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

.entry-content {
    margin-top: 1.5rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.more-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.5rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.more-link:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    opacity: 1;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    justify-content: center;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.pagination .current {
    background-color: var(--accent);
    color: var(--bg-primary);
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-secondary);
    border-radius: 4px;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.comment-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

input[type="submit"],
button {
    padding: 0.75rem 1.5rem;
    background-color: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

input[type="submit"]:hover,
button:hover {
    opacity: 0.8;
}

/* Footer */
.site-footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--text-secondary);
}

/* Contact Page */
.contact-page .entry-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-top: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-success {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #1a4d1a;
    border: 1px solid #2d6b2d;
    border-radius: 4px;
    text-align: center;
}

.form-success h3 {
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-primary);
    margin: 0;
}

.form-error {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #4d1a1a;
    border: 1px solid #6b2d2d;
    border-radius: 4px;
    text-align: center;
}

.form-error p {
    color: #f87171;
    margin: 0;
}

.contact-info {
    max-width: 600px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: var(--accent);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.page-header .page-title {
    margin-bottom: 0.5rem;
}

.page-header .page-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Technical Services Tagline */
.technical-services-tagline {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.technical-services-tagline p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Homepage Sections */
.homepage-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2rem 0;
}

.homepage-hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.services-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.service-item {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-item p {
    color: var(--text-primary);
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.cta-section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .site-logo img {
        height: 40px;
        margin: 0 auto;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .site-content {
        padding: 2rem 1rem;
    }
    
    .technical-services-tagline {
        padding-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .technical-services-tagline p {
        font-size: 0.9rem;
    }
    
    .homepage-hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}
