﻿/* ===========================
   CAREERS PAGE STYLES
   =========================== */

/* CAREERS HERO SECTION */
.careers-hero {
    position: relative;
    height: 40vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 42, 42, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.careers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 42, 42, 0.08) 100%);
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

.careers-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(255, 42, 42, 0.2);
}

.careers-hero-content p {
    font-size: 1.1rem;
    color: #aaaaaa;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* EMPTY STATE SECTION */
.careers-empty {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #0a0a0a 0%, rgba(255, 42, 42, 0.01) 100%);
}

.empty-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.empty-content {
    animation: slideUp 0.8s ease-out;
}

.empty-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.empty-icon svg {
    color: #ff2a2a;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.empty-content:hover .empty-icon svg {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.empty-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.empty-subtitle {
    font-size: 1rem;
    color: #aaaaaa;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

/* BENEFITS SECTION */
.empty-benefits {
    background: rgba(255, 42, 42, 0.03);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.benefits-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ff2a2a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.benefits-list li {
    color: #aaaaaa;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* BUTTONS */
.empty-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.empty-buttons .btn-primary,
.empty-buttons .btn-secondary {
    flex: 1;
    min-width: 200px;
}

/* NEWSLETTER */
.empty-newsletter {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin-top: 2rem;
    line-height: 1.6;
}

.newsletter-link {
    color: #ff2a2a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline;
}

.newsletter-link:hover {
    color: #ff4444;
    text-decoration: underline;
}

/* FUTURE JOBS SECTION (placeholder) */
.jobs-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

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

.job-card {
    background: rgba(255, 42, 42, 0.03);
    border: 1px solid rgba(255, 42, 42, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: #ff2a2a;
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.2);
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .careers-hero {
        height: 35vh;
        margin-top: 100px;
    }

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

    .careers-hero-content p {
        font-size: 0.95rem;
    }

    .empty-buttons {
        flex-direction: column;
    }

    .empty-buttons .btn-primary,
    .empty-buttons .btn-secondary {
        width: 100%;
    }

    .empty-benefits {
        padding: 1.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .empty-title {
        font-size: 1.8rem;
    }

    .empty-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        height: 30vh;
    }

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

    .careers-hero-content p {
        font-size: 0.9rem;
    }

    .careers-empty {
        padding: 2rem 1rem;
        min-height: 50vh;
    }

    .empty-icon svg {
        width: 60px;
        height: 60px;
    }

    .empty-title {
        font-size: 1.5rem;
    }

    .empty-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .empty-benefits {
        padding: 1.25rem;
    }

    .benefits-list li {
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .empty-buttons {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .empty-newsletter {
        font-size: 0.85rem;
    }
}
