/*
Theme Name: MySmartOps Corporate
Author: MySmartOps
Description: A clean, professional corporate theme merging the classic structure of Silkstone Capital with the AI and Cybersecurity offerings of MySmartOps.
Version: 1.0
Text Domain: mysmartops
*/

/* Reset & Variables */
:root {
    --color-primary: #1a365d;
    --color-secondary: #2b6cb0;
    --color-accent: #edf2f7;
    --color-text-main: #2d3748;
    --color-text-muted: #4a5568;
    --color-bg-light: #f7fafc;
    --color-white: #ffffff;

    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

/* Typography mimicking Silkstone (Serif for headings) */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--color-primary);
}

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation (Silkstone Style) */
.site-header {
    border-bottom: 1px solid var(--color-accent);
    background-color: var(--color-white);
}

.top-bar {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    font-size: 0.85rem;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-accent);
}

.top-bar a {
    margin-left: 20px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: bold;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.site-branding .site-title {
    font-size: 2rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-branding .site-title a {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 5px;
}

.nav-menu a:hover,
.nav-menu .current_page_item>a {
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}

/* Hero Section - Section 2 (White) */
.hero-banner {
    background-color: var(--color-white);
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-accent);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Service Blocks (Mimicking Silkstone Grid) */
.services-section {
    background-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.service-block {
    background: var(--color-white);
    padding: 30px;
    border: 1px solid var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-block h3 {
    font-size: 1.4rem;
    border-bottom: 1px solid var(--color-accent);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.read-more-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: bold;
    text-transform: lowercase;
}

.read-more-link::after {
    content: ' →';
}

/* Standard Page Content */
.site-content>.container {
    max-width: 100%;
    padding: 0;
}

.page-header {
    background-color: var(--color-white);
    padding: 60px 20px 40px;
    border-bottom: 1px solid var(--color-accent);
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
}

.site-content {
    min-height: 50vh;
    padding-bottom: 80px;
}

.content-area {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.site-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

/* General Layout Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .main-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

/* Structured Content Blocks */
.content-card {
    background: transparent;
    padding: 30px;
    border: 1px solid var(--color-accent);
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 50px;
}

.content-card h3 {
    margin-top: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    margin-bottom: 25px;
}

/* Info Blocks for Special Sections */
.info-block {
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-secondary);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.info-block.dark {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-left-color: var(--color-accent);
}

.info-block h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 600;
}

.info-block.dark h4 {
    color: var(--color-white);
}

.info-block p:last-child {
    margin-bottom: 0;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.styled-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.styled-list li::before {
    content: '•';
    color: var(--color-secondary);
    font-size: 1.8rem;
    position: absolute;
    left: 4px;
    top: -9px;
}

/* Value Proposition Grid */
.value-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .value-grid {
        flex-direction: column;
        gap: 20px;
    }
}

.value-col {
    flex: 1;
    background: var(--color-bg-light);
    padding: 25px;
    border-radius: 6px;
    border: 1px solid var(--color-accent);
}

/* Subtle HR */
.separator {
    border: 0;
    border-top: 1px solid var(--color-accent);
    margin: 40px 0;
}