/* ============================================================================
   Base Styles
   ============================================================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================================================================
   Header & Navigation
   ============================================================================ */

header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    width: 100%;
    padding: 0.5rem 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
    padding: 0.5rem 0;
    margin-right: 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* ============================================================================
   Hero Section
   ============================================================================ */

.hero {
    background-image: url('/assets/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
    margin-left: 6rem;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #F5A624;
    color: #fff;
    border: 2px solid #F5A624;
}

.btn-primary:hover {
    background-color: #d89420;
    border-color: #d89420;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 36, 0.4);
}

.btn-secondary {
    background-color: #fff;
    color: #001f5c;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    border-color: #f0f0f0;
    color: #001f5c;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

/* ============================================================================
   Main Content
   ============================================================================ */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

section {
    margin-bottom: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
}

/* ============================================================================
   Footer
   ============================================================================ */

footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #007bff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links li {
    margin-bottom: 0 !important;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #666;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #001f5c;
    color: #fff;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

/* ============================================================================
   Blog Styles
   ============================================================================ */

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

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

.post-meta {
    color: #666;
    font-size: 0.875rem;
}

.post-content {
    line-height: 1.8;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post-preview {
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.blog-post-preview h2 {
    margin-bottom: 0.5rem;
}

.blog-post-preview time {
    color: #666;
    font-size: 0.875rem;
}

/* ============================================================================
   People/Team Styles
   ============================================================================ */

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.person-card {
    text-align: center;
    padding: 1rem;
}

.person-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.person-card .role {
    color: #666;
    font-size: 0.875rem;
}

.person-profile {
    max-width: 800px;
    margin: 0 auto;
}

.person-header {
    text-align: center;
    margin-bottom: 2rem;
}

.person-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.person-role {
    color: #666;
    font-size: 1.125rem;
}

.person-social {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================================================
   Video Styles
   ============================================================================ */

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.video-card time {
    color: #666;
    font-size: 0.875rem;
}

.video-post {
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================================
   Contact Page Styles
   ============================================================================ */

.contact-page {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    text-align: center;
}

.contact-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #001f5c;
}

.contact-intro {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 31, 92, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: #001f5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #001f5c;
}

.contact-details {
    color: #666;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: #333;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #001f5c;
    text-decoration: underline;
}

/* ============================================================================
   Careers Page Styles
   ============================================================================ */

.careers-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.careers-hero-content {
    flex: 1;
    max-width: 500px;
}

.careers-badge {
    display: inline-block;
    background-color: #f0f0f0;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.careers-hero-content h1 {
    font-size: 2.5rem;
    color: #001f5c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.careers-hero-content > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.careers-contact {
    margin-top: 2rem;
}

.contact-note {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.careers-email {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
}

.careers-email:hover {
    text-decoration: underline;
}

.careers-hero-image {
    flex: 1;
    max-width: 500px;
}

.careers-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.join-team {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.join-team-content {
    max-width: 800px;
}

.join-team h2 {
    font-size: 2rem;
    color: #001f5c;
    margin-bottom: 1.5rem;
}

.join-team p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
}

.join-team strong {
    color: #001f5c;
}

.team-image-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-image-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.employee-benefits {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.employee-benefits h2 {
    font-size: 2rem;
    color: #001f5c;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    min-width: 150px;
    max-width: 180px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #6c5ce7;
}

.benefit-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 0.875rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.25rem;
}

.benefit-note {
    font-size: 0.75rem;
    color: #999;
}

.eeo-statement {
    font-size: 0.875rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.leadership-banner {
    background: linear-gradient(135deg, #6c5ce7 0%, #a855f7 100%);
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0;
    border-radius: 12px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-banner-content {
    color: #fff;
}

.leadership-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.leadership-banner h2 {
    font-size: 1.75rem;
    color: #fff;
    margin: 0;
}

.btn-outline {
    background-color: #fff;
    color: #6c5ce7;
    border: 2px solid #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: transparent;
    color: #fff;
    text-decoration: none;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        padding: 1rem 2rem;
        display: none;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }

    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .people-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .contact-page {
        padding: 2rem 1rem;
    }

    .contact-container h1 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Careers page responsive */
    .careers-hero {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .careers-hero-content {
        max-width: 100%;
    }

    .careers-hero-content h1 {
        font-size: 2rem;
    }

    .careers-hero-image {
        max-width: 100%;
    }

    .join-team {
        padding: 2rem 1rem;
    }

    .join-team h2 {
        font-size: 1.5rem;
    }

    .team-image-section {
        padding: 0 1rem;
    }

    .employee-benefits {
        padding: 2rem 1rem;
    }

    .benefits-grid {
        gap: 1rem;
    }

    .benefit-card {
        min-width: 120px;
        padding: 1rem;
    }

    .leadership-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin: 2rem 1rem;
    }

    .leadership-banner h2 {
        font-size: 1.5rem;
    }
}
