/**
 * Theme Name: Child Jobify - Classic
 * Theme URI: https://astoundify.com/
 * Author: Astoundify
 * Author URI: http://astoundify.com
 * Description: Everything you need to build a professional job board.
 * Version: 1.0.0
 * License: GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags: white, one-column, right-sidebar, fixed-width, custom-background, custom-header, theme-options, full-width-template, featured-images, flexible-header, custom-menu, translation-ready
 * Template: jobify
*/
/**
 * The parent theme's CSS is automatically included so there is no need
 * to use the @import rule to include the parent theme CSS.
 *
 * Place Custom CSS Below this.
 */

body { background: white !important; }

/* --- 1. RESET Y TIPOGRAFÍA --- */
body {
    -webkit-font-smoothing: antialiased;
    color: #334155; /* Un gris oscuro más moderno que el negro puro */
}

/* --- 2. TARJETAS DE EMPLEO (Listado Principal) --- */
/* Quitamos los bordes toscos y damos aire */
.job_listing {
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    padding: 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02) !important;
}

/* Efecto Hover: la tarjeta se eleva sutilmente */
.job_listing:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important;
    border-color: #3b82f6 !important; /* Azul moderno al pasar el mouse */
}

/* Ajuste de logos de empresa en el listado */
.job_listing img.company_logo {
    border-radius: 12px !important;
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
    background: #f8fafc;
    padding: 5px;
}

/* --- 3. BOTONES MODERNOS --- */
/* Estilo redondeado y con gradiente sutil */
.button, 
button, 
input[type="submit"], 
.load_more_jobs {
    border-radius: 10px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    text-transform: none !important; /* Quita las mayúsculas forzadas */
    letter-spacing: 0.5px !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.button:hover, .load_more_jobs:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

/* --- 4. FILTROS Y BUSCADOR --- */
.job_filters {
    background: #f8fafc !important;
    border-radius: 20px !important;
    padding: 25px !important;
    border: 1px solid #e2e8f0 !important;
    margin-bottom: 40px !important;
}

.job_filters input, 
.job_filters select {
    border-radius: 10px !important;
    border: 1px solid #cbd5e1 !important;
    padding: 10px 15px !important;
    height: 45px !important;
}

/* --- 5. ETIQUETAS DE TIPO DE EMPLEO (Pills) --- */
.job-type {
    border-radius: 20px !important;
    padding: 4px 12px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* Personalización de colores por tipo (ejemplos) */
.job-type.full-time { background: #dcfce7 !important; color: #166534 !important; }
.job-type.freelance { background: #fef9c3 !important; color: #854d0e !important; }
.job-type.temporary { background: #fee2e2 !important; color: #991b1b !important; }

/* --- 6. MEJORAS EN EL HEADER --- */
.site-header {
    border-bottom: 1px solid #f1f5f9 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02) !important;
}

/* --- 7. DETALLE DE LA VACANTE --- */
.single_job_listing .job-description {
    line-height: 1.8;
    font-size: 16px;
}

.job_application .application_button {
    background-color: #10b981 !important; /* Verde éxito para aplicar */
    font-size: 18px !important;
}

