/* Main stylesheet shared by index.html and blog.html */
/* Extracted from original inline styles of index.html */
/* Custom CSS Variables */
:root {
    --color-black-dark: #000000;
    --color-black-light: #0A1128;
    --color-blue-deep: #0A1128;
    --color-blue-medium: #123C69;
    --color-blue-light: #6096BA;
    --color-white: #FFFFFF;
    --color-light-gray: #F7F9FC;
    --color-almost-black: #1A1A1A;
    --color-light-text: #D9E1F2;
    --color-orange-highlight: #FF8C00;
    --color-red-highlight: #27AE60;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-blue-deep);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

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

a:hover {
    color: var(--color-red-highlight);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 1.5em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 2em;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Divider */
.section-divider {
    width: 20%;
    height: 1px;
    background-color: rgba(255, 140, 0, 0.2);
    margin: 0 auto;
    position: relative;
    top: -1px;
}

/* Light sections typography */
.light-section {
    background-color: var(--color-white);
    color: var(--color-almost-black);
}

.light-section h1,
.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section h6 {
    color: var(--color-orange-highlight);
}

.light-section p,
.light-section .section-description {
    color: var(--color-almost-black);
}

.light-section .features-list li {
    color: var(--color-almost-black);
}

/* Light gray sections typography */
.light-gray-section {
    background-color: var(--color-light-gray);
    color: var(--color-almost-black);
}

.light-gray-section h1,
.light-gray-section h2,
.light-gray-section h3,
.light-gray-section h4,
.light-gray-section h5,
.light-gray-section h6 {
    color: var(--color-orange-highlight);
}

.light-gray-section p,
.light-gray-section .section-description {
    color: var(--color-almost-black);
}

.light-gray-section .features-list li {
    color: var(--color-almost-black);
}

/* Dark sections with improved text contrast */
.dark-section {
    background: linear-gradient(135deg, var(--color-blue-medium) 0%, var(--color-black-light) 100%);
    color: var(--color-light-text);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
    color: var(--color-white);
}

.dark-section p,
.dark-section .section-description {
    color: var(--color-light-text);
}

.dark-section .features-list li {
    color: var(--color-light-text);
}

/* Subtle background texture for light sections */
.light-section::before,
.light-gray-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(18, 60, 105, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
}

.highlight-orange {
    color: var(--color-orange-highlight);
}

.highlight-red {
    color: var(--color-red-highlight);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--color-orange-highlight);
    color: var(--color-black-light);
    padding: 10px 22px;
    font-size: 0.95em;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 6px;
}

.cta-button:hover {
    background-color: var(--color-red-highlight);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Primary CTA buttons for light sections */
.light-section .cta-button,
.light-gray-section .cta-button {
    background-color: var(--color-blue-deep);
    color: var(--color-white);
}

.light-section .cta-button:hover,
.light-gray-section .cta-button:hover {
    background-color: var(--color-blue-medium);
}

/* Secondary buttons (outline style) */
.cta-button-secondary {
    background-color: transparent;
    border: 2px solid var(--color-orange-highlight);
    color: var(--color-orange-highlight);
}

.cta-button-secondary:hover {
    background-color: var(--color-orange-highlight);
    color: var(--color-black-light);
}

.light-section .cta-button-secondary,
.light-gray-section .cta-button-secondary {
    border-color: var(--color-blue-deep);
    color: var(--color-blue-deep);
}

.light-section .cta-button-secondary:hover,
.light-gray-section .cta-button-secondary:hover {
    background-color: var(--color-blue-deep);
    color: var(--color-white);
}

/* Fixed Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-white);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05em;
    padding: 5px 0;
    position: relative;
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange-highlight);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-orange-highlight);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(10, 17, 40, 0.95);
        padding: 10px 0;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 5px;
    }

    .logo {
        font-size: 1.4em;
    }

    .navbar {
        padding: 10px 0;
    }
}

/* Hero Section - Dark */
.hero-section {
    background: linear-gradient(135deg, var(--color-blue-deep) 0%, var(--color-black-light) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    text-align: left;
}

.hero-headshot {
    flex: 0 0 300px;
}

.headshot-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-orange-highlight);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.headshot-circle:hover {
    transform: scale(1.05);
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-orange-highlight);
}

.hero-pitch {
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--color-light-text);
    line-height: 1.3;
}

.hero-testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--color-orange-highlight);
}

.hero-testimonial blockquote {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--color-white);
}

.hero-testimonial cite {
    font-size: 0.9em;
    color: var(--color-orange-highlight);
    font-weight: 600;
}

.hero-cta { margin-top: 30px; }

/* Responsive behavior for headshot */
.desktop-only { display:block; }
@media (max-width:640px){
    .desktop-only{display:none;}
    .hero-main{flex-direction:column;text-align:center;gap:20px;}
    .hero-title{font-size:2.5em;}
    .hero-pitch{font-size:1.2em;}
}

/* Stats Section - Dark */
.stats-section {
    background: linear-gradient(135deg, var(--color-blue-medium) 0%, var(--color-black-light) 100%);
    padding: 80px 0;
    color: var(--color-light-text);
}

/* Client Logos */
.client-logos-section{text-align:center;margin-bottom:60px;}
.client-logos-intro{font-size:1.1em;color:var(--color-light-text);margin-bottom:30px;}
.client-logos-grid{display:flex;justify-content:center;align-items:center;gap:40px;flex-wrap:wrap;}
.client-logo{opacity:0.7;transition:opacity 0.3s ease;}
.client-logo:hover{opacity:1;}
.logo-placeholder{background-color:rgba(255,255,255,0.1);border:2px solid rgba(255,255,255,0.2);border-radius:8px;padding:15px 25px;font-weight:600;font-size:0.9em;color:var(--color-white);letter-spacing:1px;}

/* Video Section */
.video-section{text-align:center;margin-bottom:60px;}
.video-container{max-width:400px;margin:0 auto;}
.video-placeholder{background:linear-gradient(135deg,var(--color-blue-deep) 0%,var(--color-black-light) 100%);border-radius:15px;padding:40px 20px;position:relative;cursor:pointer;transition:transform 0.3s ease;border:2px solid rgba(255,255,255,0.1);}
.video-placeholder:hover{transform:translateY(-5px);}
.play-button{font-size:3em;color:var(--color-orange-highlight);margin-bottom:15px;}
.video-placeholder p{font-size:1.2em;font-weight:600;color:var(--color-white);margin-bottom:5px;}
.video-placeholder small{color:var(--color-light-text);}

.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:30px;text-align:center;}
.stat-item{background-color:rgba(255,255,255,0.1);padding:30px 20px;border-radius:15px;transition:transform 0.3s ease;}
.stat-item:hover{transform:translateY(-5px);}
.stat-number{font-size:2.5em;font-weight:700;color:var(--color-orange-highlight);display:block;}
.stat-label{font-size:1.1em;color:var(--color-white);margin:10px 0 5px;font-weight:600;}
.stat-note{font-size:0.85em;color:var(--color-light-text);font-style:italic;}

/* About Section - Light */
.about-section {
    background-color: var(--color-white);
    color: var(--color-almost-black);
    padding: 100px 0;
    position: relative;
}

.about-content { text-align:center; }
.about-headshot { margin-bottom:40px; }
.headshot-rectangle {
    width:200px; 
    height:auto; 
    border-radius:12px; 
    object-fit:cover; 
    box-shadow:0 4px 8px rgba(0,0,0,0.15);
    border: 2px solid var(--color-blue-deep);
}

.about-differentiators {
    margin-bottom:40px; text-align:left; max-width:800px; margin-left:auto; margin-right:auto;
}
.about-description { text-align:left; max-width:800px; margin:0 auto; }

/* Mobile / tablet visibility */
.mobile-tablet-only{display:block;}
@media (min-width:641px){.mobile-tablet-only{display:none;}}
@media (max-width:640px){
    .about-differentiators,.about-description{text-align:center;}
}

/* Portfolio Section - Light */
.portfolio-section {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.portfolio-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px;margin:50px 0;}
.portfolio-card{
    background-color: rgba(18, 60, 105, 0.05);
    border-radius:15px;
    padding:30px;
    transition:all 0.3s ease;
    border:1px solid rgba(18, 60, 105, 0.1);
    color: var(--color-almost-black);
}
.portfolio-card:hover{
    transform:translateY(-10px);
    background-color: rgba(18, 60, 105, 0.08);
    box-shadow:0 15px 30px rgba(0,0,0,0.1);
}
.portfolio-card h3{
    color:var(--color-orange-highlight);
    font-size:1.5em;
    margin-bottom:15px;
    transition:color 0.3s ease;
}
.portfolio-card:hover h3{
    color:var(--color-red-highlight);
}

/* Expertise Section - Light Gray */
.expertise-section {
    background-color: var(--color-light-gray);
    padding: 100px 0;
    position: relative;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    margin:50px 0;
}

.expertise-card{
    background-color: rgba(18, 60, 105, 0.05);
    border-radius:15px;
    padding:30px;
    text-align:center;
    transition:all .3s ease;
    color: var(--color-almost-black);
    border: 1px solid rgba(18, 60, 105, 0.1);
}
.expertise-card:hover{
    transform:translateY(-10px);
    background-color: rgba(18, 60, 105, 0.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.expertise-card h3{
    color:var(--color-orange-highlight);
    margin-bottom:20px;
}

/* Contact Section - Dark */
.contact-section{
    background:linear-gradient(135deg,var(--color-blue-medium) 0%,var(--color-black-light) 100%);
    text-align:center; 
    padding:120px 0;
    color: var(--color-light-text);
}
.contact-content{max-width:800px;margin:0 auto;}

/* Features List */
.features-list{list-style:none;margin:30px 0;}
.features-list li{
    font-size:1.1em;
    margin-bottom:15px;
    display:flex;
    align-items:flex-start;
} 
.bullet-icon{color:var(--color-orange-highlight);font-size:1.4em;margin-right:15px;font-weight:bold;min-width:20px;}

/* Approach cards */
.approach-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid var(--color-orange-highlight);
    transition: border-color 0.3s ease;
}

.approach-card:hover {
    border-left-color: var(--color-red-highlight);
}

/* Image framing */
.pod-thumb{
    width:100%;
    border-radius:12px;
    margin-bottom:15px;
    height:200px;
    object-fit:cover;
    transition:transform 0.3s ease;
}

/* Light sections - navy stroke around images */
.light-section .pod-thumb,
.light-gray-section .pod-thumb {
    border: 2px solid var(--color-blue-deep);
}

/* Dark sections - white stroke around images */
.dark-section .pod-thumb,
.stats-section .pod-thumb,
.contact-section .pod-thumb {
    border: 2px solid var(--color-white);
}

.portfolio-card:hover .pod-thumb{
    transform:scale(1.04);
}

.expertise-card .features-list{text-align:left;padding-left:0;}
.expertise-card .features-list li{justify-content:flex-start;} 