/**
 * Theme Name: PROXI Services
 * Description: Blocksy Child theme
 * Author: Studio CAD
 * Template: blocksy
 * Text Domain: blocksy
 */

body, h1, h2, h3, h4, h5, h6, label, figcaption, blockquote, blockquote p, .menu a, .site-title, .entry-meta, .mobile-menu, .widget-title, .ct-post-title, .ct-breadcrumbs, .ct-header-text, .site-description, .page-description, .ct-footer-copyright, .ct-widget>*:not(.widget-title){
	/*color: var(--theme-palette-color-1);*/
}

#header [data-row*=boxed]>div{
	border-radius: 60px !important;
	
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
[data-sticky*=yes] .ct-container, [data-sticky*=auto-hide] .ct-container {
   /* margin-top: 40px !important;*/
}



/* --- CONTAINER GLOBAL --- */
.proxi-jobs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
}

/* --- LA CARTE --- */
.proxi-job-card {
    background: #fff;
    border: 1px solid #eee; /* Bordure subtile */
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); /* Ombre très légère */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

/* Effet au survol */
.proxi-job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 86, 157, 0.15); /* Ombre bleutée */
    border-color: #dbe0f7;
}

/* --- PARTIE GAUCHE : TEXTES --- */
.proxi-job-info {
    flex: 1; /* Prend toute la place dispo */
    padding-right: 20px;
}

/* Badges (CDI, Date...) */
.proxi-job-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.job-badge.contract {
    background-color: #eef2ff; /* Fond bleu très clair */
    color: #4A569D; /* Bleu Proxi */
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 0.5px;
}

.job-meta {
    color: #888;
    font-size: 0.9em;
}

/* Titre */
.job-title {
    margin: 0 0 8px 0 !important; /* Force le reset des marges du thème */
    font-size: 1.3em;
    font-weight: 700;
    color: #333;
}

.job-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.proxi-job-card:hover .job-title a {
    color: #4A569D; /* Le titre devient bleu au survol de la carte */
}

/* Lieu */
.job-location {
    margin: 0;
    color: #666;
    font-size: 0.95em;
}

/* --- PARTIE DROITE : BOUTON --- */
.proxi-job-action {
    flex-shrink: 0; /* Empêche le bouton d'être écrasé */
}

.btn-job-apply {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #4A569D;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, padding 0.3s;
}

.btn-job-apply:hover {
    background-color: #353e75;
    padding-right: 30px; /* Petit effet de mouvement */
}

/* --- RESPONSIVE (MOBILE) --- */
@media (max-width: 768px) {
    .proxi-job-card {
        flex-direction: column; /* On empile tout */
        align-items: flex-start;
        gap: 20px;
    }
    
    .proxi-job-action, .btn-job-apply {
        width: 100%; /* Bouton pleine largeur sur mobile */
        justify-content: center;
    }
}






/* --- CARTE DÉTAILS OFFRE (SIDEBAR) --- */
.job-info-card {
    background-color: #ffffff;
    border: 1px solid #eef2ff;
    border-radius: 16px; /* Bords bien arrondis */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(74, 86, 157, 0.08); /* Ombre douce bleutée */
    
    /* Effet Sticky : La carte suit quand on scrolle */
    position: sticky;
    top: 120px; /* Marge par rapport au haut de l'écran */
    z-index: 10;
}

.job-info-card h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #4A569D; /* Bleu Proxi */
    border-bottom: 2px solid #f0f2f9;
    padding-bottom: 15px;
}

/* Ligne (Item) */
.job-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Icône (Rond bleu) */
.job-icon {
    width: 42px;
    height: 42px;
    background-color: #f4f6ff; /* Fond bleu très pâle */
    color: #4A569D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Texte */
.job-data {
    display: flex;
    flex-direction: column;
}

.job-data strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8890b5;
    margin-bottom: 2px;
}

.job-data span {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

/* Bouton Sidebar */
.btn-job-sidebar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: #4A569D;
    color: #fff !important;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 16px; /* Format pilule */
    margin-top: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 86, 157, 0.2);
}

.btn-job-sidebar:hover {
    background-color: #353e75;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 86, 157, 0.3);
}

.candidature-form-container .wpforms-container {
	margin: 0px !important;
	min-width: 100% !important;
}

.candidature-form-container #wpforms-form-1107 {
	width: 100% !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .job-info-card {
        position: static; /* On enlève le sticky sur tablette/mobile */
        margin-bottom: 40px;
    }
}














@media (min-width: 689.99px) and (max-width: 1024px){
	
	.hide-for-tablet{
		display: none;
	}
}

@media (min-width: 689.99px) and (max-width: 960px){
	
	
}

@media (max-width: 768px){
	
	
}


@media (min-width: 768px) and (max-width: 1024px){

	
}
@media (max-width: 689.98px){
	.hide-for-mobile{
		display: none;
	}
	
}

