/*
Theme Name: Arallium McKinsey
Theme URI: https://arallium.com
Author: Arallium
Author URI: https://arallium.com
Description: Professional McKinsey-style theme for Arallium with clean design, serif typography, and deep blue color scheme
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arallium
Tags: government, consulting, professional, clean, minimal, two-columns, custom-menu, custom-logo, editor-style, featured-images, full-width-template, responsive
*/

/* ===================================
   ARALLIUM - McKINSEY STYLE THEME
   Complete WordPress Theme
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mckinsey-blue: #003366;
    --deep-blue: #001f3f;
    --bright-blue: #0066CC;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #E5E7EB;
    --text-gray: #4B5563;
    --dark-gray: #1F2937;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--deep-blue);
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5em;
}

a {
    color: var(--bright-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--deep-blue);
}

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--light-gray);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    height: 32px;
    width: auto;
}

/* Navigation */
.main-navigation {
    font-family: Arial, sans-serif;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 36px;
    align-items: center;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: var(--dark-gray);
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: color 0.2s ease;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-gray);
}

/* ============ MAIN CONTENT ============ */
.site-content {
    margin-top: 70px;
}

.content-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

.entry-header {
    margin-bottom: 40px;
}

.entry-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--deep-blue);
    margin-bottom: 24px;
}

.entry-content {
    font-size: 18px;
    line-height: 1.8;
}

.entry-content h2 {
    font-size: 38px;
    margin: 60px 0 24px;
}

.entry-content h3 {
    font-size: 28px;
    margin: 48px 0 20px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
}

/* Full width images */
.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.alignfull img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ============ FOOTER ============ */
.site-footer {
    border-top: 1px solid var(--light-gray);
    padding: 60px 60px 40px;
    background: var(--white);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    height: 28px;
    width: auto;
}

.footer-info p {
    font-size: 16px;
    color: var(--text-gray);
    font-family: Arial, sans-serif;
    margin-top: 12px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 32px;
}

.footer-menu a {
    color: var(--text-gray);
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
}

.site-info {
    font-size: 14px;
    color: var(--text-gray);
    font-family: Arial, sans-serif;
    text-align: center;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .header-container,
    .content-area,
    .footer-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .entry-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .main-navigation.toggled ul {
        display: flex;
    }
    
    .header-container,
    .content-area,
    .footer-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .entry-title {
        font-size: 32px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .alignfull img {
        height: 400px;
    }
}

/* ============ UTILITIES ============ */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 32px;
    margin-bottom: 16px;
}

.alignright {
    float: right;
    margin-left: 32px;
    margin-bottom: 16px;
}
