/*
###############################################################
#   Configurations de la page de Recrutement (Layout Asides)  #
###############################################################
*/

body {
    /* Intégration de l'image de fond globale */
    background-image: 
        linear-gradient(to bottom, rgba(6, 7, 13, 0.8), rgba(6, 7, 13, 0.95)), /* Calque sombre pour la lisibilité */
        url('../imgs/be-a-hero.jpg'); /* Remplacez par votre fichier */
    
    background-size: cover;          /* Force l'image à couvrir tout l'écran sans se déformer */
    background-position: top center;  /* Aligne l'image vers le haut pour un format vertical */
    background-repeat: no-repeat;
    background-attachment: fixed;    /* Effet parallaxe : le contenu glisse sur l'image fixe */
}

/* Léger ajustement pour détacher visuellement vos blocs du fond de la page */
.main-content-column, .sidebar-card {
    background: rgba(13, 17, 26, 0.85); /* Fond légèrement translucide pour laisser deviner l'image derrière */
    backdrop-filter: blur(5px);         /* Effet de verre dépoli très moderne (cyber) */
}

/* Layout asymétrique en Grid pour séparer les sections des asides */
.apply-layout {
    width: 95%;
    max-width: 1200px;
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Les sections prennent 2 tiers, les asides 1 tiers */
    gap: 2.5rem;
    align-items: start;
}

/* Responsive pour les tablettes et mobiles */
@media (max-width: 992px) {
    .apply-layout {
        grid-template-columns: 1fr; /* Tout passe sur une seule colonne */
        margin: 2rem auto;
    }
}

/*
###########################
#  Contenu Principal     #
###########################
*/

.main-content-column {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid var(--accent-color);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
    .main-content-column {
        padding: 1.5rem;
    }
}

.apply-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.apply-header h1 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.apply-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Design des Sections */
.info-section {
    margin-bottom: 2.5rem;
    
    /* ÉLÉMENTS À RAJOUTER : Ligne séparatrice discrète */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Ligne fine et subtile */
    padding-bottom: 2rem;                               /* Espace avant la ligne */
}

/* Optionnel : Supprimer la ligne sous la TOUTE DERNIÈRE section (Section III) */
.info-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}

.info-section h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.2rem;
}

.info-section h2 i {
    color: var(--accent-color);
    margin-right: 8px;
}

.info-section p {
    color: var(--text-color);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

/*
###########################
#    Boutons d'Action     #
###########################
*/

.action-container {
    margin: 2rem 0;
}

.btn-frog-id {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 1rem 2rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 15px var(--accent-glow);
    transition: all 0.3s ease;
}

.btn-frog-id:hover {
    background: var(--accent-color);
    color: #000000;
    box-shadow: 0 0 25px var(--accent-color);
    transform: translateY(-2px);
}

.btn-frog-id i {
    font-size: 1.1rem;
}

/* Optionnel : Ajustement mobile pour que le bouton prenne toute la largeur sur petit écran */
@media (max-width: 576px) {
    .btn-frog-id {
        display: flex;
        width: 100%;
    }
}

/*
###########################
#   Barre Latérale (Asides)#
###########################
*/

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Cartes asides génériques */
.sidebar-card {
    background: #0d111a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sidebar-card h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card p, .sidebar-card ul {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.sidebar-card ul {
    margin-left: 1.2rem;
    margin-top: 0.5rem;
}

.sidebar-card ul li {
    margin-bottom: 0.4rem;
}

/* Statut et Chiffres clés */
.stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-row:last-of-type {
    border-bottom: none;
}

.status-indicator.open {
    color: #27c93f;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(39, 201, 63, 0.4);
}

/* Aside thématique d'alerte ou Lore RP */
.status-card h3 { color: #ffbd2e; }
.stats-card h3 { color: #fff; }

.warning-card {
    border-left: 3px solid var(--accent-color);
    background: rgba(255, 51, 51, 0.02);
}

.warning-card h3 {
    color: var(--accent-color);
}

.crypto-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem !important;
}