/*
Theme Name: Veteran Strategic
Theme URI: https://veteranstrategic.com
Description: Professional cybersecurity compliance theme for professional organizations
Version: 1.0.0
Author: Veteran Strategic
Author URI: https://veteranstrategic.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: veteran-strategic
Domain Path: /languages
Requires at least: 6.0
Requires PHP: 7.4
*/

:root {
    --primary-bg: #0A1628;
    --accent: #14B8A6;
    --text: #F9FAFB;
    --dark-text: #1F2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
}

/* Navigation */
nav {
    background-color: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

nav.scrolled {
    background-color: rgba(10, 22, 40, 0.95);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text);
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 40px;
    text-align: center;
    background: linear-gradient(135deg, #0A1628 0%, #0F2540 50%, #0A1628 100%);
}

.hero-content {
    max-width: 896px;
}

.hero-headline {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subhead {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #D1D5DB;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.cta-button {
    background-color: var(--accent);
    color: var(--primary-bg);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
}

.cta-button:hover {
    transform: scale(1.05);
    filter: brightness(1.15);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
}

/* Sections */
.section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-headline {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.section-subhead {
    font-size: clamp(16px, 2vw, 20px);
    color: #D1D5DB;
    margin-bottom: 40px;
    text-align: center;
}

/* Value Propositions */
.value-propositions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.value-card {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.value-text {
    color: #D1D5DB;
    line-height: 1.7;
    font-size: 16px;
}

/* Leadership */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.leadership-card {
    text-align: left;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.leader-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.leader-role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.leader-certifications {
    color: #D1D5DB;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.leader-bio {
    color: #D1D5DB;
    font-size: 15px;
    line-height: 1.7;
}

/* Credentials */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.credential-badge {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
    font-weight: 600;
    color: var(--text);
    font-size: 16px;
}

/* Final CTA */
.final-cta-section {
    background: none;
    border: none;
    border-radius: 0;
    padding: 60px 40px;
    text-align: center;
}

.final-cta-headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 30px;
}

.final-cta-subtext {
    color: #D1D5DB;
    font-size: 16px;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: rgba(10, 22, 40, 0.9);
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    padding: 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.footer-section {
    font-size: 14px;
    color: #D1D5DB;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.social-links a {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    margin: 0 8px;
}

.social-links a:hover {
    color: var(--text);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: var(--text);
    margin: 4px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.95);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu.active {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-section {
        padding: 80px 20px 40px;
    }

    .section {
        padding: 60px 20px;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 20px;
    }
}

/* WordPress Default Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 16px;
}
