/* =========================================
   FOUNDER HIRING PAGE STYLES
   ========================================= */

/* --- LAYOUT & SPACING --- */
.hiring-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 5% 100px 5%;
}

.hiring-header {
    text-align: center;
    margin-bottom: 60px;
}

.hiring-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hiring-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hiring-section {
    margin-bottom: 70px;
}

.hiring-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.hiring-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* --- QUOTATIONS & ALERTS --- */
.hiring-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    text-align: center;
    color: var(--text-color);
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin: 50px 0;
    border-top: 4px solid var(--accent-color);
}

.important-notice {
    background: #FFF5F5;
    border-left: 5px solid #E74C3C;
    padding: 25px;
    border-radius: 0 8px 8px 0;
}

.important-notice h3 {
    color: #E74C3C;
    margin-bottom: 15px;
}

/* --- GRIDS (Who We Are Looking For) --- */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.role-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
}

.role-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.role-card ul {
    list-style: none;
    padding: 0;
}

.role-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.role-card li::before {
    content: "➔";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 3px;
}

/* --- DYNAMIC GRID (What We Value) --- */
.values-dynamic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.value-pill {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.value-pill:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(211, 84, 0, 0.03);
}

/* --- SPLIT LISTS (Who Should/Shouldn't Apply) --- */
.split-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.list-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.list-card.do h3 { color: #27AE60; margin-bottom: 20px;}
.list-card.dont h3 { color: #E74C3C; margin-bottom: 20px;}

.list-card ul { list-style: none; padding: 0; }
.list-card li { margin-bottom: 12px; padding-left: 25px; position: relative; color: #555;}

.list-card.do li::before { content: "✓"; color: #27AE60; position: absolute; left: 0; font-weight: bold;}
.list-card.dont li::before { content: "✕"; color: #E74C3C; position: absolute; left: 0; font-weight: bold;}

/* --- TIMELINE (Selection Process) --- */
.timeline {
    position: relative;
    max-width: 100%;
    margin: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e0e0e0;
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 0 20px 60px;
    position: relative;
    background: inherit;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: auto;
    left: 12px;
    background-color: var(--bg-color);
    border: 3px solid var(--accent-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.timeline-content h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* --- FLOATING APPLY BUTTON --- */
.floating-apply-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--accent-color);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-apply-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.5);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hiring-title { font-size: 2.2rem; }
    .roles-grid { grid-template-columns: 1fr; }
    .split-lists { grid-template-columns: 1fr; }
    .floating-apply-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}