/* Careers Page Styling */

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

/* Hero Section */
.careers-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 15px;
    margin-bottom: 60px;
    color: white;
}

.careers-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5em;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Statement */
.mission-section {
    background: rgba(248, 249, 250, 0.95);
    padding: 50px;
    border-radius: 10px;
    margin-bottom: 60px;
    border-left: 5px solid #dc2626;
}

.mission-section h2 {
    color: #1e3a8a;
    margin-bottom: 25px;
    font-size: 2em;
}

.mission-text {
    font-size: 1.15em;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

/* Audience Cards */
.audience-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.audience-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #3b82f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.vet-card {
    border-top-color: #10b981;
}

.owner-card {
    border-top-color: #f59e0b;
}

.dev-card {
    border-top-color: #8b5cf6;
}

.card-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.audience-card h3 {
    font-size: 2em;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.card-intro {
    font-size: 1.25em;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 25px;
    border-left: 3px solid #e5e7eb;
    padding-left: 20px;
}

.card-content {
    color: #374151;
    line-height: 1.8;
}

.card-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
}

.benefits-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
    color: #1f2937;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.3em;
}

/* Tech Stack */
.tech-stack {
    margin-top: 30px;
    padding: 25px;
    background: #f3f4f6;
    border-radius: 8px;
}

.tech-stack h4 {
    color: #1e3a8a;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 60px 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    color: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: white;
}

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

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.value-item p {
    color: #e5e7eb;
    line-height: 1.6;
}

/* Current Openings */
.openings-section {
    margin-bottom: 60px;
}

.openings-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.2em;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.opening-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 30px;
    transition: border-color 0.3s, transform 0.3s;
}

.opening-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
}

.opening-card h4 {
    color: #1e3a8a;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.opening-type {
    color: #3b82f6;
    font-size: 0.9em;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opening-card p {
    color: #374151;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 1.25em;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 1.15em;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #dc2626;
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.2em;
}

.cta-footnote {
    font-size: 0.95em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-hero h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .mission-section {
        padding: 30px 20px;
    }

    .audience-card {
        padding: 25px;
    }

    .values-section {
        padding: 40px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 2em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .careers-hero h1 {
        font-size: 1.75em;
    }

    .audience-card h3 {
        font-size: 1.5em;
    }

    .card-intro {
        font-size: 1.1em;
    }
}
