/* CSS Variables for Talon Defense Color Palette */
:root {
    /* Text/Background Colors */
    --dark-1: #111111;          /* Jet Black - Main text */
    --light-1: #F9F9F9;         /* Off-white - Light background */
    --dark-2: #353E43;          /* Gunmetal Gray - Secondary background */
    --light-2: #F9F9F9;         /* Off-white - Consistent w/L1 */
    
    /* Accent Colors */
    --accent-1: #5A7F94;        /* Blue-Gray highlight */
    --accent-2: #3D6D8A;        /* Steel Blue - deeper variant */
    --accent-3: #657D70;        /* Slate Green - tactical military */
    --accent-4: #B7A87F;        /* Neutral Sand - muted yellow/gold */
    --accent-5: #4C555C;        /* Cool Charcoal - contrast */
    --accent-6: #4A9DA2;        /* Electric Teal - energetic but muted */
    
    /* Hyperlink Colors */
    --hyperlink: #3E6D89;       /* Steely Navy */
    --hyperlink-visited: #827178; /* Washed Plum */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-2);
    color: var(--light-1);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, var(--accent-3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--accent-1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--accent-5) 0%, transparent 50%);
    opacity: 0.1;
    z-index: -1;
    transform: none !important;
}

/* Header */
.header {
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.logo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.logo {
    height: 182px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes the logo white */
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    color: var(--accent-3);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
    animation: pulse 2s ease-in-out infinite;
}

/* Contact Section */
.contact-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid var(--accent-5);
    border-radius: 12px;
    padding: 3rem 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--light-1);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-description {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-1);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.careers-inline-text {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-1);
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 1rem;
    padding: 1rem;
    background: rgba(90, 127, 148, 0.08);
    border-radius: 6px;
    border-left: 3px solid var(--accent-3);
}

.careers-inline-link {
    color: var(--hyperlink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.careers-inline-link:hover {
    color: var(--accent-3);
}

.careers-inline-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-3);
    transition: width 0.3s ease;
}

.careers-inline-link:hover::after {
    width: 100%;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(53, 62, 67, 0.5);
    border-radius: 8px;
    border: 1px solid var(--accent-5);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--accent-3);
    transform: translateY(-2px);
}

.contact-icon {
    background: var(--accent-3);
    color: var(--light-1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-svg {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Makes the SVG white */
    transition: filter 0.3s ease;
}

.contact-method:hover .contact-icon-svg {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(120deg); /* Adds a subtle green tint on hover */
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--light-1);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info p {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-1);
    margin-bottom: 0.5rem;
}

.email {
    color: var(--hyperlink) !important;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.email:hover {
    color: var(--accent-3) !important;
}

.contact-info small {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-5);
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(62, 109, 137, 0.1);
    border: 1px solid var(--hyperlink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-3);
    border-color: var(--accent-3);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(1);
}


/* Privacy Policy Styles */
.privacy-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid var(--accent-5);
    border-radius: 12px;
    padding: 3rem 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.privacy-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-1);
    margin-bottom: 0.5rem;
    text-align: center;
}

.privacy-date {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-3);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1rem;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section-content {
    margin-bottom: 2.5rem;
}

.privacy-section-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-1);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-3);
    padding-bottom: 0.5rem;
}

.privacy-section-content p {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-1);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-section-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section-content li {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-1);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section-content strong {
    color: var(--light-1);
    font-weight: 600;
}

.privacy-section-content a {
    color: var(--hyperlink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section-content a:hover {
    color: var(--accent-3);
}

.contact-info-privacy {
    background: rgba(53, 62, 67, 0.3);
    border: 1px solid var(--accent-5);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

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

.contact-info-privacy p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid var(--accent-5);
    background: rgba(17, 17, 17, 0.8);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-5);
    font-size: 0.9rem;
}

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

.footer-link {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--accent-5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-1);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .logo {
        height: 152px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-card {
        padding: 2rem 1.5rem;
    }
    
    .careers-inline-text {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1rem;
    }
    
    .logo {
        height: 121px;
    }
    
    .privacy-card {
        padding: 1.5rem 1rem;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .careers-inline-text {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
} 